*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #ede4d3;
  --cream-dark: #ddd2bc;
  --ink: #2d4a3e;
  --ink-deep: #1a2e24;
  --ink-mid: #3d5c4e;
  --warm-gray: #7a8a7f;
  --amber: #c17f3a;
  --amber-light: #e8a84e;
  --white: #f5ede0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(253,250,245,0.95);
  padding: 14px 48px;
  border-bottom: 1px solid var(--cream-dark);
  backdrop-filter: blur(8px);
}
nav.nav-light {
  background: rgba(253,250,245,0.95);
  padding: 14px 48px;
  border-bottom: 1px solid var(--cream-dark);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.4s;
}
nav.scrolled .nav-logo,
nav.nav-light .nav-logo { color: var(--ink); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}
nav.scrolled .nav-links a,
nav.nav-light .nav-links a { color: var(--warm-gray); }
.nav-links a:hover,
.nav-links a.active { color: var(--amber) !important; }
.nav-cta {
  background: var(--amber);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 40px;
  letter-spacing: 0.1em;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--amber-light); color: var(--white) !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,0.8);
  transition: transform 0.3s, opacity 0.3s, background 0.4s;
  transform-origin: center;
}
nav.scrolled .nav-hamburger span,
nav.nav-light .nav-hamburger span { background: var(--ink); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-mobile-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.3s;
  display: block;
  padding: 6px 0;
}
.nav-mobile-links a:hover,
.nav-mobile-links a.active { color: var(--amber-light); }
.nav-mobile-social {
  margin-top: 40px;
  display: flex;
  gap: 24px;
}
.nav-mobile-social a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-mobile-social a:hover { color: var(--amber); }

/* ─── HERO ───────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 72px;
  background: var(--ink);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(60,100,75,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 30%, rgba(20,45,32,0.65) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(193,127,58,0.18) 0%, transparent 40%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  animation: fadeUp 1s ease both;
}
.hero-tag {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 20px;
  display: block;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 9vw, 104px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber-light);
}
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  border-radius: 40px;
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  transition: background 0.3s;
}
.hero-cta:hover { background: var(--amber-light); }
.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 40px;
  padding: 13px 28px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.hero-cta-ghost:hover {
  border-color: var(--amber);
  color: var(--amber-light);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeUp 1.4s 0.4s ease both;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ─── PAGE HERO (interior pages) ─────────────────── */
.page-hero {
  height: 52vh;
  min-height: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 48px 64px;
  background: var(--ink);
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(60,100,75,0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(15,40,28,0.7) 0%, transparent 50%);
}
.page-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s ease both;
}
.page-hero-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: block;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
}
.page-hero-title em { font-style: italic; color: var(--amber-light); }
.page-hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  line-height: 1.7;
  max-width: 480px;
  margin: 16px auto 0;
}

/* ─── BREADCRUMB ──────────────────────────────────── */
.breadcrumb-bar {
  padding: 14px 48px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
}
.breadcrumb li {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--warm-gray);
}
.breadcrumb li a {
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb li a:hover { color: var(--amber); }
.breadcrumb li + li::before {
  content: '›';
  margin-right: 8px;
  color: var(--cream-dark);
}

/* ─── SECTION SHARED ─────────────────────────────── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.section-link {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  text-decoration: none;
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.3s, border-color 0.3s;
}
.section-link:hover { color: var(--amber); border-color: var(--amber); }

/* ─── FEATURED SECTION (homepage) ────────────────── */
.featured-section {
  padding: 100px 48px;
  background: var(--white);
}
.featured-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.featured-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
  margin-top: 52px;
}
.featured-card {
  background: var(--ink);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
}
.featured-card:hover { transform: translateY(-4px); }
.featured-card-img {
  aspect-ratio: 3/2;
  position: relative;
  overflow: hidden;
}
.featured-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.55s ease;
}
.featured-card:hover .featured-card-bg { transform: scale(1.04); }
.fc-bg1 {
  background: radial-gradient(ellipse at 35% 50%, #3d5c4e 0%, #1a2e24 100%);
}
.featured-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--amber);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.featured-card-info {
  padding: 22px 24px 28px;
}
.featured-card-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.featured-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.featured-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 18px;
}
.featured-card-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.featured-secondary {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.secondary-card {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: transform 0.3s, border-color 0.3s;
  border: 1px solid var(--cream-dark);
  flex: 1;
}
.secondary-card:hover { transform: translateY(-3px); border-color: var(--amber); }
.secondary-card-img {
  aspect-ratio: 16/8;
  position: relative;
  overflow: hidden;
}
.secondary-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.secondary-card:hover .secondary-card-bg { transform: scale(1.04); }
.sc-bg1 { background: radial-gradient(ellipse at 60% 40%, #0d2e1e 0%, #05120c 100%); }
.sc-bg2 { background: radial-gradient(ellipse at 45% 55%, #2e1a08 0%, #110a05 100%); }
.secondary-card-info {
  padding: 14px 16px 16px;
}
.secondary-card-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 5px;
}
.secondary-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
}

/* ─── ABOUT (homepage teaser) ────────────────────── */
.about-teaser {
  position: relative;
  padding: 120px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-teaser::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: var(--ink);
  z-index: -1;
}
.about-teaser .about-label { color: var(--amber-light); }
.about-teaser .about-headline { color: var(--white); }
.about-teaser .about-headline em { color: var(--amber-light); }
.about-teaser .about-body { color: rgba(255,255,255,0.7); }
.about-teaser .about-cta {
  color: var(--cream);
  border-bottom-color: rgba(255,255,255,0.25);
}
.about-teaser .about-cta:hover { color: var(--amber-light); border-bottom-color: var(--amber-light); }
.about-teaser .about-stat { border-left-color: rgba(255,255,255,0.18); }
.about-teaser .about-stat:hover { border-left-color: var(--amber-light); }
.about-teaser .about-stat-num { color: var(--white); }
.about-teaser .about-stat-label { color: rgba(255,255,255,0.55); }
.about-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.about-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.about-headline em { font-style: italic; color: var(--amber); }
.about-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--warm-gray);
  font-weight: 300;
}
.about-body p + p { margin-top: 16px; }
.about-cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--cream-dark);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.about-cta:hover { color: var(--amber); border-color: var(--amber); }
.about-right { display: flex; flex-direction: column; gap: 24px; }
.about-stat {
  border-left: 2px solid var(--cream-dark);
  padding-left: 20px;
  transition: border-color 0.3s;
}
.about-stat:hover { border-color: var(--amber); }
.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ─── ABOUT PAGE (full) ──────────────────────────── */
.story-section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-text { max-width: 560px; }
.story-chapter {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.story-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.story-heading em { font-style: italic; color: var(--amber); }
.story-body {
  font-size: 16px;
  line-height: 2;
  color: var(--warm-gray);
  font-weight: 300;
}
.story-body p + p { margin-top: 20px; }
.story-body strong { color: var(--ink-mid); font-weight: 500; }
.story-pullquote {
  margin: 40px 0;
  padding: 24px 32px;
  border-left: 3px solid var(--amber);
  background: var(--cream);
  border-radius: 0 4px 4px 0;
}
.story-pullquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
}
.story-visual {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.story-img-main {
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.story-img-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 40%, #3d5c4e 0%, #1a2e24 100%);
}
.story-img-caption {
  font-size: 11px;
  color: var(--warm-gray);
  letter-spacing: 0.06em;
  font-style: italic;
  text-align: center;
}
.story-img-secondary {
  aspect-ratio: 16/10;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.story-img-secondary-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 45%, #0f3020 0%, #051510 100%);
}

/* Philosophy section */
.philosophy-section {
  background: var(--ink);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.philosophy-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(193,127,58,0.1) 0%, transparent 60%);
}
.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
}
.pillar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
}
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.7;
}
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.pillar-body {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  font-weight: 300;
}

/* Credentials section */
.credentials-section {
  padding: 100px 48px;
  background: var(--cream);
}
.credentials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.credential-item {
  text-align: center;
}
.credential-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.credential-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* Brand CTA section */
.brand-cta-section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.brand-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 52px;
}
.brand-cta-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--warm-gray);
  font-weight: 300;
}
.brand-cta-body p + p { margin-top: 16px; }
.brand-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-primary:hover { background: var(--ink-mid); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--cream-dark);
  color: var(--warm-gray);
  padding: 13px 28px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.brand-cta-right { display: flex; flex-direction: column; gap: 20px; }
.brand-pillar {
  padding: 24px;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  transition: border-color 0.3s;
}
.brand-pillar:hover { border-color: var(--amber); }
.brand-pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
}
.brand-pillar-body {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ─── MARQUEE ─────────────────────────────────────── */
.marquee-wrap {
  background: var(--ink);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  padding: 0 32px;
}
.marquee-item span {
  color: var(--amber);
  margin: 0 8px;
  font-style: normal;
  font-size: 12px;
}

/* ─── VIDEOS ──────────────────────────────────────── */
.content-section {
  padding: 100px 48px;
  background: var(--cream);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.video-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-card:hover { transform: translateY(-6px); }
.video-thumb {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.video-thumb-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.video-card:hover .video-thumb-bg { transform: scale(1.04); }
.vt1 { background: radial-gradient(ellipse at 40% 50%, #3d2a10 0%, #1a1208 100%); }
.vt2 { background: radial-gradient(ellipse at 60% 40%, #0d2e1e 0%, #05120c 100%); }
.vt3 { background: radial-gradient(ellipse at 50% 60%, #2e1208 0%, #110705 100%); }
.video-thumb-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.4);
  padding: 4px 10px;
  border-radius: 20px;
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.video-card:hover .video-play {
  border-color: var(--amber-light);
  background: rgba(193,127,58,0.15);
}
.play-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent rgba(255,255,255,0.8);
  margin-left: 2px;
}
.video-info { padding: 16px 18px 20px; }
.video-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 7px;
}
.video-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
}
.video-meta {
  font-size: 12px;
  color: var(--warm-gray);
  font-weight: 300;
}

/* ─── PLATFORMS ───────────────────────────────────── */
.platforms {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.platform-card {
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  padding: 28px 24px;
  text-decoration: none;
  display: block;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.platform-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.platform-card:hover { border-color: var(--amber); transform: translateY(-3px); }
.platform-card:hover::after { transform: scaleX(1); }
.platform-icon {
  font-size: 22px;
  margin-bottom: 16px;
  display: block;
}
.platform-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.platform-handle {
  font-size: 12px;
  color: var(--warm-gray);
  font-weight: 300;
}

/* ─── EMAIL ───────────────────────────────────────── */
.email-section {
  background: var(--ink);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.email-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(193,127,58,0.12) 0%, transparent 60%);
}
.email-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.email-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.email-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.email-headline em { font-style: italic; color: var(--amber-light); }
.email-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}
.email-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  transition: border-color 0.3s;
}
.email-form:focus-within { border-color: rgba(193,127,58,0.5); }
.email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 24px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
}
.email-input::placeholder { color: rgba(255,255,255,0.25); }
.email-btn {
  background: var(--amber);
  border: none;
  padding: 14px 28px;
  font-size: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s;
}
.email-btn:hover { background: var(--amber-light); }
.email-note {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

/* ─── RECIPES ─────────────────────────────────────── */
.recipes-section {
  padding: 100px 48px;
  background: var(--white);
}
.recipes-controls {
  max-width: 1200px;
  margin: 0 auto 48px;
}
.recipes-search-wrap {
  position: relative;
  margin-bottom: 28px;
  max-width: 480px;
}
.recipes-search {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 40px;
  padding: 13px 48px 13px 20px;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
  letter-spacing: 0.02em;
}
.recipes-search::placeholder { color: var(--warm-gray); }
.recipes-search:focus { border-color: var(--amber); }
.search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--warm-gray);
  pointer-events: none;
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.filter-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-right: 4px;
}
.filter-pill {
  border: 1px solid var(--cream-dark);
  border-radius: 40px;
  padding: 7px 18px;
  font-size: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--warm-gray);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.04em;
}
.filter-pill:hover { border-color: var(--amber); color: var(--amber); }
.filter-pill.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.recipes-meta {
  max-width: 1200px;
  margin: 0 auto 24px;
  font-size: 12px;
  color: var(--warm-gray);
  letter-spacing: 0.04em;
}
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.recipe-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: block;
}
.recipe-card:hover {
  transform: translateY(-5px);
  border-color: var(--amber);
  box-shadow: 0 12px 32px rgba(193,127,58,0.1);
}
.recipe-card.hidden { display: none; }
.recipe-thumb {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.recipe-thumb-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.recipe-card:hover .recipe-thumb-bg { transform: scale(1.05); }
.rb1 { background: radial-gradient(ellipse at 35% 45%, #4a2e10 0%, #1a0f05 100%); }
.rb2 { background: radial-gradient(ellipse at 60% 35%, #0f3020 0%, #051510 100%); }
.rb3 { background: radial-gradient(ellipse at 45% 55%, #3a1a08 0%, #150805 100%); }
.rb4 { background: radial-gradient(ellipse at 55% 40%, #2a3010 0%, #101508 100%); }
.rb5 { background: radial-gradient(ellipse at 40% 60%, #351a28 0%, #150810 100%); }
.rb6 { background: radial-gradient(ellipse at 65% 45%, #1a2a35 0%, #081015 100%); }
.rb7 { background: radial-gradient(ellipse at 30% 50%, #3d2808 0%, #1a1005 100%); }
.rb8 { background: radial-gradient(ellipse at 50% 35%, #0a2818 0%, #041008 100%); }
.rb9 { background: radial-gradient(ellipse at 55% 55%, #2e1510 0%, #120808 100%); }
.recipe-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(26,21,16,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.recipe-time {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(193,127,58,0.85);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
}
.recipe-info { padding: 18px 20px 22px; }
.recipe-cats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.recipe-cat-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}
.recipe-cat-tag + .recipe-cat-tag::before {
  content: '·';
  margin-right: 6px;
  color: var(--cream-dark);
}
.recipe-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 8px;
}
.recipe-desc {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.7;
  font-weight: 300;
}
.recipe-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--cream-dark);
}
.recipe-stat {
  font-size: 11px;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 5px;
}
.recipe-stat strong { color: var(--ink-mid); font-weight: 500; }
.recipe-arrow {
  font-size: 14px;
  color: var(--cream-dark);
  transition: color 0.3s, transform 0.3s;
}
.recipe-card:hover .recipe-arrow { color: var(--amber); transform: translateX(3px); }
.no-results {
  display: none;
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
}
.no-results.show { display: block; }
.no-results p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--warm-gray);
  margin-bottom: 8px;
}
.no-results span { font-size: 13px; color: var(--warm-gray); }

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  padding: 40px 48px;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
.footer-note {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--amber); }

/* ─── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-secondary { flex-direction: row; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled,
  nav.nav-light { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 0 24px 56px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .page-hero { padding: 0 24px 48px; height: 44vh; min-height: 360px; }
  .breadcrumb-bar { padding: 12px 24px; }

  .about-teaser { grid-template-columns: 1fr; padding: 80px 24px; gap: 48px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { position: static; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 32px; }
  .credentials-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .brand-cta-grid { grid-template-columns: 1fr; gap: 48px; }

  .video-grid { grid-template-columns: 1fr; }
  .recipes-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-secondary { flex-direction: column; }

  .content-section,
  .platforms,
  .email-section,
  .recipes-section,
  .featured-section,
  .story-section,
  .philosophy-section,
  .credentials-section,
  .brand-cta-section { padding: 72px 24px; }

  footer { flex-direction: column; gap: 16px; text-align: center; padding: 32px 24px; }
}

@media (max-width: 600px) {
  .credentials-grid { grid-template-columns: 1fr 1fr; }
  .platforms-grid { grid-template-columns: 1fr 1fr; }
  .recipe-meta-inner { flex-wrap: wrap; gap: 0; }
  .recipe-meta-item { border-right: none; border-bottom: 1px solid var(--cream-dark); flex: 1 1 50%; padding: 14px 16px; }
}

/* ═══════════════════════════════════════════════════
   RECIPE PAGES
═══════════════════════════════════════════════════ */

/* ─── RECIPE PAGE HERO ────────────────────────────── */
.recipe-hero {
  height: 65vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 48px 64px;
  background: var(--ink);
  overflow: hidden;
}
.recipe-hero-bg {
  position: absolute;
  inset: 0;
}
.recipe-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,21,16,0.85) 0%, rgba(26,21,16,0.4) 50%, rgba(26,21,16,0.25) 100%);
}
.recipe-hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.recipe-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: fadeUp 0.9s ease both;
}
.recipe-hero-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.recipe-hero-cat {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-light);
  border: 1px solid rgba(193,127,58,0.4);
  border-radius: 20px;
  padding: 4px 12px;
}
.recipe-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.recipe-hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}
.recipe-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── RECIPE META BAR ────────────────────────────── */
.recipe-meta-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0 48px;
}
.recipe-meta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
.recipe-meta-item {
  padding: 20px 40px 20px 0;
  margin-right: 40px;
  border-right: 1px solid var(--cream-dark);
  flex: none;
}
.recipe-meta-item:last-child { border-right: none; margin-right: 0; }
.recipe-meta-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 4px;
}
.recipe-meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}

/* ─── RECIPE PAGE BODY ───────────────────────────── */
.recipe-page-content {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.recipe-intro {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
  font-size: 16px;
  line-height: 2;
  color: var(--warm-gray);
  font-weight: 300;
}
.recipe-intro strong { color: var(--ink-mid); font-weight: 500; }

.recipe-columns {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

/* Ingredients column */
.recipe-ingredients-col {
  position: sticky;
  top: 100px;
}
.col-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-dark);
  letter-spacing: -0.01em;
}
.ingredient-group { margin-bottom: 28px; }
.ingredient-group-title {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.ingredient-list { list-style: none; }
.ingredient-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream);
  font-size: 14px;
  line-height: 1.5;
}
.ingredient-item:last-child { border-bottom: none; }
.ingredient-qty { color: var(--ink-mid); font-weight: 500; }
.ingredient-name { color: var(--warm-gray); }

/* Method column */
.method-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  min-width: 36px;
  padding-top: 2px;
  user-select: none;
}
.step-body { flex: 1; }
.step-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--warm-gray);
  font-weight: 300;
}
.step-tip {
  margin-top: 8px;
  font-size: 13px;
  color: var(--amber);
  font-style: italic;
}

/* Notes section */
.recipe-notes {
  margin-top: 56px;
  padding: 32px 36px;
  background: var(--cream);
  border-radius: 4px;
  border-left: 3px solid var(--amber);
}
.recipe-notes-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 12px;
}
.recipe-notes-body {
  font-size: 14px;
  line-height: 1.9;
  color: var(--warm-gray);
}
.recipe-notes-body p + p { margin-top: 10px; }

/* Print bar */
.recipe-print-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 20px;
  display: flex;
  justify-content: flex-end;
}
.print-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  background: none;
  border: 1px solid var(--cream-dark);
  border-radius: 40px;
  padding: 8px 18px;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.print-btn:hover { border-color: var(--amber); color: var(--amber); }

/* Related recipes */
.related-section {
  padding: 80px 48px;
  background: var(--cream);
}
.related-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Recipe hero responsive */
@media (max-width: 900px) {
  .recipe-hero { padding: 0 24px 48px; height: 55vh; min-height: 420px; }
  .recipe-meta-bar { padding: 0 24px; }
  .recipe-page-content { padding: 56px 24px; }
  .recipe-columns { grid-template-columns: 1fr; gap: 48px; }
  .recipe-ingredients-col { position: static; }
  .related-section { padding: 64px 24px; }
  .recipe-print-bar { padding: 0 24px 16px; }
}

/* ─── PRINT STYLES ───────────────────────────────── */
@media print {
  nav, .nav-mobile-menu, .hero-scroll,
  .marquee-wrap, .email-section, .related-section,
  footer, .print-btn, .breadcrumb-bar,
  .recipe-hero-actions { display: none !important; }

  .recipe-hero {
    height: auto; min-height: unset;
    padding: 16px 0 12px;
    background: white !important;
  }
  .recipe-hero-bg, .recipe-hero-overlay, .recipe-hero-grain { display: none; }
  .recipe-hero-cat { border-color: #ccc; color: #777; }
  .recipe-hero-title { color: black !important; font-size: 28pt; }
  .recipe-hero-desc { color: #555 !important; font-size: 10pt; max-width: 100%; }

  .recipe-meta-bar { background: #f5f5f5; padding: 0; }
  .recipe-meta-inner { border: 1px solid #ddd; }
  .recipe-meta-item { padding: 12px 20px; }
  .recipe-meta-value { color: black; font-size: 14pt; }
  .recipe-meta-label { color: #666; }

  .recipe-page-content { padding: 16px 0; }
  .recipe-intro { text-align: left; color: #555; font-size: 10pt; margin-bottom: 20px; }
  .recipe-columns { grid-template-columns: 1fr 2fr; gap: 28px; }
  .recipe-ingredients-col { position: static; }

  .col-heading { font-size: 16pt; color: black; }
  .ingredient-item { font-size: 9pt; padding: 6px 0; }
  .ingredient-qty { color: #333; }
  .ingredient-name { color: #555; }

  .step-num { color: #ccc; font-size: 22pt; }
  .step-head { color: black; font-size: 11pt; }
  .step-text { font-size: 9pt; line-height: 1.6; color: #333; }

  .recipe-notes { background: #f9f9f9; }
  .recipe-notes-body { font-size: 9pt; color: #555; }

  body { font-size: 10pt; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  @page { margin: 0.75in; }
}

/* ═══════════════════════════════════════════════════
   JOURNAL / BLOG
═══════════════════════════════════════════════════ */

.blog-section {
  padding: 80px 48px 100px;
  background: var(--cream);
}
.blog-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.post-card:hover { transform: translateY(-5px); }
.post-card-featured {
  grid-column: 1 / -1;
  flex-direction: row;
  min-height: 340px;
}
.post-thumb {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.post-card-featured .post-thumb {
  aspect-ratio: unset;
  width: 52%;
  flex-shrink: 0;
}
.post-thumb-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.post-card:hover .post-thumb-bg { transform: scale(1.04); }
.pt1 { background: radial-gradient(ellipse at 40% 60%, #3a2208 0%, #1a1005 100%); }
.pt2 { background: radial-gradient(ellipse at 60% 40%, #0d1e2e 0%, #060d14 100%); }
.pt3 { background: radial-gradient(ellipse at 50% 50%, #1c2e0a 0%, #0c1506 100%); }
.pt4 { background: radial-gradient(ellipse at 35% 55%, #2e180a 0%, #120a04 100%); }
.pt5 { background: radial-gradient(ellipse at 65% 45%, #1a0e2e 0%, #0a0614 100%); }
.pt6 { background: radial-gradient(ellipse at 50% 40%, #2e2208 0%, #140e04 100%); }
.post-thumb-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.4);
  padding: 4px 10px;
  border-radius: 20px;
}
.post-info {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-card-featured .post-info { padding: 48px 52px; justify-content: center; }
.post-tag {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
.post-card-featured .post-title { font-size: clamp(26px, 3vw, 42px); }
.post-card:not(.post-card-featured) .post-title { font-size: 20px; }
.post-excerpt {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-mid);
  font-weight: 300;
  flex: 1;
  margin-bottom: 20px;
}
.post-card-featured .post-excerpt { font-size: 15px; max-width: 520px; }
.post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--warm-gray);
}
.post-meta-dot { opacity: 0.3; }
.post-read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 20px;
  transition: gap 0.25s;
}
.post-card:hover .post-read-more { gap: 12px; }

/* ═══════════════════════════════════════════════════
   VIDEOS PAGE
═══════════════════════════════════════════════════ */

.video-series {
  padding: 80px 48px;
  background: var(--cream);
}
.video-series + .video-series { padding-top: 0; }
.video-series-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.video-series-header { margin-bottom: 40px; }
.video-series-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}
.video-series-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.video-series-desc {
  font-size: 14px;
  color: var(--warm-gray);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.75;
}
.vt4 { background: radial-gradient(ellipse at 40% 60%, #2a1a08 0%, #100a04 100%); }
.vt5 { background: radial-gradient(ellipse at 55% 45%, #08201a 0%, #040f0d 100%); }
.vt6 { background: radial-gradient(ellipse at 60% 55%, #20100a 0%, #0d0806 100%); }
.vt7 { background: radial-gradient(ellipse at 45% 50%, #1a2012 0%, #0c100a 100%); }
.vt8 { background: radial-gradient(ellipse at 50% 40%, #10182a 0%, #060c14 100%); }
.vt9 { background: radial-gradient(ellipse at 40% 60%, #2a1408 0%, #120803 100%); }
.video-platform-cta {
  background: var(--ink);
  padding: 100px 48px;
  text-align: center;
}
.video-platform-cta-inner { max-width: 600px; margin: 0 auto; }
.video-platform-cta .cta-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 20px;
}
.video-platform-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.video-platform-cta h2 em { font-style: italic; color: var(--amber-light); }
.video-platform-cta p {
  font-size: 15px;
  color: rgba(253,250,245,0.55);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 44px;
}
.video-platform-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.video-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.video-platform-link-solid {
  background: var(--amber);
  color: var(--ink);
  border: 1px solid var(--amber);
}
.video-platform-link-solid:hover { background: var(--amber-light); border-color: var(--amber-light); }
.video-platform-link-outline {
  background: transparent;
  color: rgba(253,250,245,0.65);
  border: 1px solid rgba(253,250,245,0.18);
}
.video-platform-link-outline:hover { color: var(--white); border-color: rgba(253,250,245,0.45); }

@media (max-width: 900px) {
  .post-card-featured { flex-direction: column; }
  .post-card-featured .post-thumb { width: 100%; aspect-ratio: 16/9; }
  .post-card-featured .post-info { padding: 28px 26px 32px; }
  .blog-section, .video-series { padding: 72px 24px; }
  .video-platform-cta { padding: 80px 24px; }
}
@media (max-width: 700px) {
  .post-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   WORK WITH ME
═══════════════════════════════════════════════════ */

.wm-intro {
  padding: 80px 48px 100px;
  background: var(--cream);
}
.wm-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.wm-intro-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.wm-intro-lead em { font-style: italic; color: var(--amber); }
.wm-intro-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--warm-gray);
  font-weight: 300;
}
.wm-intro-body p + p { margin-top: 16px; }

/* Services */
.wm-services {
  padding: 100px 48px;
  background: var(--white);
}
.wm-services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.wm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.wm-service-card {
  padding: 36px 32px 40px;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}
.wm-service-card:hover { border-color: var(--amber); transform: translateY(-4px); }
.wm-service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 20px;
}
.wm-service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.wm-service-body {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}
.wm-service-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.wm-service-list li {
  font-size: 13px;
  color: var(--ink-mid);
  font-weight: 300;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.wm-service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 11px;
  line-height: 1.7;
}

/* Audience stats */
.wm-audience {
  background: var(--ink);
  padding: 100px 48px;
}
.wm-audience-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.wm-audience-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.wm-audience-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.wm-audience-heading em { font-style: italic; color: var(--amber-light); }
.wm-audience-desc {
  font-size: 15px;
  color: rgba(253,250,245,0.5);
  font-weight: 300;
  line-height: 1.8;
}
.wm-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 52px;
}
.wm-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.wm-stat-label {
  font-size: 12px;
  letter-spacing: 0.07em;
  color: rgba(253,250,245,0.4);
  line-height: 1.55;
}

/* Standards */
.wm-standards {
  padding: 100px 48px;
  background: var(--cream);
}
.wm-standards-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.wm-standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 52px;
}
.wm-standard-item {}
.wm-standard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.wm-standard-body {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.8;
  font-weight: 300;
}

/* Contact form */
.wm-contact {
  padding: 100px 48px;
  background: var(--white);
}
.wm-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}
.wm-contact-context {
  position: sticky;
  top: 100px;
}
.wm-contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.wm-contact-title em { font-style: italic; color: var(--amber); }
.wm-contact-body {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 36px;
}
.wm-contact-body p + p { margin-top: 14px; }
.wm-media-kit-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(193,127,58,0.3);
  padding-bottom: 3px;
  transition: border-color 0.25s, color 0.25s;
}
.wm-media-kit-link:hover { color: var(--amber-light); border-color: var(--amber-light); }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
}
.form-input,
.form-textarea,
.form-select {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--warm-gray); opacity: 0.6; }
.form-input:focus,
.form-textarea:focus,
.form-select:focus { outline: none; border-color: var(--amber); background: var(--white); }
.form-textarea { resize: vertical; min-height: 140px; line-height: 1.7; }
.form-select { cursor: pointer; }
.form-submit {
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  align-self: flex-start;
  transition: background 0.3s;
}
.form-submit:hover { background: var(--ink-mid); }

@media (max-width: 900px) {
  .wm-intro-inner,
  .wm-audience-intro,
  .wm-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .wm-services-grid,
  .wm-standards-grid { grid-template-columns: 1fr; gap: 24px; }
  .wm-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .wm-contact-context { position: static; }
  .wm-intro,
  .wm-services,
  .wm-audience,
  .wm-standards,
  .wm-contact { padding: 72px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 20px; }
}

/* ── Email form feedback states ─────────────────────────────── */
.email-success {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--cream);
  opacity: 0.9;
  letter-spacing: 0.01em;
  margin: 0;
  padding: 4px 0;
}

.email-error {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: #e8a87c;
  margin: 8px 0 0;
  padding: 0;
}

/* ── Contact form feedback states ───────────────────────────── */
.form-feedback {
  padding: 20px 24px;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.95rem;
}
.form-feedback p { margin: 0; }
.form-feedback--success {
  background: rgba(193,127,58,0.12);
  border: 1px solid rgba(193,127,58,0.3);
  color: var(--ink);
}
.form-feedback--error {
  color: #c0392b;
  background: rgba(192,57,43,0.06);
  border: 1px solid rgba(192,57,43,0.2);
  margin-top: 12px;
}

/* ── Image overlays for gradient placeholders ───────────────── */
/* When a photo is dropped into images/, it covers the gradient.
   onerror on each <img> hides it when the file isn't present yet. */
.hero-bg img,
.page-hero-bg img,
.featured-card-bg img,
.secondary-card-bg img,
.recipe-thumb-bg img,
.video-thumb-bg img,
.post-thumb-bg img,
.recipe-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
