    :root {
      --bg: #f4f8fa;
      --bg-cream: #ffffff;
      --bg-warm: #e6eff3;
      --bg-sky: #d4e4ec;
      --ink: #1a2a32;
      --ink-soft: #3d5460;
      --moss: #0b6f9e;
      --moss-deep: #0a3a53;
      --sage: #5f93b0;
      --sky: #6fa3bf;
      --sky-deep: #4a7d96;
      --ochre: #c08148;
      --ochre-deep: #9a5f2d;
      --stone: #c9d4dc;
      --line: rgba(26, 42, 50, 0.1);
      --radius: 4px;
      --radius-lg: 18px;
      --max: 1280px;
      --pad: clamp(20px, 4vw, 56px);
      --display: 'Cormorant Garamond', Georgia, serif;
      --body: 'Inter', system-ui, sans-serif;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--body);
      background: var(--bg);
      color: var(--ink);
      line-height: 1.6;
      font-weight: 400;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 var(--pad);
    }

    /* ===== NAV ===== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 18px 0;
      transition: all 0.3s ease;
      background: transparent;
    }
    .nav.scrolled {
      background: rgba(244, 239, 230, 0.92);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      padding: 12px 0;
      border-bottom: 1px solid var(--line);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      font-family: var(--display);
      font-weight: 500;
      font-size: 24px;
      letter-spacing: -0.01em;
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .brand-logo {
      display: block;
      height: 48px;
      width: auto;
      transition: height 0.3s ease;
    }
    .brand-logo-light { display: none; }
    .nav.scrolled .brand-logo { height: 40px; }
    .nav.home-hero:not(.scrolled) .brand-logo { display: none; }
    .nav.home-hero:not(.scrolled) .brand-logo-light { display: block; }
    .footer-brand .brand-logo { height: 54px; }
    @media (max-width: 640px) {
      .brand-logo { height: 34px; }
      .nav.scrolled .brand-logo { height: 30px; }
      .footer-brand .brand-logo { height: 44px; }
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      color: var(--ink-soft);
      transition: color 0.2s;
      position: relative;
    }
    .nav-links a:hover { color: var(--moss); }
    .nav-cta {
      background: var(--moss);
      color: var(--bg-cream) !important;
      padding: 10px 20px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
      transition: all 0.25s;
    }
    .nav-cta:hover { background: var(--moss-deep); transform: translateY(-1px); }
    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--ink);
      margin: 5px 0;
      transition: 0.3s;
    }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      padding: 140px 0 80px;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at top right, rgba(111, 163, 191, 0.18), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(11, 111, 158, 0.12), transparent 55%),
        radial-gradient(ellipse at top left, rgba(192, 129, 72, 0.06), transparent 50%);
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: center;
      width: 100%;
    }
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--moss);
      margin-bottom: 28px;
    }
    .hero-eyebrow::before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--moss);
    }
    .hero h1 {
      font-family: var(--display);
      font-weight: 400;
      font-size: clamp(48px, 7vw, 96px);
      line-height: 0.98;
      letter-spacing: -0.03em;
      color: var(--ink);
      margin-bottom: 28px;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--moss);
      font-weight: 400;
    }
    .hero p.lead {
      font-size: clamp(17px, 1.4vw, 19px);
      color: var(--ink-soft);
      max-width: 520px;
      margin-bottom: 40px;
      line-height: 1.55;
    }
    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      align-items: center;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 28px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.02em;
      cursor: pointer;
      transition: all 0.25s;
      border: none;
      font-family: inherit;
    }
    .btn-primary {
      background: var(--moss);
      color: var(--bg-cream);
    }
    .btn-primary:hover {
      background: var(--moss-deep);
      transform: translateY(-2px);
      box-shadow: 0 12px 30px -10px rgba(10, 58, 83, 0.5);
    }
    .btn-ghost {
      background: transparent;
      color: var(--ink);
      border: 1px solid var(--ink);
    }
    .btn-ghost:hover {
      background: var(--ink);
      color: var(--bg-cream);
    }
    .hero-meta {
      display: flex;
      gap: 32px;
      margin-top: 56px;
      padding-top: 32px;
      border-top: 1px solid var(--line);
      flex-wrap: wrap;
    }
    .hero-meta-item .num {
      font-family: var(--display);
      font-size: 32px;
      color: var(--moss);
      font-weight: 500;
      line-height: 1;
      margin-bottom: 6px;
    }
    .hero-meta-item .label {
      font-size: 12px;
      color: var(--ink-soft);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* Hero visual */
    .hero-visual {
      position: relative;
      aspect-ratio: 4/5;
      max-width: 540px;
      justify-self: end;
      width: 100%;
    }
    .hero-img-main {
      position: absolute;
      inset: 0;
      border-radius: 280px 280px 24px 24px;
      overflow: hidden;
      box-shadow: 0 40px 80px -30px rgba(29, 36, 25, 0.35);
    }
    .hero-img-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.05);
    }
    .hero-img-accent {
      position: absolute;
      bottom: -40px;
      left: -40px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      overflow: hidden;
      border: 8px solid var(--bg);
      box-shadow: 0 20px 50px -15px rgba(29, 36, 25, 0.35);
      z-index: 3;
    }
    .hero-img-accent img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-badge {
      position: absolute;
      top: 30px;
      right: -30px;
      width: 140px;
      height: 140px;
      background: var(--ochre);
      color: var(--bg-cream);
      border-radius: 50%;
      display: grid;
      place-items: center;
      text-align: center;
      font-family: var(--display);
      font-style: italic;
      font-weight: 500;
      font-size: 14px;
      line-height: 1.25;
      padding: 20px;
      z-index: 4;
      box-shadow: 0 16px 40px -10px rgba(184, 116, 58, 0.5);
      transform: rotate(-8deg);
      transition: transform 0.6s cubic-bezier(.34,1.56,.64,1);
    }
    .hero-badge:hover { transform: rotate(0deg) scale(1.05); }
    .hero-badge span {
      display: block;
    }

    /* SVG leaf accents */
    .leaf-accent {
      position: absolute;
      pointer-events: none;
      opacity: 0.6;
    }
    .leaf-accent.l1 {
      top: 18%;
      left: -40px;
      width: 200px;
      transform: rotate(-25deg);
      opacity: 0.35;
    }
    .leaf-accent.l2 {
      bottom: 8%;
      right: 6%;
      width: 140px;
      transform: rotate(30deg);
      opacity: 0.3;
    }

    /* ===== MARQUEE STRIP ===== */
    .marquee {
      background: var(--sky-deep);
      color: var(--bg-cream);
      padding: 20px 0;
      overflow: hidden;
      position: relative;
    }
    .marquee-track {
      display: flex;
      gap: 60px;
      animation: scroll 30s linear infinite;
      white-space: nowrap;
      width: max-content;
    }
    .marquee-item {
      font-family: var(--display);
      font-style: italic;
      font-size: 22px;
      font-weight: 400;
      display: flex;
      align-items: center;
      gap: 60px;
    }
    .marquee-item::after {
      content: '✦';
      color: var(--ochre);
      font-style: normal;
    }
    @keyframes scroll {
      to { transform: translateX(-50%); }
    }

    /* ===== SECTION BASE ===== */
    section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
    .section-eyebrow {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--moss);
      margin-bottom: 20px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .section-eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--moss);
    }
    h2.section-title {
      font-family: var(--display);
      font-weight: 400;
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1.02;
      letter-spacing: -0.025em;
      color: var(--ink);
      margin-bottom: 24px;
      max-width: 900px;
    }
    h2.section-title em {
      font-style: italic;
      color: var(--moss);
    }
    .section-intro {
      font-size: 18px;
      color: var(--ink-soft);
      max-width: 620px;
      line-height: 1.6;
    }

    /* ===== STORY SECTION ===== */
    .story {
      background: var(--bg-cream);
      position: relative;
    }
    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: center;
      margin-top: 60px;
    }
    .story-visual {
      position: relative;
      aspect-ratio: 5/6;
    }
    .story-img-1, .story-img-2 {
      position: absolute;
      overflow: hidden;
      border-radius: var(--radius-lg);
      box-shadow: 0 30px 70px -25px rgba(29, 36, 25, 0.4);
    }
    .story-img-1 {
      top: 0;
      left: 0;
      width: 70%;
      height: 70%;
      z-index: 2;
    }
    .story-img-2 {
      bottom: 0;
      right: 0;
      width: 60%;
      height: 55%;
      border: 8px solid var(--bg-cream);
    }
    .story-img-1 img, .story-img-2 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .story-content p {
      font-size: 17px;
      color: var(--ink-soft);
      margin-bottom: 20px;
      line-height: 1.7;
    }
    .story-content p.large {
      font-family: var(--display);
      font-size: clamp(20px, 1.7vw, 24px);
      color: var(--ink);
      font-weight: 400;
      line-height: 1.45;
      font-style: italic;
    }
    .signature {
      font-family: var(--display);
      font-style: italic;
      font-size: 22px;
      color: var(--moss);
      margin-top: 32px;
      font-weight: 500;
    }
    .signature small {
      display: block;
      font-family: var(--body);
      font-style: normal;
      font-size: 13px;
      color: var(--ink-soft);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-top: 4px;
      font-weight: 500;
    }

    /* ===== CHEESES GRID ===== */
    .cheeses {
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
    }

    /* ===== SAMPLER / TASTING FLIGHT ===== */
    .sampler {
      background: var(--bg-cream);
      position: relative;
      overflow: hidden;
    }
    .sampler-topo {
      position: absolute;
      inset: 0;
      opacity: 0.04;
      pointer-events: none;
      background-image:
        radial-gradient(circle at 20% 30%, var(--moss) 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, var(--sky-deep) 1px, transparent 1px);
      background-size: 80px 80px, 120px 120px;
    }
    .sampler-head {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 80px;
    }
    .sampler-head .section-eyebrow { display: inline-flex; }
    .sampler-head h2 { margin: 0 auto 24px; }
    .sampler-head p { margin: 0 auto; }

    .flight {
      display: grid;
      gap: 80px;
      position: relative;
      z-index: 1;
    }
    .flight-item {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 100px);
      align-items: center;
    }
    .flight-item.reverse {
      direction: rtl;
    }
    .flight-item.reverse > * {
      direction: ltr;
    }
    .flight-visual {
      position: relative;
      aspect-ratio: 1;
    }
    .flight-img {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 40px 80px -30px rgba(26, 42, 50, 0.4);
    }
    .flight-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s ease;
    }
    .flight-item:hover .flight-img img { transform: scale(1.05); }
    .flight-circle-bg {
      position: absolute;
      inset: 20px;
      border-radius: 50%;
      background: var(--bg-sky);
      z-index: -1;
      transform: translate(20px, 20px);
    }
    .flight-item:nth-child(2) .flight-circle-bg { background: var(--moss); opacity: 0.15; }
    .flight-item:nth-child(3) .flight-circle-bg { background: var(--ochre); opacity: 0.2; }

    .flight-number {
      position: absolute;
      top: -20px;
      left: -20px;
      width: 80px;
      height: 80px;
      background: var(--bg-cream);
      border: 1px solid var(--line);
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-family: var(--display);
      font-style: italic;
      font-size: 32px;
      color: var(--moss);
      font-weight: 500;
      z-index: 2;
      box-shadow: 0 10px 30px -10px rgba(26, 42, 50, 0.2);
    }

    .flight-content .flight-eyebrow {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ochre);
      font-weight: 600;
      margin-bottom: 16px;
    }
    .flight-content h3 {
      font-family: var(--display);
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 400;
      line-height: 1.02;
      letter-spacing: -0.025em;
      color: var(--ink);
      margin-bottom: 20px;
    }
    .flight-content h3 em {
      font-style: italic;
      color: var(--moss);
    }
    .flight-content > p {
      font-size: 17px;
      color: var(--ink-soft);
      line-height: 1.65;
      margin-bottom: 28px;
    }
    .tasting-notes {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-bottom: 28px;
      border-top: 1px solid var(--line);
    }
    .tasting-note {
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }
    .tasting-note:nth-child(odd) {
      padding-right: 20px;
      border-right: 1px solid var(--line);
    }
    .tasting-note:nth-child(even) {
      padding-left: 20px;
    }
    .tasting-note .tn-label {
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 6px;
      font-weight: 600;
    }
    .tasting-note .tn-value {
      font-family: var(--display);
      font-size: 17px;
      color: var(--ink);
      line-height: 1.3;
    }
    .pairings {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
    }
    .pairing {
      background: var(--bg-sky);
      color: var(--sky-deep);
      padding: 7px 14px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
    }
    .flight-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--moss);
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0.02em;
      padding-bottom: 4px;
      border-bottom: 1px solid var(--moss);
      transition: gap 0.25s;
    }
    .flight-cta:hover { gap: 16px; }

    /* ===== QUOTE BAND ===== */
    .quote-band {
      background: var(--moss-deep);
      color: var(--bg-cream);
      padding: clamp(60px, 8vw, 100px) 0;
      position: relative;
      overflow: hidden;
    }
    .quote-band::before {
      content: '"';
      position: absolute;
      top: -80px;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--display);
      font-size: 500px;
      color: var(--ochre);
      opacity: 0.08;
      line-height: 1;
      pointer-events: none;
    }
    .quote-band-inner {
      max-width: 880px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
    }
    .quote-band blockquote {
      font-family: var(--display);
      font-size: clamp(24px, 3.2vw, 38px);
      font-weight: 400;
      line-height: 1.25;
      letter-spacing: -0.015em;
      font-style: italic;
      margin-bottom: 32px;
    }
    .quote-band cite {
      font-style: normal;
      font-size: 13px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ochre);
      font-weight: 500;
    }
    .quote-band cite span {
      display: block;
      color: rgba(255, 255, 255, 0.6);
      letter-spacing: 0.04em;
      text-transform: none;
      font-size: 12px;
      margin-top: 6px;
    }
    .cheeses-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
      gap: 40px;
      flex-wrap: wrap;
    }
    .cheese-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .cheese-card {
      background: var(--bg-cream);
      border-radius: var(--radius-lg);
      padding: 24px;
      transition: all 0.35s cubic-bezier(.34,1.56,.64,1);
      cursor: pointer;
      position: relative;
      overflow: hidden;
      border: 1px solid transparent;
    }
    .cheese-card:hover {
      transform: translateY(-6px);
      border-color: var(--moss);
      box-shadow: 0 30px 50px -20px rgba(29, 36, 25, 0.25);
    }
    .cheese-img {
      aspect-ratio: 1;
      border-radius: 50%;
      overflow: hidden;
      margin-bottom: 20px;
      background: var(--bg-sky);
      position: relative;
    }
    .cheese-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .cheese-card:hover .cheese-img img {
      transform: scale(1.08);
    }
    .cheese-name {
      font-family: var(--display);
      font-size: 22px;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 6px;
      letter-spacing: -0.01em;
    }
    .cheese-desc {
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.5;
    }
    .cheese-tag {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--ochre);
      color: var(--bg-cream);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: 100px;
      z-index: 2;
    }

    /* ===== CRAFT / PROCESS ===== */
    .craft {
      background: var(--moss-deep);
      color: var(--bg-cream);
      position: relative;
      overflow: hidden;
    }
    .craft .section-eyebrow { color: var(--ochre); }
    .craft .section-eyebrow::before { background: var(--ochre); }
    .craft h2.section-title { color: var(--bg-cream); }
    .craft h2.section-title em { color: var(--ochre); }
    .craft .section-intro { color: rgba(250, 246, 237, 0.75); }
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      margin-top: 80px;
      position: relative;
    }
    .step {
      position: relative;
      padding-top: 32px;
    }
    .step-num {
      font-family: var(--display);
      font-style: italic;
      font-size: 80px;
      color: var(--ochre);
      font-weight: 400;
      line-height: 0.8;
      margin-bottom: 24px;
      opacity: 0.9;
    }
    .step h4 {
      font-family: var(--display);
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 12px;
      color: var(--bg-cream);
    }
    .step p {
      font-size: 15px;
      color: rgba(250, 246, 237, 0.7);
      line-height: 1.6;
    }
    .craft-leaf {
      position: absolute;
      opacity: 0.08;
      pointer-events: none;
    }
    .craft-leaf.t {
      top: -50px;
      right: -50px;
      width: 400px;
      transform: rotate(45deg);
    }

    /* ===== AWARDS / RECOGNITION ===== */
    .awards {
      background: var(--bg-sky);
    }
    .awards-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: center;
      margin-top: 60px;
    }
    .awards-image {
      aspect-ratio: 4/5;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 30px 70px -25px rgba(29, 36, 25, 0.4);
      position: relative;
    }
    .awards-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .awards-list {
      display: grid;
      gap: 24px;
    }
    .award-item {
      padding: 28px 0;
      border-bottom: 1px solid var(--line);
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 24px;
      align-items: center;
    }
    .award-item:first-child { border-top: 1px solid var(--line); }
    .award-year {
      font-family: var(--display);
      font-size: 28px;
      color: var(--moss);
      font-weight: 500;
      line-height: 1;
    }
    .award-text h4 {
      font-family: var(--display);
      font-size: 19px;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 4px;
      letter-spacing: -0.01em;
    }
    .award-text p {
      font-size: 14px;
      color: var(--ink-soft);
    }
    .award-badge {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--ochre);
      display: grid;
      place-items: center;
      color: var(--bg-cream);
      flex-shrink: 0;
    }

    /* ===== RECIPES ===== */
    .recipes-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
      gap: 40px;
      flex-wrap: wrap;
    }
    .recipe-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .recipe-card {
      position: relative;
      aspect-ratio: 3/4;
      border-radius: var(--radius-lg);
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.4s ease;
    }
    .recipe-card:hover { transform: translateY(-6px); }
    .recipe-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .recipe-card:hover img { transform: scale(1.08); }
    .recipe-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(29, 36, 25, 0.85), transparent 50%);
    }
    .recipe-meta {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
      z-index: 2;
      color: var(--bg-cream);
    }
    .recipe-meta .chef {
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.85;
      margin-bottom: 8px;
    }
    .recipe-meta h4 {
      font-family: var(--display);
      font-size: 20px;
      font-weight: 500;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }

    /* ===== FARM VISIT CTA ===== */
    .visit {
      background: var(--bg-cream);
      position: relative;
    }
    .visit-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 30px 70px -25px rgba(29, 36, 25, 0.25);
    }
    .visit-text {
      background: var(--moss);
      color: var(--bg-cream);
      padding: clamp(40px, 5vw, 72px);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .visit-text .section-eyebrow { color: var(--ochre); }
    .visit-text .section-eyebrow::before { background: var(--ochre); }
    .visit-text h2 {
      font-family: var(--display);
      font-weight: 400;
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
      color: var(--bg-cream);
    }
    .visit-text h2 em {
      font-style: italic;
      color: var(--ochre);
    }
    .visit-text p {
      color: rgba(250, 246, 237, 0.85);
      margin-bottom: 32px;
      font-size: 16px;
      line-height: 1.65;
    }
    .visit-img {
      min-height: 400px;
      background-size: cover;
      background-position: center;
    }
    .btn-light {
      background: var(--bg-cream);
      color: var(--moss-deep);
      align-self: flex-start;
    }
    .btn-light:hover {
      background: var(--ochre);
      color: var(--bg-cream);
      transform: translateY(-2px);
    }

    /* ===== FAQ ===== */
    .faq {
      background: var(--bg-cream);
    }
    .faq-inner {
      max-width: 820px;
      margin: 60px auto 0;
    }
    .faq-item {
      border-bottom: 1px solid var(--line);
    }
    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 28px 0;
      font-family: var(--display);
      font-size: clamp(18px, 1.6vw, 22px);
      font-weight: 500;
      color: var(--ink);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      letter-spacing: -0.01em;
    }
    .faq-q::after {
      content: '';
      width: 14px;
      height: 14px;
      border-right: 1.5px solid var(--moss);
      border-bottom: 1.5px solid var(--moss);
      transform: rotate(45deg);
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .faq-item.open .faq-q::after {
      transform: rotate(-135deg);
    }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      color: var(--ink-soft);
      font-size: 16px;
      line-height: 1.7;
    }
    .faq-item.open .faq-a {
      max-height: 400px;
      padding-bottom: 28px;
    }

    /* ===== CONTACT ===== */
    .contact {
      background: var(--moss-deep);
      color: var(--bg-cream);
    }
    .contact .section-eyebrow { color: var(--ochre); }
    .contact .section-eyebrow::before { background: var(--ochre); }
    .contact h2 { color: var(--bg-cream); }
    .contact h2 em { color: var(--ochre); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 80px);
      margin-top: 60px;
    }
    .contact-info p {
      color: rgba(250, 246, 237, 0.8);
      margin-bottom: 32px;
      font-size: 17px;
      line-height: 1.65;
    }
    .contact-list {
      list-style: none;
      display: grid;
      gap: 16px;
    }
    .contact-list li {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 20px;
      background: rgba(250, 246, 237, 0.06);
      border-radius: 12px;
      transition: background 0.2s;
    }
    .contact-list li:hover { background: rgba(250, 246, 237, 0.1); }
    .contact-list a {
      color: var(--bg-cream);
      font-size: 15px;
      flex: 1;
    }
    .contact-list svg { color: var(--ochre); flex-shrink: 0; }

    .form { display: grid; gap: 16px; }
    .form input, .form textarea {
      background: rgba(250, 246, 237, 0.08);
      border: 1px solid rgba(250, 246, 237, 0.15);
      color: var(--bg-cream);
      padding: 16px 20px;
      border-radius: 12px;
      font-family: inherit;
      font-size: 15px;
      transition: all 0.2s;
    }
    .form input:focus, .form textarea:focus {
      outline: none;
      border-color: var(--ochre);
      background: rgba(250, 246, 237, 0.12);
    }
    .form input::placeholder, .form textarea::placeholder {
      color: rgba(250, 246, 237, 0.5);
    }
    .form textarea { resize: vertical; min-height: 120px; }
    .form button {
      background: var(--ochre);
      color: var(--bg-cream);
      padding: 16px 28px;
      border-radius: 100px;
      font-weight: 500;
      cursor: pointer;
      border: none;
      font-family: inherit;
      font-size: 14px;
      transition: all 0.25s;
      justify-self: start;
    }
    .form button:hover { background: var(--ochre-deep); transform: translateY(-2px); }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--ink);
      color: rgba(250, 246, 237, 0.7);
      padding: 70px 0 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 50px;
    }
    .footer-brand .brand { color: var(--bg-cream); margin-bottom: 16px; }
    .footer-brand p { font-size: 14px; line-height: 1.6; max-width: 320px; }
    .footer h5 {
      font-family: var(--display);
      color: var(--bg-cream);
      font-weight: 500;
      font-size: 17px;
      margin-bottom: 18px;
    }
    .footer ul { list-style: none; display: grid; gap: 10px; }
    .footer ul a {
      font-size: 14px;
      transition: color 0.2s;
    }
    .footer ul a:hover { color: var(--ochre); }
    .footer-socials {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }
    .footer-socials a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(250, 246, 237, 0.08);
      display: grid;
      place-items: center;
      transition: all 0.25s;
    }
    .footer-socials a:hover {
      background: var(--ochre);
      color: var(--bg-cream);
      transform: translateY(-2px);
    }
    .footer-bottom {
      padding-top: 30px;
      border-top: 1px solid rgba(250, 246, 237, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      flex-wrap: wrap;
      gap: 16px;
    }

    /* ===== FLOATING BUTTONS ===== */
    .whatsapp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: white;
      z-index: 90;
      box-shadow: 0 8px 30px -5px rgba(37, 211, 102, 0.6);
      transition: transform 0.25s;
    }
    .whatsapp-float:hover { transform: scale(1.08); }
    .whatsapp-float::before {
      content: '';
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      border: 2px solid #25D366;
      opacity: 0.6;
      animation: pulse 2s ease-out infinite;
    }
    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(1.35); opacity: 0; }
    }
    .wa-tooltip {
      position: absolute;
      right: 70px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--ink);
      color: var(--bg-cream);
      padding: 8px 14px;
      border-radius: 8px;
      font-size: 13px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s;
    }
    .whatsapp-float:hover .wa-tooltip { opacity: 1; }

    .chat-btn {
      position: fixed;
      bottom: 96px;
      right: 24px;
      width: 58px;
      height: 58px;
      background: var(--moss);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--bg-cream);
      cursor: pointer;
      z-index: 90;
      box-shadow: 0 8px 30px -5px rgba(10, 58, 83, 0.5);
      transition: transform 0.25s;
      border: none;
    }
    .chat-btn:hover { transform: scale(1.08); }
    .chat-badge {
      position: absolute;
      top: -2px;
      right: -2px;
      width: 18px;
      height: 18px;
      background: var(--ochre);
      border-radius: 50%;
      color: white;
      font-size: 11px;
      font-weight: 600;
      display: grid;
      place-items: center;
      border: 2px solid var(--bg);
    }
    .chat-window {
      position: fixed;
      bottom: 168px;
      right: 24px;
      width: 360px;
      max-width: calc(100vw - 48px);
      max-height: 540px;
      background: var(--bg-cream);
      border-radius: 18px;
      box-shadow: 0 20px 60px -10px rgba(29, 36, 25, 0.4);
      display: none;
      flex-direction: column;
      z-index: 91;
      overflow: hidden;
    }
    .chat-window.open { display: flex; }
    .chat-header {
      background: var(--moss);
      color: var(--bg-cream);
      padding: 18px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .chat-header-info {
      display: flex;
      gap: 12px;
      align-items: center;
    }
    .chat-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--ochre);
      display: grid;
      place-items: center;
      font-family: var(--display);
      font-style: italic;
      font-weight: 500;
      font-size: 16px;
    }
    .chat-header-text h6 {
      font-family: var(--display);
      font-size: 16px;
      font-weight: 500;
    }
    .chat-status {
      font-size: 11px;
      opacity: 0.85;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .chat-status::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #4ade80;
    }
    .chat-close {
      background: none;
      border: none;
      color: var(--bg-cream);
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
      padding: 4px 8px;
    }
    .chat-messages {
      flex: 1;
      overflow-y: auto;
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .msg {
      padding: 10px 14px;
      border-radius: 14px;
      font-size: 14px;
      line-height: 1.45;
      max-width: 80%;
    }
    .msg.bot {
      background: var(--bg-warm);
      color: var(--ink);
      align-self: flex-start;
      border-bottom-left-radius: 4px;
    }
    .msg.user {
      background: var(--moss);
      color: var(--bg-cream);
      align-self: flex-end;
      border-bottom-right-radius: 4px;
    }
    .chat-chips {
      padding: 0 20px 12px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .chip {
      background: transparent;
      border: 1px solid var(--moss);
      color: var(--moss);
      padding: 8px 14px;
      border-radius: 100px;
      cursor: pointer;
      font-family: inherit;
      font-size: 12px;
      font-weight: 500;
      transition: all 0.2s;
    }
    .chip:hover {
      background: var(--moss);
      color: var(--bg-cream);
    }
    .chat-input-row {
      padding: 12px 16px;
      display: flex;
      gap: 8px;
      border-top: 1px solid var(--line);
    }
    .chat-input-row input {
      flex: 1;
      border: 1px solid var(--line);
      border-radius: 100px;
      padding: 10px 16px;
      font-family: inherit;
      font-size: 13px;
      background: var(--bg);
    }
    .chat-input-row input:focus { outline: none; border-color: var(--moss); }
    .chat-send {
      background: var(--moss);
      color: var(--bg-cream);
      border: none;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      cursor: pointer;
      display: grid;
      place-items: center;
    }
    .chat-wa {
      display: block;
      background: #25D366;
      color: white;
      padding: 12px;
      text-align: center;
      font-size: 13px;
      font-weight: 500;
    }

    @media (max-width: 1080px) {
      .nav-links { display: none; }
      .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-cream); flex-direction: column; padding: 24px; gap: 18px; border-bottom: 1px solid var(--line); }
      .hamburger { display: block; }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 968px) {
      .hero-grid { grid-template-columns: 1fr; gap: 60px; }
      .hero-visual { max-width: 420px; justify-self: center; }
      .story-grid, .awards-grid, .contact-grid, .visit-inner { grid-template-columns: 1fr; }
      .cheese-grid, .recipe-grid { grid-template-columns: repeat(2, 1fr); }
      .steps { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .flight-item, .flight-item.reverse { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
      .flight-visual { max-width: 420px; margin: 0 auto; width: 100%; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-cream);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--line);
      }
      .hamburger { display: block; }
      .hero-badge { width: 110px; height: 110px; right: 10px; font-size: 12px; padding: 14px; }
      .hero-img-accent { width: 130px; height: 130px; left: -10px; bottom: -20px; }
      .visit-img { min-height: 260px; }
      .award-item { grid-template-columns: auto 1fr; }
      .award-badge { grid-row: 1 / -1; grid-column: 1; }
      .award-year { grid-column: 2; }
      .award-text { grid-column: 2; }
    }
    @media (max-width: 520px) {
      .cheese-grid, .recipe-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-ctas { flex-direction: column; align-items: stretch; }
      .hero-ctas .btn { justify-content: center; }
      .hero-meta { gap: 20px; }
      .chat-window { right: 12px; left: 12px; width: auto; bottom: 160px; }
      .tasting-notes { grid-template-columns: 1fr; }
      .tasting-note:nth-child(odd) { padding-right: 0; border-right: none; }
      .tasting-note:nth-child(even) { padding-left: 0; }
      .flight-number { width: 64px; height: 64px; font-size: 26px; top: -10px; left: -10px; }
    }

    /* ===== CRAFT PROCESS STRIP ===== */
    .craft-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 72px;
      position: relative;
      z-index: 1;
    }
    .craft-shot {
      position: relative;
      aspect-ratio: 4/5;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 24px 50px -24px rgba(0, 0, 0, 0.6);
    }
    .craft-shot img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .craft-shot:hover img { transform: scale(1.06); }
    .craft-shot::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15, 27, 14, 0.8), transparent 55%);
    }
    .craft-shot span {
      position: absolute;
      bottom: 16px;
      left: 18px;
      z-index: 2;
      font-family: var(--display);
      font-style: italic;
      font-size: 19px;
      color: var(--bg-cream);
    }
    .craft-shot span small {
      display: block;
      font-family: var(--body);
      font-style: normal;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ochre);
      font-weight: 600;
      margin-bottom: 2px;
    }

    /* ===== GALLERY ===== */
    .gallery { background: var(--bg-warm); }
    .gallery-head {
      max-width: 720px;
      margin-bottom: 56px;
    }
    .gallery-masonry {
      columns: 3;
      column-gap: 20px;
    }
    .gallery-item {
      position: relative;
      break-inside: avoid;
      margin-bottom: 20px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 20px 44px -26px rgba(26, 42, 50, 0.45);
      cursor: pointer;
    }
    .gallery-item img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.8s cubic-bezier(.22,1,.36,1);
    }
    .gallery-item:hover img { transform: scale(1.05); }
    .gallery-item figcaption {
      position: absolute;
      inset: auto 0 0 0;
      padding: 40px 18px 16px;
      background: linear-gradient(to top, rgba(15, 27, 14, 0.82), transparent);
      color: var(--bg-cream);
      font-family: var(--display);
      font-style: italic;
      font-size: 16px;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }
    @media (max-width: 900px) { .gallery-masonry { columns: 2; } .craft-strip { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 560px) { .gallery-masonry { columns: 1; } }

    /* ============ SUBPAGE STYLES ============ */
    .page-wrap { padding-top: 96px; }
    .breadcrumb { font-size: 13px; color: var(--ink-soft); margin-bottom: 28px; letter-spacing: 0.02em; }
    .breadcrumb a { color: var(--moss); }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb span { color: var(--stone); margin: 0 8px; }

    /* product hero */
    .prod {
      padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 110px);
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
    }
    .prod-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: clamp(40px, 6vw, 90px);
      align-items: center;
    }
    .prod-visual { position: relative; aspect-ratio: 1; }
    .prod-visual .pv-circle {
      position: absolute; inset: 0; border-radius: 50%; overflow: hidden;
      box-shadow: 0 40px 90px -35px rgba(26,42,50,0.45);
    }
    .prod-visual .pv-circle img { width: 100%; height: 100%; object-fit: cover; }
    .prod-visual .pv-bg {
      position: absolute; inset: 18px; border-radius: 50%; background: var(--bg-sky);
      z-index: -1; transform: translate(22px, 22px);
    }
    .prod-eyebrow {
      font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--ochre); font-weight: 600; margin-bottom: 16px;
    }
    .prod h1 {
      font-family: var(--display); font-weight: 400; font-size: clamp(40px, 5.5vw, 72px);
      line-height: 1; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 24px;
    }
    .prod h1 em { font-style: italic; color: var(--moss); }
    .prod-lead { font-size: 18px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 18px; max-width: 56ch; }
    .prod-lead.small { font-size: 16px; }
    .prod-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 8px; }

    /* spec strip */
    .specs { background: var(--bg-cream); }
    .spec-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
      border-top: 1px solid var(--line);
    }
    .spec {
      padding: 28px 24px 28px 0; border-bottom: 1px solid var(--line);
      border-right: 1px solid var(--line);
    }
    .spec:nth-child(4n) { border-right: none; }
    .spec .s-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: 8px; }
    .spec .s-value { font-family: var(--display); font-size: 22px; color: var(--ink); line-height: 1.2; }
    @media (max-width: 760px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } .spec:nth-child(4n){border-right:1px solid var(--line);} .spec:nth-child(2n){border-right:none;} }

    /* generic content prose */
    .content { background: var(--bg-cream); }
    .content.warm { background: var(--bg-warm); }
    .prose { max-width: 760px; }
    .prose.center { margin: 0 auto; }
    .prose p { font-size: 17px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 22px; }
    .prose p.large { font-family: var(--display); font-size: clamp(20px,1.8vw,26px); font-style: italic; color: var(--ink); line-height: 1.5; margin-bottom: 28px; }
    .prose h3 { font-family: var(--display); font-weight: 500; font-size: clamp(24px,2.4vw,32px); color: var(--ink); margin: 40px 0 14px; letter-spacing: -0.01em; }
    .prose h3:first-child { margin-top: 0; }
    .prose ul.clean { list-style: none; display: grid; gap: 12px; margin: 8px 0 26px; }
    .prose ul.clean li { padding-left: 26px; position: relative; font-size: 16px; color: var(--ink-soft); line-height: 1.6; }
    .prose ul.clean li::before { content: ''; position: absolute; left: 0; top: 11px; width: 9px; height: 9px; border-radius: 50%; background: var(--ochre); }
    .prose a.inline { color: var(--moss); border-bottom: 1px solid var(--moss); }

    .page-head { max-width: 820px; margin-bottom: 8px; }
    .page-head .prod-eyebrow { color: var(--moss); }

    .feature-img {
      width: 100%; border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: 0 30px 70px -28px rgba(26,42,50,0.45); margin: 8px 0 0;
    }
    .feature-img img { width: 100%; height: auto; display: block; }

    .info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 12px; }
    .info-card { background: var(--bg-cream); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--line); }
    .info-card h4 { font-family: var(--display); font-size: 20px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
    .info-card p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
    @media (max-width: 820px){ .info-cards{ grid-template-columns:1fr; } .prod-grid{ grid-template-columns:1fr; } }

    .related { background: var(--bg); }
    .related h2 { font-family: var(--display); font-weight: 400; font-size: clamp(28px,3.4vw,42px); letter-spacing: -0.02em; color: var(--ink); margin-bottom: 36px; }
    .related h2 em { font-style: italic; color: var(--moss); }

    /* ===== SUSTAINABILITY ===== */
    .stat-band { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 38px 0; margin: 8px 0; }
    .stat-band .stat .n { font-family: var(--display); font-size: clamp(30px, 3.4vw, 46px); color: var(--moss); line-height: 1; margin-bottom: 8px; font-weight: 500; }
    .stat-band .stat .l { font-size: 13px; color: var(--ink-soft); line-height: 1.45; }
    @media (max-width: 760px) { .stat-band { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; } }
    .video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
    .video-grid figure { margin: 0; }
    .video-embed { position: relative; padding-top: 56.25%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 44px -26px rgba(26,42,50,0.45); background: var(--bg-sky); }
    .video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
    .video-grid figcaption { margin-top: 12px; font-family: var(--display); font-size: 18px; color: var(--ink); }
    @media (max-width: 760px) { .video-grid { grid-template-columns: 1fr; } }
    .scheme-card a.inline { display: inline-block; margin-top: 10px; }

    /* ===== TEAM ===== */
    .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 8px; }
    .team-member { background: var(--bg-cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }
    .team-member .role { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--moss); font-weight: 600; margin-bottom: 6px; }
    .team-member h3 { font-family: var(--display); font-weight: 500; font-size: 24px; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
    .team-member p { font-size: 15px; color: var(--ink-soft); line-height: 1.62; }
    @media (max-width: 760px) { .team-grid { grid-template-columns: 1fr; } }

    /* ===== NUTRITION TABLE ===== */
    .nutri-wrap { overflow-x: auto; margin-top: 12px; border-radius: var(--radius-lg); border: 1px solid var(--line); }
    .nutri-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 660px; }
    .nutri-table th, .nutri-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); }
    .nutri-table tr:last-child td, .nutri-table tr:last-child th { border-bottom: none; }
    .nutri-table thead th { font-family: var(--body); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; background: var(--bg-warm); }
    .nutri-table tbody th { font-family: var(--display); font-weight: 500; font-size: 16px; color: var(--ink); }
    .nutri-table tbody tr:hover { background: var(--bg-warm); }
    .faq .faq-inner { margin-top: 8px; }
