:root {
  --paper:        #F4EFE6;
  --paper-deep:   #E8E1D3;
  --paper-soft:   #EDE6D8;
  --ink:          #1C1814;
  --ink-muted:    #5A5147;
  --terra:        #8B4A2B;
  --terra-deep:   #5C2E18;
  --moss:         #4A5D3A;
  --moss-deep:    #2F3D24;
  --line:         #C9BFAE;
  --gold:         #B8924A;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.25rem;
  --text-xl:   1.75rem;
  --text-2xl:  2.5rem;
  --text-3xl:  4rem;
  --text-4xl:  6.5rem;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-6: 4rem;
  --space-8: 6rem;
  --space-12: 9rem;
  --space-16: 12rem;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--paper); color: var(--ink); overflow-x: hidden; }
body {
  font-family: 'Inter Tight', sans-serif;
  font-size: var(--text-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper); padding: 8px 12px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

img { max-width: 100%; display: block; }

/* Display family for headings */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

.eyebrow {
  font-family: 'Inter Tight', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--ink-muted);
}

.muted { color: var(--ink-muted); }
.terra { color: var(--terra); }
.moss { color: var(--moss); }

.shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .shell { padding: 0 24px; }
}

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 239, 230, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 80px;
  max-width: 1440px; margin: 0 auto;
}
@media (max-width: 768px) { .nav-inner { padding: 18px 24px; } }

.brand {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-variation-settings: "opsz" 96;
  font-size: 26px;
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 1px;
}
.brand .dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--terra);
  transform: translateY(-14px);
  margin: 0 1px;
}

.nav-links {
  display: flex; gap: 36px; align-items: center;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-links a {
  position: relative;
  padding-bottom: 2px;
  cursor: pointer;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--ink);
  transform-origin: left; transform: scaleX(0);
  transition: transform 220ms var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--terra); }
.nav-links a.active::after { background: var(--terra); }

.loc-tag {
  font-size: var(--text-xs);
  color: var(--ink-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.loc-tag .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 0 rgba(74, 93, 58, 0.6);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 93, 58, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(74, 93, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 93, 58, 0); }
}

.mobile-toggle { display: none; }
@media (max-width: 900px) {
  .nav-links, .loc-tag { display: none; }
  .mobile-toggle { display: flex; align-items: center; gap: 6px; font-size: 14px; }
}

/* ---------- LINK STYLES ---------- */
.arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500; font-size: var(--text-sm);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
  cursor: pointer;
  transition: gap 240ms var(--ease), color 200ms var(--ease);
}
.arrow-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 240ms var(--ease);
}
.arrow-link:hover { gap: 16px; }
.arrow-link.terra { color: var(--terra); }
.arrow-link.terra:hover { color: var(--terra-deep); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--ink); color: var(--paper);
  transition: background 220ms var(--ease), transform 220ms var(--ease);
  cursor: pointer;
}
.btn:hover { background: var(--terra-deep); transform: translateY(-1px); }
.btn.secondary { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn.secondary:hover { background: var(--paper-deep); border-color: var(--ink); transform: translateY(-1px); }
.btn.terra { background: var(--terra); }
.btn.terra:hover { background: var(--terra-deep); }

/* ---------- IMAGE PLACEHOLDERS ---------- */
.ph {
  position: relative;
  background: linear-gradient(135deg, var(--paper-deep) 0%, var(--paper-soft) 100%);
  overflow: hidden;
  isolation: isolate;
}
.ph::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 18px,
      rgba(28, 24, 20, 0.035) 18px,
      rgba(28, 24, 20, 0.035) 19px
    );
}
.ph::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 30% 20%, rgba(184, 146, 74, 0.12), transparent 60%),
    radial-gradient(600px 300px at 80% 90%, rgba(74, 93, 58, 0.08), transparent 60%);
  pointer-events: none;
}
.ph .ph-cap {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  background: rgba(244, 239, 230, 0.85);
  padding: 4px 8px;
  text-transform: uppercase;
  z-index: 2;
}
.ph .grain {
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11 0 0 0 0 0.09 0 0 0 0 0.08 0 0 0 0.18 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
}

.ph-4x5 { aspect-ratio: 4/5; }
.ph-3x2 { aspect-ratio: 3/2; }
.ph-1x1 { aspect-ratio: 1/1; }
.ph-16x9 { aspect-ratio: 16/9; }

/* ---------- HERO ---------- */
.hero {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: calc(100vh - 86px);
  border-bottom: 1px solid var(--line);
}
.hero-text {
  padding: var(--space-8) 80px var(--space-6);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: var(--space-4);
}
.hero-text .eyebrow { margin-bottom: var(--space-3); }
.hero-text h1 {
  font-size: clamp(56px, 7.4vw, 116px);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--terra);
  font-weight: 400;
}
.hero-lead {
  font-size: var(--text-lg);
  max-width: 36ch;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-top: var(--space-3);
}
.hero-actions {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: var(--space-4);
}
.hero-img {
  position: relative;
  border-left: 1px solid var(--line);
}
.hero-img .ph { height: 100%; }

.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: var(--space-6);
}
.hero-meta > div {
  padding: 22px 0 0 0;
  border-right: 1px solid var(--line);
  padding-right: 24px;
}
.hero-meta > div:last-child { border-right: none; }
.hero-meta .k { font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 6px; }
.hero-meta .v { font-family: 'Fraunces', serif; font-size: 22px; font-variation-settings: "opsz" 72; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 56px 24px 48px; }
  .hero-img { border-left: none; border-top: 1px solid var(--line); }
  .hero-img .ph { aspect-ratio: 4/5; }
}

/* ---------- SECTION SCAFFOLD ---------- */
.section { padding: var(--space-12) 0; border-bottom: 1px solid var(--line); }
@media (max-width: 768px) { .section { padding: var(--space-8) 0; } }

.section-head {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 80px;
  margin-bottom: var(--space-6);
  align-items: end;
}
.section-head h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  font-variation-settings: "opsz" 96;
}
.section-head h2 em { font-style: italic; color: var(--terra); }
.section-head .head-meta {
  align-self: end;
  display: flex; justify-content: space-between; gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  font-size: var(--text-sm);
  color: var(--ink-muted);
}
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- LOT CARDS (home) ---------- */
.lot-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 900px) { .lot-grid { grid-template-columns: 1fr; gap: 32px; } }

.lot-card { cursor: pointer; }
.lot-card .ph { transition: opacity 320ms var(--ease); }
.lot-card:hover .ph { opacity: 0.85; }
.lot-card .meta-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 18px; gap: 12px;
}
.lot-card .estate {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  font-variation-settings: "opsz" 72;
  line-height: 1.1;
}
.lot-card .score {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--terra);
  font-variation-settings: "opsz" 72;
  letter-spacing: -0.02em;
}
.lot-card .specs {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  margin-top: 6px;
}
.lot-card .specs span + span::before { content: " · "; margin: 0 4px; color: var(--line); }
.lot-card .row-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.lot-card .bag-count {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ---------- REGIONS STRIP ---------- */
.regions {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.region-card {
  padding: var(--space-6) 40px;
  border-right: 1px solid var(--line);
  cursor: pointer;
  transition: background 280ms var(--ease);
  position: relative;
}
.region-card:last-child { border-right: none; }
.region-card:hover { background: var(--paper-deep); }
.region-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.region-svg {
  width: 100%;
  height: 200px;
  margin-bottom: 24px;
  color: var(--terra);
}
.region-card h3 {
  font-size: 38px;
  font-weight: 300;
  font-variation-settings: "opsz" 96;
  margin-bottom: 8px;
}
.region-card .alt {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  margin-bottom: var(--space-3);
}
@media (max-width: 900px) {
  .regions { grid-template-columns: 1fr; }
  .region-card { border-right: none; border-bottom: 1px solid var(--line); }
  .region-card:last-child { border-bottom: none; }
}

/* ---------- POSITIONING ---------- */
.positioning {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: stretch;
}
.positioning .img-wrap .ph { height: 100%; min-height: 480px; }
.positioning .text {
  display: flex; flex-direction: column; gap: 28px;
  padding-top: var(--space-3);
  max-width: 56ch;
}
.positioning .text p {
  font-size: var(--text-lg);
  line-height: 1.55;
}
.positioning .text p.italic {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.25;
  color: var(--ink);
  font-variation-settings: "opsz" 72;
}
@media (max-width: 900px) {
  .positioning { grid-template-columns: 1fr; gap: 32px; }
  .positioning .img-wrap .ph { min-height: 360px; }
}

/* ---------- CREDENTIALS ---------- */
.creds {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cred {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  gap: 8px;
  filter: grayscale(0.4);
  opacity: 0.85;
  transition: all 220ms var(--ease);
}
.cred:hover { opacity: 1; filter: grayscale(0); }
.cred:last-child { border-right: none; }
.cred .label {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 18px;
  font-variation-settings: "opsz" 72;
  line-height: 1.15;
}
.cred .sub {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
@media (max-width: 900px) { .creds { grid-template-columns: repeat(2, 1fr); } .cred:nth-child(2n) { border-right: none; } .cred { border-bottom: 1px solid var(--line); } }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-8) 0 var(--space-4);
}
.footer .shell { max-width: 1440px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: var(--space-6);
}
.footer h3 {
  color: var(--paper);
  font-size: 64px;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  margin-bottom: 24px;
}
.footer .col-title {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(244, 239, 230, 0.5);
  margin-bottom: 18px;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a, .footer .addr {
  font-size: var(--text-sm);
  color: rgba(244, 239, 230, 0.85);
  cursor: pointer;
}
.footer ul a:hover { color: var(--terra); }
.footer .addr { line-height: 1.7; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  color: rgba(244, 239, 230, 0.5);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer h3 { font-size: 44px; grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ---------- COFFEES PAGE ---------- */
.page-head {
  padding: var(--space-12) 0 var(--space-6);
  border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 7fr 5fr; gap: 80px; align-items: end;
}
.page-head h1 {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
}
.page-head h1 em { font-style: italic; color: var(--terra); }
.page-head .meta {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
@media (max-width: 900px) { .page-head { grid-template-columns: 1fr; gap: 24px; padding: 64px 0 32px; } }

.filter-bar {
  position: sticky; top: 80px; z-index: 30;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 18px 80px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-size: var(--text-sm);
  flex-wrap: wrap;
}
@media (max-width: 768px) { .filter-bar { padding: 14px 24px; } }
.filter-group { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.chip {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 200ms var(--ease);
  background: transparent;
  color: var(--ink-muted);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip.terra.active { background: var(--terra); border-color: var(--terra); }
.filter-label {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-right: 6px;
}
.sort-select {
  font: inherit;
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px 32px 8px 14px;
  border-radius: 999px;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%231C1814' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.lot-list { padding: var(--space-3) 0 var(--space-12); }
.lot-row {
  display: grid;
  grid-template-columns: 200px 2fr 3fr 1fr auto;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: background 240ms var(--ease);
  position: relative;
}
.lot-row:hover { background: var(--paper-deep); }
.lot-row:hover .lot-row-arrow { transform: translateX(6px); color: var(--terra); }
.lot-row .ph { aspect-ratio: 5/4; height: 132px; width: auto; }
.lot-row .estate-block .estate {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 30px;
  font-weight: 400;
  font-variation-settings: "opsz" 72;
  line-height: 1.1;
}
.lot-row .estate-block .region {
  font-size: var(--text-sm);
  color: var(--ink-muted);
  margin-top: 4px;
}
.lot-row .specs-block {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
  font-size: var(--text-sm);
}
.lot-row .specs-block .k {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted);
}
.lot-row .specs-block .v { color: var(--ink); }
.lot-row .score-block {
  text-align: right;
}
.lot-row .score-block .score {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--terra);
  font-variation-settings: "opsz" 96;
  line-height: 1;
}
.lot-row .score-block .label {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted);
  margin-top: 6px;
}
.lot-row-arrow {
  font-size: 20px;
  color: var(--ink-muted);
  transition: transform 240ms var(--ease), color 240ms var(--ease);
  padding: 0 16px 0 0;
}
.lot-row .badge-gold {
  position: absolute; top: 24px; right: 0;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 3px 8px;
}
@media (max-width: 1100px) {
  .lot-row { grid-template-columns: 140px 2fr 1fr auto; }
  .lot-row .specs-block { display: none; }
  .lot-row .ph { height: 100px; }
}
@media (max-width: 700px) {
  .lot-row { grid-template-columns: 100px 1fr auto; gap: 16px; }
  .lot-row-arrow { display: none; }
  .lot-row .ph { height: 80px; }
  .lot-row .estate-block .estate { font-size: 22px; }
}

/* ---------- LOT DETAIL ---------- */
.lot-back {
  padding: 28px 0 0;
  font-size: var(--text-sm);
  color: var(--ink-muted);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
}
.lot-back:hover { color: var(--terra); }

.lot-hero {
  display: grid; grid-template-columns: 6fr 5fr;
  gap: 80px;
  padding: var(--space-6) 0 var(--space-12);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 1000px) { .lot-hero { grid-template-columns: 1fr; gap: 40px; } }

.lot-hero .ph { aspect-ratio: 4/5; }
.lot-hero .data .eyebrow { margin-bottom: 14px; }
.lot-hero .data h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  margin-bottom: 12px;
}
.lot-hero .data .region {
  font-size: var(--text-base);
  color: var(--ink-muted);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
}

.spec-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: var(--space-4) 0;
}
.spec-grid .spec {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
}
.spec-grid .spec:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
.spec-grid .spec:nth-child(even) { padding-left: 24px; }
.spec-grid .k {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.spec-grid .v {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 18px;
  font-variation-settings: "opsz" 72;
  text-align: right;
}
.spec-grid .v.terra { color: var(--terra); font-size: 20px; }

.tasting-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 30px;
  line-height: 1.3;
  font-variation-settings: "opsz" 96;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: var(--space-3) 0 var(--space-4);
  position: relative;
}
.tasting-quote .marks {
  font-style: normal;
  color: var(--terra);
  font-size: 60px;
  line-height: 0;
  position: relative;
  top: 16px;
  margin-right: 8px;
}

.cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: var(--space-3); }

/* about producer */
.estate-essay {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 80px;
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--line);
}
.estate-essay h2 {
  font-size: 48px;
  font-weight: 300;
}
.estate-essay h2 em { font-style: italic; color: var(--terra); }
.estate-essay .body {
  display: flex; flex-direction: column; gap: 20px;
  font-size: var(--text-base);
  line-height: 1.75;
  max-width: 62ch;
}
.estate-essay .body p:first-child::first-letter {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 80px;
  float: left;
  line-height: 0.9;
  margin-right: 8px;
  color: var(--terra);
  font-variation-settings: "opsz" 144;
}
.producer-card {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 32px; padding-top: var(--space-4);
  margin-top: var(--space-3);
  border-top: 1px solid var(--line);
  align-items: start;
}
.producer-card .ph { aspect-ratio: 1/1; border-radius: 50%; }
.producer-card .role {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.producer-card .name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  font-variation-settings: "opsz" 72;
  margin-bottom: 12px;
}
@media (max-width: 900px) { .estate-essay { grid-template-columns: 1fr; gap: 32px; padding: var(--space-8) 0; } }

/* ---------- ORIGINS ---------- */
.origins-hero {
  position: relative;
  padding: var(--space-12) 80px var(--space-8);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.origins-hero h1 {
  font-size: clamp(56px, 8vw, 128px);
  font-weight: 300;
  max-width: 14ch;
  font-variation-settings: "opsz" 144;
}
.origins-hero h1 em { font-style: italic; color: var(--terra); }
.origins-hero .lead {
  margin-top: var(--space-4);
  font-size: var(--text-lg);
  max-width: 50ch;
  color: var(--ink-muted);
  line-height: 1.55;
}
.origins-hero .ph {
  margin-top: var(--space-6);
  aspect-ratio: 21/9;
  width: 100%;
}
@media (max-width: 768px) { .origins-hero { padding: 64px 24px 48px; } }

.region-feature {
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--line);
}
.region-feature .top {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: var(--space-6);
}
.region-feature .num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.region-feature h2 {
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "opsz" 144;
}
.region-feature .stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  border-top: 1px solid var(--line);
}
.region-feature .stats .stat {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.region-feature .stats .stat:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
.region-feature .stats .stat:nth-child(even) { padding-left: 24px; }
.region-feature .stats .k { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 4px; }
.region-feature .stats .v {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 400;
  font-variation-settings: "opsz" 72;
}
.region-feature .body {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 80px;
}
.region-feature .copy {
  font-size: var(--text-base);
  line-height: 1.75;
  max-width: 62ch;
  display: flex; flex-direction: column; gap: 18px;
}
.region-feature .gallery {
  display: grid; grid-template-columns: 2fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
}
.region-feature .gallery .ph:first-child { grid-row: 1 / 3; }
@media (max-width: 1000px) {
  .region-feature .top, .region-feature .body { grid-template-columns: 1fr; gap: 32px; }
  .region-feature .gallery { grid-template-rows: 240px; grid-template-columns: 1fr; }
  .region-feature .gallery .ph:first-child { grid-row: auto; aspect-ratio: 16/9; }
}

/* ---------- ABOUT ---------- */
.about-intro {
  padding: var(--space-12) 0 var(--space-8);
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 80px;
  border-bottom: 1px solid var(--line);
}
.about-intro p {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 1.3;
  font-variation-settings: "opsz" 96;
}
.about-intro p em { font-style: italic; color: var(--terra); }
@media (max-width: 900px) { .about-intro { grid-template-columns: 1fr; gap: 24px; } .about-intro p { font-size: 26px; } }

.founders-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
.founder .ph { aspect-ratio: 4/5; margin-bottom: 24px; }
.founder .name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 400;
  font-variation-settings: "opsz" 72;
}
.founder .role {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
  margin: 6px 0 16px;
}
.founder .bio { font-size: var(--text-base); line-height: 1.75; max-width: 56ch; margin-bottom: 12px; }
.founder .email { color: var(--terra); border-bottom: 1px solid var(--terra); padding-bottom: 1px; }
@media (max-width: 900px) { .founders-grid { grid-template-columns: 1fr; gap: 56px; } }

.about-copy p { font-size: var(--text-base); line-height: 1.75; max-width: 60ch; margin-bottom: 20px; }
.about-copy p:last-child { margin-bottom: 0; }

.soon { padding: var(--space-12) 0 var(--space-12); max-width: 1080px; }
.soon-eyebrow { font-family: 'Inter Tight', sans-serif; font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 32px; }
.soon-h1 { font-family: 'Fraunces', serif; font-weight: 300; font-variation-settings: 'opsz' 144; font-size: clamp(56px, 7vw, 104px); line-height: 0.98; letter-spacing: -0.025em; color: var(--ink); margin-bottom: 40px; }
.soon-h1 em { font-style: italic; color: var(--terra); font-weight: 300; }
.soon-lead { font-size: var(--text-lg); line-height: 1.65; max-width: 60ch; color: var(--ink-muted); margin-bottom: 80px; }
.soon-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 80px; padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 56px; }
.soon-grid .k { font-family: 'Inter Tight', sans-serif; font-size: var(--text-xs); font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 12px; }
.soon-grid .v { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; font-size: 22px; color: var(--ink); line-height: 1.4; }
.soon-cta { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
@media (max-width: 720px) { .soon-grid { grid-template-columns: 1fr; gap: 32px; } }

.ops-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ops-grid .op {
  padding: var(--space-4);
  border-right: 1px solid var(--line);
}
.ops-grid .op:last-child { border-right: none; }
.ops-grid .op .k { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 12px; }
.ops-grid .op .v { font-family: 'Fraunces', serif; font-weight: 400; font-size: 22px; font-variation-settings: "opsz" 72; line-height: 1.2; }
.ops-grid .op .extra { font-size: var(--text-sm); color: var(--ink-muted); margin-top: 8px; }
@media (max-width: 900px) {
  .ops-grid { grid-template-columns: repeat(2, 1fr); }
  .ops-grid .op:nth-child(2n) { border-right: none; }
  .ops-grid .op { border-bottom: 1px solid var(--line); }
}

/* ---------- INQUIRE ---------- */
.inquire-grid {
  display: grid; grid-template-columns: 7fr 5fr;
  gap: 80px;
  padding: var(--space-8) 0 var(--space-12);
}
@media (max-width: 1000px) { .inquire-grid { grid-template-columns: 1fr; gap: 48px; } }

.form-stack { display: flex; flex-direction: column; gap: var(--space-3); max-width: 720px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.field input, .field textarea, .field select {
  font: inherit;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  color: var(--ink);
  font-size: var(--text-base);
  border-radius: 0;
  width: 100%;
  transition: border-color 200ms var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-bottom-color: var(--terra);
}
.field textarea { resize: vertical; min-height: 130px; }
.interest-pills { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 4px; }

.contact-block {
  padding: var(--space-4);
  background: var(--paper-deep);
}
.contact-block h3 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 36px;
  margin-bottom: var(--space-3);
}
.contact-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .k { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px; }
.contact-row .v { font-family: 'Fraunces', serif; font-weight: 400; font-size: 18px; font-variation-settings: "opsz" 72; line-height: 1.4; }
.contact-row .v.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 14px; letter-spacing: 0.04em; }
.open-indicator {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.open-indicator .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--moss);
}
.open-indicator.closed .dot { background: var(--ink-muted); }

/* fade-in on mount */
.fade-up { animation: fadeUp 600ms var(--ease) both; }
.fade-up.d1 { animation-delay: 80ms; }
.fade-up.d2 { animation-delay: 160ms; }
.fade-up.d3 { animation-delay: 240ms; }
.fade-up.d4 { animation-delay: 320ms; }
.fade-up.d5 { animation-delay: 400ms; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- TWEAKS PANEL ---------- */
.tweaks-panel {
  position: fixed; bottom: 24px; right: 24px;
  width: 280px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 16px 18px;
  font-size: var(--text-sm);
  z-index: 200;
  box-shadow: 0 24px 60px rgba(28, 24, 20, 0.18);
}
.tweaks-panel h4 { font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 12px; }
.tweaks-panel .tw-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--line); }
.tweaks-panel .tw-row:last-child { border-bottom: none; }
.tweaks-panel .swatches { display: flex; gap: 6px; }
.tweaks-panel .sw { width: 18px; height: 18px; border-radius: 50%; cursor: pointer; border: 1px solid var(--line); }
.tweaks-panel .sw.active { box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px var(--ink); }
.tweaks-panel .close { position: absolute; top: 8px; right: 10px; cursor: pointer; font-size: 20px; color: var(--ink-muted); }
