    /* ===================================================
       DESIGN TOKENS
    =================================================== */
    :root {
      --grove:      #2C3B1F;
      --earth:      #5C3D1E;
      --harvest:    #C8960C;
      --stone:      #8C7B5E;
      --parchment:  #F2ECD8;
      --ink:        #1A1710;
      --mist:       #E8DFC8;
      --line:       rgba(140,123,94,.2);
      --sep:        rgba(140,123,94,.1);
      --warm-tint:  rgba(180,110,20,.07);

      --serif:  'Playfair Display', Georgia, serif;
      --sans:   'Lato', sans-serif;
      --label:  'DM Sans', sans-serif;

      --max:    1320px;
    }

    /* ===================================================
       RESET & BASE
    =================================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--sans);
      font-weight: 300;
      color: var(--ink);
      background: var(--parchment);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* Grain overlay — SVG fractalNoise, same as Carbo Namibia */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.032;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }

    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* ===================================================
       IMAGE COLOUR GRADING SYSTEM
       Warm, amber-pulled grade consistent across all sections.
       Reduces the 2007-digital-camera coldness.
    =================================================== */

    /* Landscape / estate shots */
    .grade-land {
      filter:
        sepia(0.18)
        saturate(1.28)
        brightness(0.87)
        contrast(1.12)
        hue-rotate(-8deg);
    }

    /* Olive close-ups — enhance the natural warmth and richness */
    .grade-olive {
      filter:
        saturate(1.38)
        brightness(0.91)
        contrast(1.18)
        hue-rotate(-10deg);
    }

    /* People / harvest shots — filmic warmth */
    .grade-people {
      filter:
        sepia(0.10)
        saturate(1.18)
        brightness(0.90)
        contrast(1.10)
        hue-rotate(-5deg);
    }

    /* Warm amber overlay applied via ::after on .img-wrap containers */
    .img-wrap {
      position: relative;
      overflow: hidden;
      display: block;
    }

    .img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(200,140,30,.05) 0%,
        rgba(140,80,20,.10) 100%
      );
      mix-blend-mode: multiply;
      pointer-events: none;
    }

    /* ===================================================
       TYPOGRAPHY
    =================================================== */
    h1, h2, h3, h4 {
      font-family: var(--serif);
      font-weight: 600;
      line-height: 1.12;
      letter-spacing: -0.02em;
    }

    .eyebrow {
      font-family: var(--label);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      display: block;
      margin-bottom: 0.85rem;
    }

    p {
      font-size: clamp(0.95rem, 1.4vw, 1.05rem);
      line-height: 1.8;
      font-weight: 300;
    }

    /* ===================================================
       SCROLL REVEAL
    =================================================== */
    .r {
      opacity: 0;
      transform: translateY(24px);
      transition:
        opacity 0.8s cubic-bezier(.22,1,.36,1),
        transform 0.8s cubic-bezier(.22,1,.36,1);
    }
    .r.v { opacity: 1; transform: none; }
    .d1 { transition-delay: 0.10s; }
    .d2 { transition-delay: 0.20s; }
    .d3 { transition-delay: 0.32s; }
    .d4 { transition-delay: 0.44s; }
    .d5 { transition-delay: 0.56s; }

    /* ===================================================
       LAYOUT
    =================================================== */
    .wrap {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 clamp(1.25rem, 4.5vw, 3.5rem);
    }

    .section { padding: clamp(5rem, 9vw, 9rem) 0; }

    /* ===================================================
       NAV
    =================================================== */
    #nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 100;
      padding: 1.35rem clamp(1.25rem, 4.5vw, 3.5rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.45s ease, box-shadow 0.45s ease;
    }

    #nav.scrolled {
      background: rgba(242,236,216,0.95);
      box-shadow: 0 1px 0 var(--line);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    /* On dark hero: invert dark green to near-parchment */
    .nav-logo-img {
      height: 48px;
      width: auto;
      display: block;
      overflow: visible;
      /* Dark-to-light: recolour dark green logo to warm parchment on dark hero bg */
      filter:
        brightness(0) saturate(100%)
        invert(1)
        sepia(1)
        saturate(0.5)
        brightness(1.05);
      transition: filter 0.45s;
    }

    /* Scrolled (light nav): restore natural dark green */
    #nav.scrolled .nav-logo-img {
      filter: none;
    }

    /* ── BOTANICAL DECORATION ── */
    .botanical-deco {
      position: absolute;
      pointer-events: none;
      user-select: none;
      overflow: hidden;
    }

    /* Hero botanical: top-left, echoing label artwork */
    .hero-botanical-l {
      top: -40px;
      left: -60px;
      width: clamp(280px, 35vw, 520px);
      opacity: 0.28;
      mix-blend-mode: screen;
      /* Warm the olive green toward golden */
      filter: sepia(0.3) saturate(0.9) brightness(1.1);
      z-index: 2;
    }

    /* Hero botanical right: mirror, top-right */
    .hero-botanical-r {
      top: -30px;
      right: -80px;
      width: clamp(260px, 32vw, 480px);
      opacity: 0.22;
      mix-blend-mode: screen;
      filter: sepia(0.3) saturate(0.9) brightness(1.1) scaleX(-1);
      transform: scaleX(-1);
      z-index: 2;
    }

    /* Story section botanical accent */
    .story-botanical {
      bottom: -20px;
      right: -40px;
      width: clamp(200px, 28vw, 380px);
      opacity: 0.07;
      filter: sepia(0.5) saturate(0.8);
    }

    /* Group section botanical watermark */
    .group-botanical {
      top: -30px;
      right: -60px;
      width: clamp(240px, 30vw, 420px);
      opacity: 0.08;
      filter: sepia(0.3) saturate(0.8) brightness(1.5);
    }

    .nav-links {
      display: flex;
      gap: 2.25rem;
      align-items: center;
    }

    .nav-links a {
      font-family: var(--label);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: rgba(242,236,216,.75);
      transition: color 0.3s;
    }

    .nav-links a:hover { color: var(--parchment); }
    #nav.scrolled .nav-links a { color: var(--stone); }
    #nav.scrolled .nav-links a:hover { color: var(--grove); }

    .nav-buy {
      padding: 0.5rem 1.3rem;
      border: 1px solid rgba(242,236,216,.35);
      color: var(--parchment) !important;
      transition: background 0.3s, border-color 0.3s, color 0.3s !important;
    }

    .nav-buy:hover {
      background: var(--parchment) !important;
      color: var(--grove) !important;
      border-color: transparent !important;
    }

    #nav.scrolled .nav-buy {
      border-color: var(--line) !important;
      color: var(--grove) !important;
    }

    #nav.scrolled .nav-buy:hover {
      background: var(--grove) !important;
      color: var(--parchment) !important;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--parchment);
      transition: background 0.4s;
    }
    #nav.scrolled .nav-toggle span { background: var(--ink); }

    @media (max-width: 800px) {
      .nav-links { display: none; }
      .nav-toggle { display: flex; }
    }

    /* ===================================================
       HERO
    =================================================== */
    #hero {
      height: 100svh;
      min-height: 600px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    /* Image: olive-oil-19.jpg — mountain valley, Machairas range */
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      /* Darken + warm grade for hero drama */
      filter: sepia(0.22) saturate(1.15) brightness(0.72) contrast(1.15) hue-rotate(-10deg);
      transform: scale(1.04);
      transition: transform 8s ease;
    }

    .hero-bg img.loaded { transform: scale(1); }

    /* Dual gradient: atmospheric depth + warm-to-dark base */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          to top,
          rgba(26,23,16,.92) 0%,
          rgba(26,23,16,.55) 35%,
          rgba(44,59,31,.20) 65%,
          transparent 100%
        ),
        linear-gradient(
          80deg,
          rgba(44,59,31,.45) 0%,
          transparent 60%
        );
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 0 clamp(1.25rem, 4.5vw, 3.5rem) clamp(4.5rem, 8vw, 7rem);
      max-width: 860px;
    }

    .hero-eyebrow {
      font-family: var(--label);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--harvest);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--harvest);
      flex-shrink: 0;
    }

    .hero-name {
      font-family: var(--serif);
      font-size: clamp(5rem, 13vw, 10rem);
      font-weight: 500;
      color: var(--parchment);
      line-height: 0.95;
      letter-spacing: 0.03em;
      margin-bottom: 1.5rem;
    }

    .hero-name em {
      font-style: italic;
      color: var(--harvest);
    }

    .hero-sub {
      font-size: clamp(0.9rem, 1.8vw, 1.05rem);
      font-weight: 300;
      color: rgba(242,236,216,.65);
      letter-spacing: 0.05em;
      margin-bottom: 2.75rem;
      max-width: 380px;
    }

    .hero-ctas {
      display: flex;
      gap: 0.85rem;
      flex-wrap: wrap;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 2rem;
      border: 1px solid rgba(242,236,216,.3);
      color: var(--parchment);
      font-family: var(--label);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.3s, border-color 0.3s;
    }

    .btn-ghost:hover {
      background: rgba(242,236,216,.08);
      border-color: rgba(242,236,216,.55);
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.9rem 2rem;
      background: var(--harvest);
      color: var(--ink);
      font-family: var(--label);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
    }

    .btn-primary:hover {
      background: #d4a00e;
      transform: translateY(-1px);
    }

    /* Vertical scroll cue */
    .hero-scroll {
      position: absolute;
      right: clamp(1.25rem, 4.5vw, 3.5rem);
      bottom: 2.5rem;
      writing-mode: vertical-rl;
      font-family: var(--label);
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(242,236,216,.35);
      display: flex;
      align-items: center;
      gap: 0.6rem;
      z-index: 1;
    }

    .hero-scroll::after {
      content: '';
      display: block;
      width: 1px;
      height: 52px;
      background: linear-gradient(to bottom, rgba(242,236,216,.35), transparent);
      animation: scrollDrop 2.2s ease-in-out infinite;
    }

    @keyframes scrollDrop {
      0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
      60%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
      100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
    }

    /* ===================================================
       STORY — Maritsa
    =================================================== */
    #story { background: var(--parchment); }

    .story-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: clamp(3.5rem, 6vw, 7rem);
      align-items: start;
    }

    .story-image-col {
      position: sticky;
      top: 6rem;
    }

    /* Image: olive-oil-17.jpg — Chris and Maritsa at the market stall */
    .story-portrait {
      aspect-ratio: 4/5;
      overflow: hidden;
    }

    .story-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    /* Caption beneath portrait */
    .story-caption {
      margin-top: 0.85rem;
      font-family: var(--label);
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--stone);
      padding-left: 0.1rem;
    }

    .story-content { padding-top: 0.5rem; }

    .story-content .eyebrow { color: var(--stone); }

    .story-content h2 {
      font-size: clamp(2.25rem, 4vw, 3.5rem);
      color: var(--grove);
      margin-bottom: 2rem;
    }

    .story-content p {
      color: #3a3228;
      margin-bottom: 1.35rem;
    }

    .story-pull {
      margin: 2.5rem 0;
      padding: 2rem 0 2rem 1.75rem;
      border-left: 2px solid var(--harvest);
    }

    .story-pull p {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(1.15rem, 2vw, 1.4rem);
      color: var(--grove);
      font-weight: 400;
      line-height: 1.55;
    }

    @media (max-width: 780px) {
      .story-grid { grid-template-columns: 1fr; }
      .story-image-col { position: static; }
      .story-portrait { aspect-ratio: 16/10; }
    }

    /* ===================================================
       HARVEST STRIP — full-bleed cinematic bar
    =================================================== */
    #harvest-strip {
      height: clamp(280px, 55vw, 620px);
      position: relative;
      overflow: hidden;
    }

    .harvest-strip-bg {
      position: absolute;
      inset: 0;
    }

    /* Image: olive-oil-13.jpg — THE mixed olive close-up top-down (the money shot)
       NOTE for Jason: add olive-oil-13.jpg to root folder for this to render */
    .harvest-strip-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      filter: saturate(1.42) brightness(0.88) contrast(1.22) hue-rotate(-12deg);
    }

    .harvest-strip-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(44,59,31,.85) 0%,
        rgba(44,59,31,.45) 40%,
        rgba(26,23,16,.15) 100%
      );
      display: flex;
      align-items: center;
    }

    .harvest-strip-text {
      padding: 0 clamp(1.25rem, 4.5vw, 3.5rem);
      max-width: 620px;
    }

    .harvest-strip-text .eyebrow { color: var(--harvest); }

    .harvest-strip-text p {
      font-family: var(--serif);
      font-size: clamp(1.4rem, 3.5vw, 2.4rem);
      font-weight: 400;
      font-style: italic;
      color: var(--parchment);
      line-height: 1.4;
    }

    .harvest-strip-text p em {
      color: var(--harvest);
      font-style: normal;
    }

    /* ===================================================
       ESTATE
    =================================================== */
    #estate { background: var(--grove); }

    .estate-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 6vw, 6rem);
      align-items: end;
      margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
    }

    .estate-intro-left .eyebrow { color: var(--harvest); opacity: 1; }

    .estate-intro-left h2 {
      font-size: clamp(2rem, 4vw, 3.25rem);
      color: var(--parchment);
    }

    .estate-intro-right p {
      color: rgba(242,236,216,.62);
    }

    /* Stats row */
    .estate-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid rgba(242,236,216,.12);
      margin-bottom: clamp(3rem, 6vw, 5rem);
    }

    .estate-stat {
      padding: 1.75rem 1.25rem 1.75rem 0;
      border-right: 1px solid rgba(242,236,216,.08);
    }
    .estate-stat:first-child { padding-left: 0; }
    .estate-stat:last-child { border-right: none; }

    .stat-n {
      font-family: var(--serif);
      font-size: clamp(2.75rem, 5.5vw, 4.5rem);
      font-weight: 400;
      color: var(--harvest);
      line-height: 1;
      display: block;
      margin-bottom: 0.3rem;
    }

    .stat-n sup {
      font-size: 0.45em;
      vertical-align: super;
      color: rgba(200,150,12,.55);
    }

    .stat-l {
      font-family: var(--label);
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(242,236,216,.42);
    }

    /* Photo grid: asymmetric editorial */
    .estate-photos {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto auto;
      gap: 3px;
    }

    .ep {
      overflow: hidden;
      position: relative;
    }

    .ep img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.7s cubic-bezier(.22,1,.36,1);
    }

    .ep:hover img { transform: scale(1.03); }

    /* Image assignments for estate grid */
    /* v6.4: balanced 3x2, six equal cells, no orphan. Row 1 = land, Row 2 = people incl. Chris. */
    .ep img { height: 300px; object-position: center; }
    .ep-1 img { object-position: center; }
    .ep-2 img { object-position: center; }
    .ep-3 img { object-position: center 30%; }
    .ep-4 img { object-position: center 25%; }
    .ep-5 img { object-position: center; }
    .ep-6 img { object-position: center 70%; }

    /* Warm vignette on each cell */
    .ep::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(200,140,30,.04) 0%, rgba(80,40,10,.12) 100%);
      pointer-events: none;
    }

    @media (max-width: 880px) {
      .estate-intro { grid-template-columns: 1fr; }
      .estate-stats { grid-template-columns: repeat(2, 1fr); }
      .estate-stat:nth-child(2) { border-right: none; }
      .estate-stat:nth-child(3) { padding-left: 0; border-top: 1px solid rgba(242,236,216,.08); padding-top: 1.75rem; }
      .estate-stat:nth-child(4) { border-top: 1px solid rgba(242,236,216,.08); padding-top: 1.75rem; }
      .estate-photos { grid-template-columns: 1fr 1fr; }
      .ep img { height: 260px; }
    }

    @media (max-width: 560px) {
      .estate-photos { grid-template-columns: 1fr; }
      .ep img { height: 240px; }
    }

    /* ===================================================
       THE OIL
    =================================================== */
    #the-oil { background: var(--mist); }

    /* Press review */
    .oil-review {
      max-width: 700px;
      margin: 0 auto clamp(4rem, 7vw, 6.5rem);
      text-align: center;
      position: relative;
    }

    .oil-review::before {
      content: '\201C';
      font-family: var(--serif);
      font-size: 9rem;
      color: var(--harvest);
      opacity: 0.16;
      position: absolute;
      top: -3.5rem;
      left: 50%;
      transform: translateX(-50%);
      line-height: 1;
      pointer-events: none;
    }

    .oil-review blockquote {
      font-family: var(--serif);
      font-size: clamp(1.1rem, 2.2vw, 1.45rem);
      font-style: italic;
      font-weight: 400;
      color: var(--grove);
      line-height: 1.65;
      margin-bottom: 1rem;
      position: relative;
    }

    .oil-review cite {
      font-family: var(--label);
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--stone);
      font-style: normal;
    }

    /* Process layout */
    .oil-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3.5rem, 6vw, 7rem);
      align-items: start;
      margin-bottom: clamp(4rem, 7vw, 6.5rem);
    }

    .oil-steps-col .eyebrow { color: var(--stone); }

    .oil-steps-col h2 {
      font-size: clamp(1.75rem, 3.2vw, 2.5rem);
      color: var(--grove);
      margin-bottom: 2.5rem;
    }

    .oil-step {
      display: grid;
      grid-template-columns: 2.5rem 1fr;
      gap: 1.25rem;
      margin-bottom: 2.5rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid var(--line);
    }

    .oil-step:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .step-n {
      font-family: var(--serif);
      font-size: 2.25rem;
      font-weight: 400;
      color: var(--harvest);
      opacity: 0.45;
      line-height: 1;
      padding-top: 0.2rem;
    }

    .step-body h4 {
      font-family: var(--serif);
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--grove);
      margin-bottom: 0.45rem;
    }

    .step-body p {
      font-size: 0.92rem;
      color: #4a3f35;
      line-height: 1.7;
    }

    /* Image column for oil section */
    .oil-images-col {
      display: flex;
      flex-direction: column;
      gap: 3px;
      position: sticky;
      top: 6rem;
    }

    /* Image: olive-oil-06.jpg — mixed olives in crates (shows the harvest ratio) */
    .oil-img-main {
      overflow: hidden;
    }

    .oil-img-main img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      object-position: center 40%;
    }

    /* Image: olive-oil-05.jpg — orange harvest rake, shows the technique */
    .oil-img-secondary {
      overflow: hidden;
    }

    .oil-img-secondary img {
      width: 100%;
      height: clamp(260px, 34vh, 400px);
      object-fit: cover;
      object-position: center 60%;
    }

    /* Warm overlays on oil images */
    .oil-img-main,
    .oil-img-secondary {
      position: relative;
    }

    .oil-img-main::after,
    .oil-img-secondary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(200,140,30,.04) 0%, rgba(80,40,10,.11) 100%);
      pointer-events: none;
    }

    /* Polyphenol hero claim */
    .oil-claim {
      background: var(--grove);
      padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4.5vw, 4rem);
      position: relative;
      overflow: hidden;
    }

    .oil-claim::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 440px;
      height: 440px;
      background: radial-gradient(circle at center, rgba(200,150,12,.10) 0%, transparent 65%);
      pointer-events: none;
    }

    .oil-claim-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: clamp(3rem, 5vw, 6rem);
      align-items: center;
    }

    .oil-claim-copy .eyebrow { color: var(--harvest); opacity: 1; }

    .oil-claim-copy h3 {
      font-size: clamp(1.75rem, 3.5vw, 2.75rem);
      color: var(--parchment);
      margin-bottom: 1.25rem;
    }

    .oil-claim-copy h3 em {
      font-style: italic;
      color: var(--harvest);
    }

    .oil-claim-copy p {
      color: rgba(242,236,216,.65);
      font-size: 0.93rem;
    }

    .oil-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: rgba(242,236,216,.08);
    }

    .oil-stat-cell {
      background: rgba(44,59,31,.7);
      padding: 1.75rem 1.5rem;
      text-align: center;
    }

    .osc-v {
      font-family: var(--serif);
      font-size: clamp(2rem, 3.5vw, 2.75rem);
      font-weight: 400;
      color: var(--harvest);
      display: block;
      margin-bottom: 0.25rem;
      line-height: 1;
    }

    .osc-l {
      font-family: var(--label);
      font-size: 0.62rem;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: rgba(242,236,216,.4);
      display: block;
    }

    @media (max-width: 780px) {
      .oil-layout { grid-template-columns: 1fr; }
      .oil-images-col { position: static; flex-direction: row; }
      .oil-img-main { flex: 1; }
      .oil-img-secondary { flex: 1; }
      .oil-img-main img,
      .oil-img-secondary img { height: 240px; }
      .oil-claim-grid { grid-template-columns: 1fr; }
    }

    /* ===================================================
       HARVEST MOMENT STRIP — 3-image cinematic row
    =================================================== */
    #harvest-moments {
      background: var(--ink);
    }

    .harvest-moments-inner {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2px;
    }

    .hm-item {
      position: relative;
      overflow: hidden;
    }

    .hm-item img {
      width: 100%;
      height: clamp(220px, 28vw, 380px);
      object-fit: cover;
      object-position: center;
      transition: transform 0.8s cubic-bezier(.22,1,.36,1);
      display: block;
    }

    .hm-item:hover img { transform: scale(1.04); }

    .hm-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(26,23,16,.7) 0%,
        rgba(26,23,16,.1) 50%,
        transparent 100%
      );
      pointer-events: none;
    }

    .hm-caption {
      position: absolute;
      bottom: 1.25rem;
      left: 1.25rem;
      right: 1.25rem;
      z-index: 1;
      font-family: var(--label);
      font-size: 0.6rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(242,236,216,.55);
    }

    @media (max-width: 640px) {
      .harvest-moments-inner { grid-template-columns: 1fr; }
      .hm-item img { height: 240px; }
    }

    /* ===================================================
       HEALTH
    =================================================== */
    #health { background: var(--parchment); }

    .health-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3rem, 6vw, 6rem);
      align-items: end;
      margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
    }

    .health-top .eyebrow { color: var(--stone); }

    .health-top h2 {
      font-size: clamp(2rem, 4vw, 3.25rem);
      color: var(--grove);
    }

    .health-top p { color: #4a3f35; }

    .health-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--line);
      margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
    }

    .hc {
      background: var(--parchment);
      padding: 2rem 1.5rem;
    }

    .hc-icon {
      width: 32px;
      height: 32px;
      color: var(--harvest);
      margin-bottom: 1.1rem;
      flex-shrink: 0;
    }

    .hc h4 {
      font-family: var(--serif);
      font-size: 0.98rem;
      color: var(--grove);
      margin-bottom: 0.5rem;
      font-weight: 600;
    }

    .hc p {
      font-size: 0.86rem;
      color: #4a3f35;
      line-height: 1.65;
      margin-bottom: 0.6rem;
    }

    .hc-cite {
      font-family: var(--label);
      font-size: 0.58rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--stone);
      opacity: 0.65;
      display: block;
    }

    /* Polyphenol feature bar */
    .poly-bar {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: clamp(2rem, 4vw, 4rem);
      align-items: center;
      background: var(--grove);
      padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4.5vw, 4rem);
    }

    .poly-num {
      font-family: var(--serif);
      font-size: clamp(4rem, 8vw, 6.5rem);
      font-weight: 400;
      color: var(--harvest);
      line-height: 1;
      white-space: nowrap;
    }

    .poly-num span {
      font-size: 0.38em;
      vertical-align: top;
      margin-top: 0.55em;
      display: inline-block;
      color: rgba(200,150,12,.55);
    }

    .poly-copy h4 {
      font-family: var(--serif);
      font-size: clamp(1.1rem, 2vw, 1.5rem);
      color: var(--parchment);
      margin-bottom: 0.6rem;
    }

    .poly-copy p {
      font-size: 0.9rem;
      color: rgba(242,236,216,.62);
    }

    @media (max-width: 880px) {
      .health-top { grid-template-columns: 1fr; }
      .health-cards { grid-template-columns: repeat(2, 1fr); }
      .poly-bar { grid-template-columns: 1fr; gap: 1.25rem; }
    }

    @media (max-width: 580px) {
      .health-cards { grid-template-columns: 1fr 1fr; }
    }

    /* ===================================================
       GROUP
    =================================================== */
    #group {
      background: var(--earth);
      overflow: hidden;
    }

    .group-layout {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: clamp(3.5rem, 6vw, 7rem);
      align-items: center;
    }

    .group-since {
      font-family: var(--serif);
      font-size: clamp(5rem, 10vw, 9rem);
      font-weight: 400;
      color: rgba(242,236,216,.08);
      line-height: 1;
      font-style: italic;
      user-select: none;
    }

    .group-text .eyebrow { color: var(--harvest); opacity: 1; }

    .group-text h2 {
      font-size: clamp(1.75rem, 3.2vw, 2.5rem);
      color: var(--parchment);
      margin-bottom: 1.25rem;
    }

    .group-text p {
      color: rgba(242,236,216,.65);
      margin-bottom: 1.1rem;
    }

    .group-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--label);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--harvest);
      margin-top: 0.75rem;
      transition: gap 0.3s;
    }

    .group-link:hover { gap: 0.9rem; }

    @media (max-width: 720px) {
      .group-layout { grid-template-columns: 1fr; }
      .group-since { display: none; }
    }

    /* ===================================================
       EMAIL CAPTURE
    =================================================== */
    #email-capture {
      background: var(--harvest);
      padding: clamp(3.5rem, 6vw, 5.5rem) 0;
    }

    .ec-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 4vw, 5rem);
      align-items: center;
    }

    .ec-text h3 {
      font-family: var(--serif);
      font-size: clamp(1.5rem, 3vw, 2.25rem);
      color: var(--ink);
      margin-bottom: 0.4rem;
    }

    .ec-text p {
      color: rgba(26,23,16,.6);
      font-size: 0.9rem;
    }

    /* TODO Phase 2: swap Netlify form for Klaviyo embed
       Account: Big K Klaviyo | Subscriber tag: olive-oil-brand */
    .ec-form {
      display: flex;
    }

    .ec-form input[type="email"] {
      flex: 1;
      padding: 0.9rem 1.2rem;
      background: rgba(26,23,16,.1);
      border: none;
      font-family: var(--sans);
      font-size: 0.95rem;
      color: var(--ink);
      outline: none;
    }

    .ec-form input::placeholder { color: rgba(26,23,16,.4); }

    .ec-form button {
      padding: 0.9rem 1.5rem;
      background: var(--ink);
      color: var(--harvest);
      font-family: var(--label);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.3s;
    }

    .ec-form button:hover { background: var(--grove); }

    @media (max-width: 640px) {
      .ec-inner { grid-template-columns: 1fr; }
      .ec-form { flex-direction: column; gap: 0.5rem; }
    }

    /* ===================================================
       TRADE
    =================================================== */
    #trade { background: var(--grove); }

    .trade-layout {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: clamp(3.5rem, 6vw, 7rem);
    }

    .trade-text .eyebrow { color: var(--harvest); opacity: 1; }

    .trade-text h2 {
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--parchment);
      margin-bottom: 1.25rem;
    }

    .trade-text p {
      color: rgba(242,236,216,.62);
      margin-bottom: 1.1rem;
    }

    .trade-list {
      margin-top: 2.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .trade-list-item {
      font-family: var(--label);
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(242,236,216,.45);
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .trade-list-item::before {
      content: '';
      display: block;
      width: 18px;
      height: 1px;
      background: var(--harvest);
      flex-shrink: 0;
    }

    /* Form */
    .trade-form {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .ff {
      display: flex;
      flex-direction: column;
    }

    .ff label {
      font-family: var(--label);
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(242,236,216,.38);
      padding: 0.85rem 1rem 0.25rem;
      background: rgba(242,236,216,.045);
      border: 1px solid rgba(242,236,216,.07);
      border-bottom: none;
    }

    .ff input,
    .ff select,
    .ff textarea {
      padding: 0.4rem 1rem 0.85rem;
      background: rgba(242,236,216,.045);
      border: 1px solid rgba(242,236,216,.07);
      border-top: none;
      color: var(--parchment);
      font-family: var(--sans);
      font-size: 0.93rem;
      font-weight: 300;
      outline: none;
      transition: background 0.2s, border-color 0.2s;
      width: 100%;
    }

    .ff select option { background: var(--grove); }

    .ff input:focus,
    .ff select:focus,
    .ff textarea:focus {
      background: rgba(242,236,216,.07);
      border-color: rgba(200,150,12,.35);
    }

    .ff textarea {
      resize: vertical;
      min-height: 100px;
    }

    .form-row-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }

    .trade-submit {
      padding: 1rem 2rem;
      background: var(--harvest);
      color: var(--ink);
      font-family: var(--label);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      margin-top: 1.25rem;
      transition: background 0.3s;
    }

    .trade-submit:hover { background: #d4a00e; }

    @media (max-width: 780px) {
      .trade-layout { grid-template-columns: 1fr; }
      .form-row-2 { grid-template-columns: 1fr; }
    }

    /* ===================================================
       BUY
    =================================================== */
    #buy {
      background: var(--parchment);
      text-align: center;
    }

    .buy-inner { max-width: 600px; margin: 0 auto; }

    .buy-inner .eyebrow {
      display: block;
      text-align: center;
      color: var(--stone);
    }

    .buy-inner h2 {
      font-size: clamp(2rem, 4vw, 3.25rem);
      color: var(--grove);
      margin-bottom: 1rem;
    }

    .buy-inner p {
      color: #4a3f35;
      margin-bottom: 2.75rem;
    }

    .buy-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1.1rem 2.75rem;
      background: var(--grove);
      color: var(--parchment);
      font-family: var(--label);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
    }

    .buy-cta:hover {
      background: var(--earth);
      transform: translateY(-2px);
    }

    .buy-note {
      margin-top: 1.5rem;
      font-family: var(--label);
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--stone);
      opacity: 0.55;
    }

    /* ===================================================
       FOOTER
    =================================================== */
    footer {
      background: var(--ink);
      padding: clamp(4rem, 7vw, 6rem) 0 2.5rem;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3.5rem;
      border-bottom: 1px solid rgba(242,236,216,.07);
      margin-bottom: 2rem;
    }

    .footer-brand-img {
      display: block;
      height: 64px;
      width: auto;
      margin-bottom: 1.25rem;
      /* Invert dark green to parchment for dark footer background */
      filter:
        brightness(0) saturate(100%)
        invert(1)
        sepia(1)
        saturate(0.4)
        brightness(0.95);
      opacity: 0.75;
    }

    .footer-bio {
      font-size: 0.82rem;
      color: rgba(242,236,216,.35);
      line-height: 1.65;
    }

    .footer-col h5 {
      font-family: var(--label);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.17em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 1.25rem;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }

    .footer-col ul li a {
      font-size: 0.85rem;
      color: rgba(242,236,216,.38);
      transition: color 0.2s;
    }

    .footer-col ul li a:hover { color: rgba(242,236,216,.75); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.75rem;
      font-size: 0.72rem;
      color: rgba(242,236,216,.2);
    }

    .footer-bottom a {
      color: rgba(242,236,216,.28);
      transition: color 0.2s;
    }

    .footer-bottom a:hover { color: rgba(242,236,216,.55); }

    @media (max-width: 780px) {
      .footer-top { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 480px) {
      .footer-top { grid-template-columns: 1fr; }
    }


    /* ===================================================
       PRODUCT RANGE
    =================================================== */
    #range {
      background: var(--grove);
    }

    .range-header {
      text-align: center;
      max-width: 580px;
      margin: 0 auto clamp(3.5rem, 6vw, 5.5rem);
    }

    .range-header .eyebrow { color: var(--harvest); opacity: 1; }

    .range-header h2 {
      font-size: clamp(2rem, 4vw, 3.25rem);
      color: var(--parchment);
      margin-bottom: 1rem;
    }

    .range-header p {
      color: rgba(242,236,216,.62);
    }

    .range-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .range-card {
      background: rgba(242,236,216,.04);
      border: 1px solid rgba(242,236,216,.08);
      padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
      display: flex;
      flex-direction: column;
      position: relative;
      transition: background 0.3s;
    }

    .range-card:hover {
      background: rgba(242,236,216,.07);
    }

    /* Visual placeholder until product photography arrives */
    .range-card-visual {
      width: 100%;
      aspect-ratio: 3/4;
      background: rgba(242,236,216,.05);
      border: 1px solid rgba(242,236,216,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 2rem;
      position: relative;
      overflow: hidden;
    }

    /* TODO: replace .range-card-visual backgrounds with product photography:
       .range-card:nth-child(1) .range-card-visual: 100ml glass bottle shot
       .range-card:nth-child(2) .range-card-visual: 500ml glass bottle shot (hero)
       .range-card:nth-child(3) .range-card-visual: 5L tin shot */
    .range-card-visual-label {
      font-family: var(--label);
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(242,236,216,.2);
      text-align: center;
    }

    /* Bottle silhouette SVG suggestion */
    .range-card-visual svg {
      opacity: 0.15;
    }

    .range-use-case {
      font-family: var(--label);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--harvest);
      margin-bottom: 0.5rem;
      display: block;
    }

    .range-size {
      font-family: var(--serif);
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 400;
      color: var(--parchment);
      line-height: 1;
      margin-bottom: 0.35rem;
    }

    .range-format {
      font-family: var(--label);
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--stone);
      margin-bottom: 1.5rem;
      display: block;
    }

    .range-desc {
      font-size: 0.92rem;
      color: rgba(242,236,216,.62);
      line-height: 1.65;
      flex: 1;
      margin-bottom: 1.75rem;
    }

    .range-meta {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(242,236,216,.08);
    }

    .range-meta-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 0.5rem;
    }

    .range-meta-key {
      font-family: var(--label);
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(242,236,216,.35);
    }

    .range-meta-val {
      font-family: var(--label);
      font-size: 0.7rem;
      font-weight: 500;
      color: rgba(242,236,216,.55);
      text-align: right;
    }

    .range-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1.75rem;
      padding: 0.75rem 1.25rem;
      background: rgba(200,150,12,.12);
      border: 1px solid rgba(200,150,12,.25);
      color: var(--harvest);
      font-family: var(--label);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.3s, border-color 0.3s;
      text-decoration: none;
    }

    .range-cta:hover {
      background: rgba(200,150,12,.2);
      border-color: rgba(200,150,12,.45);
    }

    /* Hero card: 500ml is the consumer centrepiece */
    .range-card--hero {
      background: rgba(242,236,216,.07);
      border-color: rgba(242,236,216,.14);
    }

    .range-card--hero .range-use-case {
      color: var(--harvest);
    }

    .range-card--hero .range-size {
      font-size: clamp(2rem, 3.5vw, 3rem);
    }

    .range-photo-note {
      text-align: center;
      margin-top: clamp(2.5rem, 4vw, 4rem);
      font-family: var(--label);
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(242,236,216,.22);
    }

    @media (max-width: 780px) {
      .range-grid { grid-template-columns: 1fr; }
    }

  

  /* v6 trust layer */
  .archive-frame { margin-top: 1.5rem; max-width: 300px; }
  .archive-frame img { width: 100%; display: block; border: 6px solid var(--mist); box-shadow: 0 10px 28px rgba(26,23,16,.14); filter: sepia(.12) saturate(.94) contrast(1.02); }
  .archive-caption { margin-top: .6rem; }
  .archive-frame--hero { max-width: 100%; margin-top: 0; }
  .archive-frame--hero img { border-width: 10px; }
  .sofroni-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: start; }
  .sofroni-copy p { max-width: 52ch; }
  .sofroni-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
  .sofroni-fig { margin: 0; }
  .sofroni-fig img { width: 100%; display: block; }
  .sofroni-fig figcaption { margin-top: .7rem; font-family: var(--label, 'DM Sans', sans-serif); font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); line-height: 1.7; }
  @media (max-width: 900px) { .sofroni-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
  @media (max-width: 640px) { .sofroni-images { grid-template-columns: 1fr; } }
  .ep-6 { position: relative; }
  .ep-caption { position: absolute; left: 0; bottom: 0; right: 0; padding: 1rem; font-family: var(--label, 'DM Sans', sans-serif); font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--parchment); background: linear-gradient(transparent, rgba(26,23,16,.6)); }
  #short-film { background: var(--grove-deep, #1d2714); }
  .shortfilm-frame { position: relative; height: 62vh; min-height: 440px; }
  #shortfilm { width: 100%; height: 100%; border: 0; display: block; }
  @media (max-width: 700px) { .shortfilm-frame { height: 68vh; min-height: 460px; } }
  #traceability { background: var(--mist); }
  .trace-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem; align-items: start; }
  .trace-copy p { max-width: 56ch; }
  .trace-facts { margin-top: 2rem; border-top: 1px solid var(--line); }
  .trace-fact { display: flex; justify-content: space-between; gap: 1.5rem; padding: .7rem 0; border-bottom: 1px solid var(--sep); }
  .tf-k { font-family: var(--label, 'DM Sans', sans-serif); font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); }
  .tf-v { font-family: var(--serif, 'Playfair Display', serif); font-size: .95rem; color: var(--ink); text-align: right; }
  .trace-cert img { width: 100%; display: block; border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(26,23,16,.16); background: #fff; }
  .trace-cert a { display: block; }
  .trace-cert-meta { margin-top: 1.1rem; display: flex; flex-direction: column; gap: .3rem; }
  .tcm-title { font-family: var(--serif, 'Playfair Display', serif); font-size: 1.05rem; color: var(--ink); }
  .tcm-row { font-size: .82rem; color: var(--stone); }
  .tcm-download { margin-top: .6rem; font-family: var(--label, 'DM Sans', sans-serif); font-size: .66rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--harvest); text-decoration: none; border-bottom: 1px solid rgba(200,150,12,.35); align-self: flex-start; padding-bottom: .15rem; }
  .tcm-download:hover { color: #d4a00e; }
  #film { background: #1d2714; }
  .film-frame { position: relative; height: 88vh; min-height: 540px; }
  #drizzle-frame { width: 100%; height: 100%; border: 0; display: block; }
  .film-poster { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.1rem; background: #1d2714; transition: opacity .6s ease; z-index: 2; }
  .film-eyebrow { font-family: var(--label, 'DM Sans', sans-serif); font-size: .66rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase; color: rgba(242,236,216,.5); }
  .film-title { font-family: var(--serif, 'Playfair Display', serif); font-weight: 600; font-size: clamp(2rem, 4.5vw, 3.4rem); color: var(--parchment, #F2ECD8); letter-spacing: -0.02em; }
  .film-title em { font-style: italic; color: var(--harvest, #C8960C); }
  #film-play { font-family: var(--label, 'DM Sans', sans-serif); font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--ink, #1A1710); background: var(--harvest, #C8960C); border: 0; padding: .9rem 1.9rem; cursor: pointer; }
  #film-play:hover { background: #d4a00e; }
  @media (max-width: 700px) { .film-frame { height: 72vh; min-height: 420px; } }
  .buy-anchor { margin-top: 2.4rem; font-family: var(--serif, 'Playfair Display', serif); font-style: italic; font-size: 1.25rem; opacity: .85; }
  @media (max-width: 860px) { .trace-grid { grid-template-columns: 1fr; gap: 2.5rem; } .trace-cert { max-width: 420px; } }

/* ===================================================
   FOOTER LEGAL + BOTTOM — added 10 Aug 2026
   Two rules that should always have been here.

   1. The global `p` rule sets font-size directly on
      every paragraph, which beats the 0.72rem these
      inherit from .footer-bottom. The result was the
      registered-office block rendering at 16.8px
      instead of 11.5px. Fixed at source rather than
      with another inline style in the markup.
      Colour lifted from .2 to .45 at the same time:
      at 11.5px the old value was close to unreadable,
      and this block carries the company number and
      registered office that the E-Commerce Regs
      require to be easily accessible.

   2. .footer-legal had NO rule at all. footer sets a
      background and body sets the text colour, so
      those links rendered black on black and were
      held up only by an inline style in index.html.
      That inline style can now be deleted safely.
   =================================================== */
.footer-bottom p {
      font-size: 0.72rem;
      line-height: 1.6;
      margin: 0;
      color: rgba(242,236,216,.45);
}

.footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem 1.4rem;
      align-items: center;
      margin: 0 0 1.1rem;
      font-size: 0.78rem;
      color: rgba(242,236,216,.55);
}


/* ===== Accessibility fixes, 12 August 2026 =============================
   Contrast measured against WCAG 2.2 AA. Ratios are before -> after.
   Appended as one block so it is easy to review and easy to revert.
   ==================================================================== */

/* The trade form privacy notice inherited ink from .section and sat on
   grove. 1.36:1 -> 6.11:1. */
.form-privacy { color: var(--parchment); }

/* Trade form field labels were dimmer than the text typed into them.
   2.70:1 -> 5.10:1. */
.ff label { color: rgba(242,236,216,.68); }

/* No placeholder colour was ever set, so Chrome default grey showed
   through on a dark green field. 2.31:1 -> 4.50:1. */
.ff input::placeholder,
.ff textarea::placeholder { color: rgba(242,236,216,.62); }
.ec-form input::placeholder { color: rgba(26,23,16,.62); }

/* Prize draw terms and Privacy Notice in the sign-up popup were the same
   colour as the sentence around them with no underline. WCAG 1.4.1. */
.ec-col p a,
.footer-legal a { text-decoration: underline; text-underline-offset: .18em; }
