/* ====================================================
     Y LOT — Tokens
     ==================================================== */
  :root {
    --coffee:   #3D2B1F;
    --cream:    #F5EFE3;
    --cream-2:  #EFE7D6;
    --sage:     #8FA67E;
    --sage-d:   #75895F;
    --ink:      #2A1D14;            /* deep coffee brown for dark sections (was near-black) */
    --ink-2:    #3D2B1F;
    --bronze:   #9B7B4A;
    --bronze-2: rgba(155, 123, 74, 0.22);
    --red:      #6B2D1F;
    --gold:     #C9A961;

    --serif: "Cairo", "Helvetica Neue", system-ui, sans-serif;
    --sans:  "Cairo", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

    --maxw: 1440px;
    --gut:  clamp(20px, 4vw, 80px);
    --sec:  clamp(64px, 9vw, 112px);   /* tighter section padding */

    --nav-h: 78px;
    --nav-h-sm: 64px;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    margin: 0;
    background: var(--cream);
    color: var(--coffee);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; }
  button { font: inherit; cursor: pointer; }

  ::selection { background: var(--coffee); color: var(--cream); }

  /* ====================================================
     Layout primitives
     ==================================================== */
  .wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-left: var(--gut);
    padding-right: var(--gut);
  }
  .grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(16px, 2vw, 32px);
  }
  section { position: relative; }

  /* ====================================================
     Typography
     ==================================================== */
  .eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--bronze);
  }
  .eyebrow .dia { color: var(--bronze); margin-right: 8px; }

  h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 600;
    color: var(--coffee);
    margin: 0;
    letter-spacing: -0.005em;
    text-wrap: balance;
  }
  .display {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(40px, 6.4vw, 80px);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .h-1 {
    font-size: clamp(36px, 5.2vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.012em;
    font-weight: 700;
  }
  .h-2 {
    font-size: clamp(28px, 3.8vw, 48px);
    line-height: 1.1;
    letter-spacing: -0.008em;
    font-weight: 600;
  }
  .h-3 {
    font-size: clamp(20px, 1.8vw, 26px);
    line-height: 1.22;
    font-weight: 600;
  }
  .lede {
    font-size: clamp(17px, 1.4vw, 21px);
    line-height: 1.55;
    color: var(--coffee);
    max-width: 56ch;
  }
  .lede.dim { color: rgba(61, 43, 31, 0.78); }
  p { margin: 0 0 1em; }

  .micro {
    font-family: var(--sans);
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--bronze);
  }

  /* ====================================================
     Buttons
     ==================================================== */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 5px;
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--coffee);
    background: var(--coffee);
    color: var(--cream);
    line-height: 1;
    transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
    white-space: nowrap;
  }
  .btn:hover { background: #2a1d14; border-color: #2a1d14; }
  .btn .arr { font-family: var(--serif); font-weight: 400; transform: translateY(-1px); }

  .btn.ghost {
    background: transparent;
    color: var(--coffee);
    border-color: var(--coffee);
  }
  .btn.ghost:hover { background: var(--coffee); color: var(--cream); }

  .btn.ghost.on-dark {
    color: var(--cream);
    border-color: var(--cream);
  }
  .btn.ghost.on-dark:hover { background: var(--cream); color: var(--ink); }

  .btn.sage { background: var(--sage); border-color: var(--sage); color: var(--ink); }
  .btn.sage:hover { background: var(--sage-d); border-color: var(--sage-d); }

  .btn.lg { padding: 20px 32px; font-size: 16px; }

  .link-arr {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--coffee);
    text-decoration: none;
    border-bottom: 1px solid var(--coffee);
    padding-bottom: 4px;
    transition: color 200ms ease, border-color 200ms ease;
  }
  .link-arr:hover { color: var(--bronze); border-color: var(--bronze); }
  .link-arr .arr { font-family: var(--serif); margin-left: 6px; }
  .on-dark.link-arr { color: var(--cream); border-color: var(--cream); }
  .on-dark.link-arr:hover { color: var(--gold); border-color: var(--gold); }

  /* ====================================================
     Brand pattern bands (PNG-based)
     ==================================================== */
  .pattern-band {
    height: 56px;
    background-image: url('pattern-band.png');
    background-repeat: repeat-x;
    background-position: center center;
    background-size: auto 100%;
  }
  .pattern-band.dark-bg {
    /* On near-black footer/hero — invert the pale cream pattern so it reads */
    filter: none;
    opacity: 0.55;
  }
  .pattern-band.tall { height: 72px; }

  /* Subtle pattern watermark (full-page motif, very low opacity) */
  .pattern-watermark {
    position: absolute;
    inset: 0;
    background-image: url('pattern-light.png');
    background-repeat: repeat;
    background-size: 520px auto;
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
  }
  .pattern-watermark.strong { opacity: 0.9; }
  .pattern-watermark.dark {
    background-image: url('pattern-dark.png');
    opacity: 0.06;
  }
  .pattern-watermark.on-dark {
    /* light pattern over near-black — already cream, fades to bronze with opacity */
    background-image: url('pattern-light.png');
    opacity: 0.10;
    mix-blend-mode: screen;
  }
  section > .wrap,
  section > .hero-inner,
  .serve > .wrap,
  .cta > .wrap { position: relative; z-index: 1; }

  /* small bronze rule — brand pattern in coffee brown via CSS mask */
  .zigzag-rule {
    height: 22px;
    width: 160px;
    background-color: var(--coffee);
    -webkit-mask-image: url('pattern-band.png');
            mask-image: url('pattern-band.png');
    -webkit-mask-repeat: repeat-x;
            mask-repeat: repeat-x;
    -webkit-mask-position: left center;
            mask-position: left center;
    -webkit-mask-size: auto 100%;
            mask-size: auto 100%;
    opacity: 0.78;
  }

  /* Line-pattern section divider — brand pattern rendered in coffee brown via CSS mask */
  .line-divider {
    width: 100%;
    height: 56px;
    background-color: var(--coffee);
    -webkit-mask-image: url('pattern-band.png');
            mask-image: url('pattern-band.png');
    -webkit-mask-repeat: repeat-x;
            mask-repeat: repeat-x;
    -webkit-mask-position: center center;
            mask-position: center center;
    -webkit-mask-size: auto 100%;
            mask-size: auto 100%;
    opacity: 0.7;
  }
  .line-divider.on-cream,
  .line-divider.on-cream-2 { background-color: var(--coffee); }
  .line-divider.dense { height: 56px; }
  /* deckle edge for cards (top edge tear) */
  .deckle {
    height: 10px;
    width: 100%;
    background:
      linear-gradient(135deg, var(--cream) 25%, transparent 25%) 0 0 / 10px 10px,
      linear-gradient(225deg, var(--cream) 25%, transparent 25%) 0 0 / 10px 10px;
    background-repeat: repeat-x;
  }

  /* ====================================================
     Nav
     ==================================================== */
  header.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(245, 239, 227, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--bronze-2);
    transition: padding 200ms ease, background 200ms ease;
  }
  .nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 22px var(--gut);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    transition: padding 200ms ease;
  }
  .nav.scrolled .nav-inner { padding-top: 14px; padding-bottom: 14px; }
  .nav.scrolled .brand { font-size: 22px; }
  .brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    height: 64px;
    transition: height 200ms ease;
  }
  .brand img { height: 100%; width: auto; display: block; }
  .nav.scrolled .brand { height: 50px; }
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 36px;
    justify-content: center;
  }
  nav a {
    text-decoration: none;
    color: var(--coffee);
    font-size: 16.5px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 180ms ease;
  }
  nav a:hover { color: var(--bronze); }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .lang {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.18em;
    color: var(--coffee);
    text-transform: uppercase;
    background: transparent;
    border: 0;
    padding: 6px 8px;
  }
  .lang .on { font-weight: 600; }
  .lang .off { color: rgba(61, 43, 31, 0.45); }

  .nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    position: relative;
  }
  .nav-toggle span {
    position: absolute;
    left: 8px; right: 8px;
    height: 1.5px;
    background: var(--coffee);
    transition: transform 200ms ease, opacity 200ms ease, top 200ms ease;
  }
  .nav-toggle span:nth-child(1) { top: 14px; }
  .nav-toggle span:nth-child(2) { top: 20px; }
  .nav-toggle span:nth-child(3) { top: 26px; }

  /* ====================================================
     Hero — full-bleed landscape image, text on left over brown overlay
     ==================================================== */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    background: var(--ink);
    color: var(--cream);
    overflow: hidden;
    padding-top: 0;
  }
  .hero-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: url('photo-hero-hand.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: saturate(0.95) brightness(0.88);
  z-index: 0;
}
  .hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(42,29,20,0.94) 0%, rgba(42,29,20,0.86) 30%, rgba(42,29,20,0.55) 55%, rgba(42,29,20,0.18) 80%, rgba(42,29,20,0) 100%);
  }
  .hero-inner {
    position: relative;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--gut);
    height: 100%;
    display: flex;
    align-items: center;
  }
  .hero-content { width: 100%; max-width: 640px; }
  .hero-content .eyebrow { color: var(--gold); margin-bottom: 28px; }
  .hero-content .display { color: var(--cream); }
  .hero-content .lede {
    color: rgba(245, 239, 227, 0.82);
    max-width: 560px;
    margin: 28px 0 40px;
    font-size: clamp(17px, 1.35vw, 21px);
  }
  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
  }
  .hero-cta .btn { padding: 18px 28px; }
  .hero-cta .btn:not(.ghost) { background: var(--coffee); border-color: var(--coffee); }
  .hero-cta .btn.ghost.on-dark { padding: 17px 28px; }
  .hero-trust {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }
  .hero-zigzag {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    background-color: var(--ink);
    height: 56px;
  }
  .hero-zigzag.pattern-band { background-image: url('pattern-band.png'); background-repeat: repeat-x; background-position: center; background-size: auto 100%; }

  /* ====================================================
     Trust strip
     ==================================================== */
  .trust {
    padding: 56px 0 48px;
    background: var(--cream);
    border-bottom: 1px solid var(--bronze-2);
  }
  .trust .micro { text-align: center; display: block; margin-bottom: 48px; }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--bronze-2);
  }
  .trust-tile {
    padding: 36px 28px;
    border-right: 1px solid var(--bronze-2);
    text-align: center;
  }
  .trust-tile:last-child { border-right: 0; }
  .trust-tile .tile-glyph {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--bronze);
    font-weight: 400;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
  }
  .trust-tile .tile-title {
    font-family: var(--serif);
    font-size: clamp(20px, 1.6vw, 24px);
    color: var(--coffee);
    line-height: 1.2;
  }

  /* ====================================================
     The Problem
     ==================================================== */
  .problem {
    padding: var(--sec) 0;
    background: var(--cream);
  }
  .problem-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
  }
  .problem-grid .h-1 { max-width: 11ch; }
  .problem-right p { margin-bottom: 24px; }
  .problem-right p:last-child {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.3;
    color: var(--coffee);
  }
  .problem .zigzag-rule { margin-bottom: 28px; }

  /* ====================================================
     QC Story
     ==================================================== */
  .qc {
    padding: var(--sec) 0;
    background: var(--cream);
    border-top: 1px solid var(--bronze-2);
  }
  .qc-head {
    max-width: 880px;
    margin: 0 auto 56px;
    text-align: center;
  }
  .qc-head .h-1 { margin-bottom: 24px; }
  .qc-head .lede { margin: 0 auto; color: rgba(61, 43, 31, 0.78); }
  .qc-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--bronze-2);
    border-bottom: 1px solid var(--bronze-2);
    margin-bottom: 64px;
  }
  .qc-step {
    padding: 44px 36px;
    border-right: 1px solid var(--bronze-2);
  }
  .qc-step:last-child { border-right: 0; }
  .qc-step .step-num {
    font-family: var(--serif);
    font-size: 56px;
    line-height: 1;
    color: var(--bronze);
    font-weight: 400;
    display: block;
    margin-bottom: 28px;
  }
  .qc-step h3 {
    font-size: clamp(24px, 2vw, 30px);
    margin-bottom: 14px;
    line-height: 1.18;
  }
  .qc-step p {
    color: rgba(61, 43, 31, 0.78);
    margin: 0;
    line-height: 1.6;
  }
  .qc-img {
    width: 100%;
    max-width: 920px;
    margin: 0 auto 40px;
    aspect-ratio: 4 / 3;
    background-color: var(--cream-2);
    background-image: url("photo-elder-portrait.webp");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    filter: saturate(0.97);
    display: block;
  }
  .qc-cta {
    display: flex;
    justify-content: center;
  }

  /* ====================================================
     Current Lots
     ==================================================== */
  .lots {
    padding: var(--sec) 0;
    background: var(--cream-2);
  }
  .lots-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
    margin-bottom: 48px;
  }
  .lots-head .h-1 { margin-bottom: 16px; }
  .lots-head .lede { color: rgba(61, 43, 31, 0.78); max-width: 50ch; }
  .lots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.4vw, 36px);
  }
  .lot-card {
    background: var(--cream);
    border: 1px solid var(--bronze-2);
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .lot-img {
    position: relative;
    aspect-ratio: 4 / 3.2;
    background-size: cover;
    background-position: center;
    filter: saturate(0.88);
  }
  .lot-card .deckle {
    margin-top: -10px;
    position: relative;
    z-index: 2;
  }
  .lot-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 7px 11px;
    background: var(--cream);
    color: var(--coffee);
    border: 1px solid var(--bronze);
  }
  .lot-badge.red { background: var(--red); color: var(--cream); border-color: var(--red); }
  .lot-badge.sage { background: var(--sage); color: var(--ink); border-color: var(--sage); }
  .lot-badge.bronze { background: var(--bronze); color: var(--cream); border-color: var(--bronze); }
  .lot-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .lot-region {
    font-family: var(--sans);
    font-size: 11.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bronze);
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .lot-code {
    font-family: var(--serif);
    text-transform: none;
    letter-spacing: 0;
    font-size: 12px;
    font-weight: 600;
    color: var(--bronze);
    padding: 2px 8px;
    border: 1px solid var(--bronze-2);
    border-radius: 999px;
    background: rgba(155, 123, 74, 0.06);
  }
  .lot-title {
    font-family: var(--serif);
    font-size: clamp(22px, 1.8vw, 26px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--coffee);
    margin-bottom: 16px;
    letter-spacing: -0.005em;
  }
  .lot-specs {
    margin: 0 0 28px;
    padding: 16px 0 0;
    border-top: 1px solid var(--bronze-2);
    display: grid;
    grid-template-columns: 1fr auto;
    row-gap: 8px;
    font-size: 14px;
    color: var(--coffee);
  }
  .lot-specs dt {
    color: rgba(61, 43, 31, 0.6);
    font-size: 13px;
  }
  .lot-specs dd {
    margin: 0;
    text-align: right;
    font-weight: 500;
  }
  .lot-score {
    font-family: var(--serif);
    font-size: 18px;
  }
  .lot-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .lot-actions .btn { padding: 13px 18px; font-size: 14px; }

  /* Italic tasting notes — serif, sits between specs and actions */
  .lot-notes {
    font-family: var(--serif);
    font-style: italic;
    font-size: 15px;
    line-height: 1.45;
    color: rgba(61, 43, 31, 0.82);
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bronze-2);
  }
  .lots-foot {
    margin-top: 56px;
    display: flex;
    justify-content: center;
  }
  /* Prominent centered "View All" link — larger and emphasized */
  .lots-all {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--coffee);
    padding: 14px 4px;
    border-bottom: 1px solid var(--coffee);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 200ms ease, border-color 200ms ease, gap 200ms ease;
  }
  .lots-all:hover {
    color: var(--bronze);
    border-color: var(--bronze);
    gap: 16px;
  }

  /* ====================================================
     Who We Serve (dark)
     ==================================================== */
  .serve {
    padding: var(--sec) 0;
    background: var(--ink);
    color: var(--cream);
  }
  .serve h2 { color: var(--cream); }
  .serve .lede { color: rgba(245, 239, 227, 0.7); }
  .serve-head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 56px;
  }
  .serve-head .eyebrow { color: var(--gold); margin-bottom: 24px; }
  .serve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 2.4vw, 32px);
  }
  .serve-card {
    background: var(--cream);
    color: var(--coffee);
    padding: clamp(32px, 3.6vw, 48px);
    display: flex;
    flex-direction: column;
    min-height: 320px;
    position: relative;
  }
  .serve-card .micro { color: var(--bronze); margin-bottom: 20px; }
  .serve-card h3 {
    font-size: clamp(28px, 2.6vw, 40px);
    margin-bottom: 20px;
    line-height: 1.08;
  }
  .serve-card p { color: rgba(61, 43, 31, 0.8); margin-bottom: 36px; }
  .serve-card .link-arr { margin-top: auto; align-self: flex-start; }

  /* Inline sample CTA inside the serve section (replaces standalone CTA block) */
  .serve-cta {
    margin-top: clamp(56px, 7vw, 88px);
    padding-top: clamp(48px, 6vw, 72px);
    border-top: 1px solid rgba(245, 239, 227, 0.14);
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .serve-cta .eyebrow { display: block; margin-bottom: 18px; }
  .serve-cta-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--cream);
    margin: 0 0 16px;
  }
  .serve-cta-lede {
    font-size: clamp(16px, 1.2vw, 18px);
    color: rgba(245, 239, 227, 0.72);
    line-height: 1.55;
    max-width: 52ch;
    margin: 0 auto 32px;
  }
  .serve-cta-sub {
    margin-top: 22px;
    font-size: 13px;
    color: rgba(245, 239, 227, 0.55);
    letter-spacing: 0.06em;
  }

  /* ====================================================
     Sample CTA
     ==================================================== */
  .cta {
    padding: var(--sec) 0;
    background: var(--ink);
    color: var(--cream);
    text-align: center;
    border-top: 1px solid rgba(155, 123, 74, 0.25);
  }
  .cta h2 { color: var(--cream); }
  .cta-inner { max-width: 720px; margin: 0 auto; }
  .cta .h-1 { margin: 24px 0; }
  .cta .lede {
    color: rgba(245, 239, 227, 0.75);
    margin: 0 auto 40px;
    text-align: center;
  }
  .cta .btn.sage { padding: 22px 36px; font-size: 16px; }
  .cta .sub {
    margin-top: 28px;
    font-size: 13px;
    color: rgba(245, 239, 227, 0.55);
    letter-spacing: 0.06em;
  }

  /* ====================================================
     Footer
     ==================================================== */
  footer {
    background: var(--ink);
    color: var(--cream);
  }
  footer > .pattern-band {
    background-color: var(--ink);
    height: 72px;
    opacity: 1;
  }
  .foot-top {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 72px var(--gut) 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: clamp(32px, 4vw, 64px);
  }
  .foot-top h4 {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 22px;
  }
  .foot-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
  }
  .foot-top a {
    color: rgba(245, 239, 227, 0.78);
    text-decoration: none;
    font-size: 14.5px;
    transition: color 180ms ease;
  }
  .foot-top a:hover { color: var(--gold); }
  .foot-brand .brand-mark {
    display: block;
    height: 64px;
    margin-bottom: 22px;
  }
  .foot-brand .brand-mark img { height: 100%; width: auto; display: block; }
  .foot-brand p {
    color: rgba(245, 239, 227, 0.75);
    max-width: 28ch;
    margin-bottom: 22px;
  }
  .foot-locations {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .foot-form {
    display: flex;
    margin-top: 12px;
    border: 1px solid rgba(245, 239, 227, 0.25);
  }
  .foot-form input {
    flex: 1;
    background: transparent;
    border: 0;
    color: var(--cream);
    font-family: var(--sans);
    font-size: 14px;
    padding: 14px 16px;
    outline: none;
  }
  .foot-form input::placeholder { color: rgba(245, 239, 227, 0.45); }
  .foot-form button {
    background: var(--cream);
    color: var(--ink);
    border: 0;
    padding: 0 20px;
    font-family: var(--serif);
    font-size: 16px;
    cursor: pointer;
  }
  .foot-form button:hover { background: var(--gold); }
  .foot-contact {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    font-size: 14px;
  }
  .foot-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .foot-contact .ic {
    width: 18px; height: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--gold);
  }
  .foot-bottom {
    border-top: 1px solid rgba(245, 239, 227, 0.12);
    padding: 22px var(--gut);
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(245, 239, 227, 0.55);
  }
  .foot-bottom a { color: rgba(245, 239, 227, 0.55); text-decoration: none; margin-right: 18px; }
  .foot-bottom a:hover { color: var(--gold); }
  .foot-bottom .socials { display: flex; gap: 14px; align-items: center; }
  .foot-bottom .socials a { margin: 0; display: inline-flex; }
  .foot-bottom svg { width: 18px; height: 18px; }

  /* ====================================================
     WhatsApp floating button (mobile)
     ==================================================== */
  .wa-fab {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.1);
  }
  .wa-fab svg { width: 28px; height: 28px; }
  @media (max-width: 768px) {
    .wa-fab { display: inline-flex; }
  }

  /* ====================================================
     Scroll-reveal
     ==================================================== */
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 700ms ease-out, transform 700ms ease-out;
    will-change: opacity, transform;
  }
  /* If JS is off (or hasn't run yet), still render content */
  html.no-js .reveal { opacity: 1; transform: none; }
  .reveal.in {
    opacity: 1;
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
  }

  /* ====================================================
     Responsive
     ==================================================== */
  @media (max-width: 1024px) {
    nav ul { gap: 24px; }
    nav a { font-size: 15px; }
    .nav-right .btn { padding: 12px 16px; font-size: 13px; }
    .qc-step { padding: 44px 28px; }
    .qc-step .step-num { font-size: 44px; margin-bottom: 20px; }
  }

  @media (max-width: 880px) {
    nav.primary-nav { display: none; }
    .nav-toggle { display: inline-block; }
    .nav-inner { grid-template-columns: auto 1fr auto; }
    .nav-right .lang { display: none; }
    .lots-grid { grid-template-columns: repeat(2, 1fr); }
    .qc-steps { grid-template-columns: 1fr; }
    .qc-step { border-right: 0; border-bottom: 1px solid var(--bronze-2); }
    .qc-step:last-child { border-bottom: 0; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-tile { border-right: 0; border-bottom: 1px solid var(--bronze-2); }
    .trust-tile:last-child { border-bottom: 0; }
    .problem-grid { grid-template-columns: 1fr; }
    .lots-head { grid-template-columns: 1fr; }
    .serve-grid { grid-template-columns: 1fr; }
    .foot-top { grid-template-columns: 1fr 1fr; gap: 48px; }
    .foot-top > div:last-child { grid-column: 1 / -1; }
  }

  @media (max-width: 600px) {
    body { font-size: 16px; }
    .hero-content .display { font-size: clamp(40px, 11vw, 56px); }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { justify-content: center; }
    .lots-grid { grid-template-columns: 1fr; }
    .foot-top { grid-template-columns: 1fr; }
    .foot-top > div:last-child { grid-column: auto; }
    .foot-bottom { flex-direction: column; align-items: flex-start; }
    .nav-inner { padding: 14px var(--gut); }
  }

  /* Mobile menu */
 .mob-menu {
  position: fixed;
  inset: var(--nav-h-sm) 0 0 0;
  background: var(--cream);
  z-index: 95;
  padding: 32px var(--gut);
  transform: translateY(-100%);
  transition: transform 280ms ease;
  display: none;            /* hidden by default on desktop */
  flex-direction: column;
  gap: 8px;
}
.mob-menu.open { transform: translateY(0); }

  .mob-menu.open { transform: translateY(0); }
  .mob-menu a {
    font-family: var(--serif);
    font-size: 28px;
    color: var(--coffee);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--bronze-2);
  }
  .mob-menu .btn { margin-top: 24px; justify-content: center; }


/* =================================================================
   Shared page-level patterns (used by lots/process/about/etc.)
   ================================================================= */

/* Active nav state — bronze color on current page */
nav a.is-active {
  color: var(--bronze);
}

/* ---------- Compact page hero (~50vh, cream, bronze pattern band on top) ---------- */
.page-hero {
  background: var(--cream);
  padding: calc(var(--nav-h) + 56px) 0 64px;
  position: relative;
}
.page-hero > .pattern-band-top {
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  height: 40px;
  background-color: var(--coffee);
  -webkit-mask-image: url('pattern-band.png');
          mask-image: url('pattern-band.png');
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: auto 100%;
          mask-size: auto 100%;
  opacity: 0.7;
}
.page-hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 32px var(--gut) 0;
  min-height: calc(50vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-hero .eyebrow { display: block; margin-bottom: 24px; }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--coffee);
  margin: 0 0 24px;
}
.page-hero .lede {
  color: rgba(61, 43, 31, 0.78);
  max-width: 640px;
  font-size: clamp(17px, 1.35vw, 21px);
  margin-bottom: 36px;
}
.page-hero-trust {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
}

/* ---------- Forms (shared field/input/textarea styling) ---------- */
.form-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--gut);
}
.form-section {
  margin-bottom: 48px;
}
.form-section-label {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bronze-2);
  display: block;
  margin-bottom: 28px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}
.field label {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--coffee);
  letter-spacing: -0.005em;
}
.field label .req { color: var(--bronze); margin-left: 2px; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--coffee);
  background: var(--cream);
  border: 1px solid var(--coffee);
  border-radius: 4px;
  padding: 13px 14px;
  outline: none;
  width: 100%;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.field select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 40px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--coffee) 50%),
    linear-gradient(135deg, var(--coffee) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 1px),
    calc(100% - 12px) calc(50% - 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--sage-d);
  box-shadow: 0 0 0 3px rgba(143, 166, 126, 0.18);
}
.field .help {
  font-size: 12.5px;
  color: rgba(61, 43, 31, 0.6);
  letter-spacing: 0.02em;
}
/* Phone with country-code prefix */
.field-tel {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
}
.field-tel select { padding-left: 12px; }

/* Lot-pick checkbox cards (sample request) */
.lot-picks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) {
  .lot-picks { grid-template-columns: 1fr; }
}
.lot-pick {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  border: 1px solid var(--bronze-2);
  border-radius: 4px;
  background: var(--cream);
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease;
}
.lot-pick:hover { border-color: var(--bronze); }
.lot-pick input { margin-top: 4px; accent-color: var(--coffee); }
.lot-pick:has(input:checked) {
  border-color: var(--coffee);
  background: rgba(155, 123, 74, 0.06);
}
.lot-pick .lot-pick-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--coffee);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.lot-pick .lot-pick-meta {
  font-size: 12.5px;
  color: rgba(61, 43, 31, 0.68);
}
.lot-pick .lot-pick-score {
  font-family: var(--serif);
  color: var(--bronze);
  font-weight: 600;
}

/* Radio segment group */
.radio-group {
  display: grid;
  gap: 12px;
}
.radio-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--bronze-2);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease;
}
.radio-row:hover { border-color: var(--bronze); }
.radio-row input { margin-top: 4px; accent-color: var(--coffee); }
.radio-row:has(input:checked) {
  border-color: var(--coffee);
  background: rgba(155, 123, 74, 0.06);
}
.radio-row .r-label { font-weight: 500; }
.radio-row .r-meta { color: rgba(61, 43, 31, 0.65); font-size: 13px; }

.form-submit {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-submit .btn { height: 64px; padding: 0 32px; font-size: 16px; justify-content: center; }
.form-submit .sub {
  font-size: 13px;
  color: rgba(61, 43, 31, 0.65);
  letter-spacing: 0.02em;
}

/* Confirmation screen (replaces form on submit) */
.thanks {
  text-align: center;
  padding: 64px 0;
}
.thanks h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--coffee);
  margin: 0 0 20px;
}
.thanks p {
  font-size: clamp(16px, 1.2vw, 19px);
  color: rgba(61, 43, 31, 0.78);
  max-width: 56ch;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.thanks .actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Dark CTA section (bottom of most pages) ---------- */
.dark-cta {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: clamp(64px, 9vw, 112px) 0;
}
.dark-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gut);
}
.dark-cta .eyebrow { color: var(--gold); display: block; margin-bottom: 18px; }
.dark-cta h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--cream);
  margin: 0 0 20px;
}
.dark-cta p {
  color: rgba(245, 239, 227, 0.75);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  margin: 0 auto 36px;
  max-width: 56ch;
}
.dark-cta .actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .dark-cta .actions { flex-direction: column; }
  .dark-cta .actions .btn { justify-content: center; }
}

/* ---------- 3-step "What happens next" dark grid ---------- */
.steps-dark {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(72px, 10vw, 120px) 0;
}
.steps-dark .wrap { text-align: center; }
.steps-dark .eyebrow { color: var(--gold); margin-bottom: 18px; display: block; }
.steps-dark h2 {
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 0 auto 56px;
  line-height: 1.1;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: left;
  border-top: 1px solid rgba(245, 239, 227, 0.14);
  border-bottom: 1px solid rgba(245, 239, 227, 0.14);
}
.steps-grid .step {
  padding: 40px 32px;
  border-right: 1px solid rgba(245, 239, 227, 0.14);
}
.steps-grid .step:last-child { border-right: 0; }
.steps-grid .step .n {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.steps-grid .step h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--cream);
  font-weight: 600;
}
.steps-grid .step p {
  color: rgba(245, 239, 227, 0.72);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 880px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid .step { border-right: 0; border-bottom: 1px solid rgba(245, 239, 227, 0.14); }
  .steps-grid .step:last-child { border-bottom: 0; }
}

/* ---------- Alternating two-column "moment" blocks (process page) ---------- */
.moment {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--bronze-2);
}
.moment:nth-child(even) { background: var(--cream-2); }
.moment-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.moment.reverse .moment-grid { direction: rtl; }
.moment.reverse .moment-grid > * { direction: ltr; }
.moment .step-num {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.moment h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--coffee);
  margin: 0 0 20px;
}
.moment p {
  color: rgba(61, 43, 31, 0.78);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  max-width: 52ch;
}
.moment-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  filter: saturate(0.95);
  border-radius: 2px;
}
@media (max-width: 880px) {
  .moment-grid { grid-template-columns: 1fr; gap: 32px; }
  .moment.reverse .moment-grid { direction: ltr; }
}

/* ---------- Who-we-serve two-up cards ---------- */
.two-up {
  background: var(--cream);
  padding: clamp(72px, 10vw, 120px) 0;
}
.two-up-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 32px);
}
@media (max-width: 880px) {
  .two-up-grid { grid-template-columns: 1fr; }
}
.buyer-card {
  background: var(--cream);
  border: 1px solid var(--bronze-2);
  padding: clamp(40px, 4.4vw, 60px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 200ms ease, transform 240ms ease, box-shadow 240ms ease;
}
.buyer-card:hover {
  border-color: var(--bronze);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -22px rgba(42, 29, 20, 0.22);
}
.buyer-card .buyer-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
}
.buyer-card .buyer-eyebrow::before {
  content: "◆";
  display: inline-block;
  margin-right: 10px;
  color: var(--gold);
  transform: translateY(-1px);
  font-size: 10px;
}
.buyer-card .pattern-glyph {
  width: 100%;
  height: 64px;
  margin-bottom: 32px;
  background-color: var(--bronze);
  -webkit-mask-image: url('pattern-band.png');
          mask-image: url('pattern-band.png');
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-position: left center;
          mask-position: left center;
  -webkit-mask-size: auto 64px;
          mask-size: auto 64px;
  opacity: 0.85;
}
.buyer-card h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.05;
  color: var(--coffee);
  margin: 0 0 18px;
  letter-spacing: -0.008em;
}
.buyer-card > p {
  color: rgba(61, 43, 31, 0.78);
  margin: 0 0 28px;
  line-height: 1.6;
}
.buyer-card ul {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--bronze-2);
  padding-top: 24px;
}
.buyer-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--coffee);
}
.buyer-card ul li::before {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  background: var(--bronze);
  border-radius: 50%;
}
.buyer-card .actions {
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Generic "value props" grid ---------- */
.value-props {
  background: var(--cream-2);
  padding: clamp(72px, 10vw, 120px) 0;
  text-align: center;
}
.value-props h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--coffee);
  margin: 0 auto 56px;
  max-width: 22ch;
}
.value-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: left;
  border-top: 1px solid var(--bronze-2);
}
.value-cell {
  padding: 40px 28px;
  border-right: 1px solid var(--bronze-2);
}
.value-cell:last-child { border-right: 0; }
.value-cell h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--coffee);
}
.value-cell p {
  margin: 0;
  font-size: 14.5px;
  color: rgba(61, 43, 31, 0.72);
  line-height: 1.55;
}
@media (max-width: 880px) {
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-cell:nth-child(2n) { border-right: 0; }
  .value-cell:nth-child(-n+2) { border-bottom: 1px solid var(--bronze-2); }
}
@media (max-width: 600px) {
  .value-grid { grid-template-columns: 1fr; }
  .value-cell { border-right: 0 !important; border-bottom: 1px solid var(--bronze-2); }
  .value-cell:last-child { border-bottom: 0; }
}

/* ---------- About page: timeline / milestones ---------- */
.milestones {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(72px, 10vw, 120px) 0;
}
.milestones h2 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--cream);
  font-size: clamp(28px, 3.6vw, 44px);
  text-align: center;
  margin: 0 auto 64px;
  max-width: 18ch;
}
.timeline {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 239, 227, 0.14);
}
.timeline .mile {
  padding: 32px 24px 8px;
  border-right: 1px solid rgba(245, 239, 227, 0.14);
}
.timeline .mile:last-child { border-right: 0; }
.timeline .mile .y {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.timeline .mile p {
  margin: 0;
  font-size: 14.5px;
  color: rgba(245, 239, 227, 0.78);
  line-height: 1.45;
}
@media (max-width: 880px) {
  .timeline {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 1px solid rgba(245, 239, 227, 0.18);
  }
  .timeline .mile {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 239, 227, 0.14);
    padding: 24px 24px;
  }
  .timeline .mile:last-child { border-bottom: 0; }
}

/* ---------- About page: locations + regions stacks ---------- */
.country-stack {
  background: var(--cream);
  padding: clamp(72px, 10vw, 120px) 0;
}
.country-stack h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--coffee);
  margin: 0 auto 56px;
  text-align: center;
  max-width: 22ch;
}
.country-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.country {
  padding-top: 28px;
  border-top: 1px solid var(--bronze);
}
.country h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 700;
  color: var(--coffee);
  margin: 0 0 14px;
}
.country p {
  color: rgba(61, 43, 31, 0.78);
  margin: 0;
  line-height: 1.55;
  font-size: 15.5px;
}
@media (max-width: 880px) { .country-grid { grid-template-columns: 1fr; } }

/* Regions list */
.regions {
  background: var(--cream);
  padding: clamp(56px, 7vw, 88px) 0;
  border-top: 1px solid var(--bronze-2);
}
.regions h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--coffee);
  text-align: center;
  margin: 0 auto 36px;
}
.regions-list {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  gap: 0;
}
.region-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 22px 0;
  border-top: 1px solid var(--bronze-2);
  align-items: baseline;
}
.region-row:last-child { border-bottom: 1px solid var(--bronze-2); }
.region-row h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 600;
  color: var(--coffee);
  margin: 0;
  letter-spacing: -0.005em;
}
.region-row p {
  margin: 0;
  color: rgba(61, 43, 31, 0.78);
  line-height: 1.55;
  font-size: 16px;
}
@media (max-width: 700px) {
  .region-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
}

/* ---------- Contact page split ---------- */
.contact-split {
  background: var(--cream);
  padding: clamp(72px, 10vw, 120px) 0;
}
.contact-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-methods { display: grid; gap: 36px; }
.contact-block .label {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.contact-block .value {
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  color: var(--coffee);
  line-height: 1.3;
}
.contact-block a.value { text-decoration: none; transition: color 200ms ease; }
.contact-block a.value:hover { color: var(--bronze); }
.contact-block .sub-value {
  font-size: 14.5px;
  color: rgba(61, 43, 31, 0.72);
  margin-top: 4px;
}
.contact-form {
  background: var(--cream-2);
  border: 1px solid var(--bronze-2);
  padding: clamp(28px, 3.5vw, 48px);
  border-radius: 4px;
}
.contact-form h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--coffee);
  margin: 0 0 28px;
}
.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea {
  background: var(--cream);
}


/* ====================================================
   Homepage transparent-on-load nav
   Applies only when <body class="home"> and nav is not yet scrolled.
   A top-down dark scrim sits between the hero photo and the nav so
   light nav text/logo stays readable over bright patches of the photo
   (e.g. the woman's white shawl). The scrim fades out on scroll when
   the solid cream nav takes over.
   ==================================================== */
body.home header.nav {
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 280ms ease, border-color 280ms ease,
              padding 200ms ease, backdrop-filter 280ms ease;
}
body.home header.nav.scrolled {
  background: rgba(245, 239, 227, 0.94);
  border-bottom-color: var(--bronze-2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* Light text/controls over the hero photo */
body.home header.nav:not(.scrolled) nav a,
body.home header.nav:not(.scrolled) .lang { color: var(--cream); }
body.home header.nav:not(.scrolled) .lang .off { color: rgba(245, 239, 227, 0.55); }
body.home header.nav:not(.scrolled) nav a:hover { color: var(--gold); }
body.home header.nav:not(.scrolled) .nav-toggle span { background: var(--cream); }
/* Request Samples button stays readable — outline-on-dark when transparent */
body.home header.nav:not(.scrolled) .nav-right > .btn {
  background: transparent;
  border-color: rgba(245, 239, 227, 0.65);
  color: var(--cream);
}
body.home header.nav:not(.scrolled) .nav-right > .btn:hover {
  background: rgba(245, 239, 227, 0.12);
  border-color: var(--cream);
}

/* Dual-logo crossfade in .brand (homepage only — inner pages still
   ship a single <img>, so .logo-light/.logo-dark rules just no-op there) */
.brand { position: relative; }
.brand img { transition: opacity 240ms ease; }
.brand .logo-light {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: auto;
  opacity: 0;
  pointer-events: none;
}
body.home header.nav:not(.scrolled) .logo-dark { opacity: 0; }
body.home header.nav:not(.scrolled) .logo-light { opacity: 1; }
