/* FRANCIS - Atlantic Chardonnay Gin · Mobile-first responsive build
   Breakpoints (min-width):
     base    →   0–767px   (mobile, designed at 375px)
     md      → 768px+      (tablet)
     lg      → 1080px+     (small desktop)
     xl      → 1440px+     (desktop)
*/

:root {
  --ink: #f4ead6;
  --ink-soft: #d8c9a7;
  --ink-dim: #8c7e63;
  --ink-faint: #5a5040;
  --gold: #c6a36a;
  --gold-bright: #e6c989;
  --gold-deep: #8a6a38;
  --sea: #4f7a72;
  --bg: #050403;
  --bg-soft: #0c0a07;
  --bg-card: #0f0d09;
  --line: rgba(198, 163, 106, 0.18);
  --line-strong: rgba(198, 163, 106, 0.35);
  --rule: rgba(244, 234, 214, 0.08);

  /* Stable responsive type scale - NO viewport units */
  --fs-display: 56px;      /* FRANCIS hero wordmark - mobile */
  --fs-h2: 32px;           /* section titles - mobile */
  --fs-h2-origin: 38px;
  --fs-body: 16px;
  --fs-body-sm: 14px;
  --fs-eyebrow: 11px;
  --fs-mono: 10px;

  /* Layout tokens */
  --pad-x: 22px;
  --pad-section: 72px;
  --gap-section: 40px;

  /* Hit targets */
  --tap: 48px;

  /* Safe areas */
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
body {
  font-family: 'Jost', 'Manrope', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  font-size: var(--fs-body);
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #0a0805; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  margin: 0;
}

.wordmark {
  font-family: 'Cinzel', 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.4;
}

a { color: inherit; text-decoration: none; }

/* ============================================================
   NAV - mobile sticky bar with menu; desktop horizontal links
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(14px + var(--safe-top)) var(--pad-x) 14px;
  background: linear-gradient(to bottom, rgba(5,4,3,0.75), rgba(5,4,3,0));
  transition: background .3s ease, border .3s ease, padding .3s ease;
  border-bottom: 1px solid transparent;
  min-height: 56px;
}
.nav.scrolled {
  background: rgba(5,4,3,0.94);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-brand {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-brand .dot { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 4px; }

/* Desktop horizontal links - hidden on mobile, restored at 768+ */
.nav-links { display: none; }

.lang-switch {
  display: flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
}
.lang-switch button {
  background: transparent;
  border: 0;
  color: var(--ink-faint);
  font: inherit;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 8px;
  letter-spacing: 0.2em;
  transition: color .2s;
  min-height: 44px;
  min-width: 36px;
}
.lang-switch button.active { color: var(--gold); }
.lang-switch .sep { color: var(--ink-faint); opacity: 0.5; }

/* Mobile menu trigger */
.nav-menu-btn {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 4px;
  transition: border-color .2s, background .2s;
}
.nav-menu-btn:hover, .nav-menu-btn:focus-visible {
  border-color: var(--gold);
  outline: none;
}
.nav-menu-btn .ic {
  display: flex; flex-direction: column; gap: 4px;
}
.nav-menu-btn .ic span {
  display: block; width: 18px; height: 1px; background: var(--ink);
  transition: transform .25s, opacity .25s;
}
.nav-menu-btn[aria-expanded="true"] .ic span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-menu-btn[aria-expanded="true"] .ic span:nth-child(2) { opacity: 0; }
.nav-menu-btn[aria-expanded="true"] .ic span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Mobile menu sheet */
.nav-sheet {
  position: fixed;
  top: 0; right: 0;
  width: min(86vw, 360px);
  height: 100dvh;
  background: #07060399;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-left: 1px solid var(--rule);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
  z-index: 79;
  padding: 100px 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-sheet.open { transform: translateX(0); }
.nav-sheet a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  min-height: 48px;
}
.nav-sheet a .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.nav-sheet-foot {
  margin-top: auto;
  padding-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.5;
}
.nav-scrim {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 78;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.nav-scrim.open { opacity: 1; pointer-events: auto; }

/* ============================================================
   AGE GATE - mobile-first
   ============================================================ */
.gate {
  position: fixed; inset: 0;
  z-index: 1000;
  background: #030302;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 32px 22px calc(32px + var(--safe-bottom));
  text-align: center;
  animation: fade-in .5s ease both;
  overflow-y: auto;
}
.gate::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(198,163,106,0.07), transparent 55%),
    radial-gradient(ellipse at 50% 90%, rgba(79,122,114,0.05), transparent 55%);
  pointer-events: none;
}
.gate-inner {
  position: relative;
  max-width: 520px;
  width: 100%;
}
.gate-mark {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.36em;
  color: var(--gold);
  font-size: 11px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.gate-mark .line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}
.gate h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
  text-wrap: balance;
}
.gate p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 auto 28px;
  max-width: 360px;
}
.gate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

/* ============================================================
   BUTTONS - 48px+ min height on mobile
   ============================================================ */
.btn {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 16px 24px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 400;
  min-height: var(--tap);
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}
.btn:hover { background: var(--gold); color: #0a0805; }
.btn-primary { background: var(--gold); color: #0a0805; }
.btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn-ghost { border-color: var(--rule); color: var(--ink-soft); }
.btn-ghost:hover { border-color: var(--gold); background: transparent; color: var(--gold); }
.btn-block { width: 100%; }
.btn-arrow::after { content: '→'; font-size: 14px; margin-left: 2px; }

.gate-fine {
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.gate.denied .gate-actions { display: none; }
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-up {
  animation: fade-up .7s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO - compact mobile, expansive desktop
   ============================================================ */
.hero {
  position: relative;
  padding: 80px var(--pad-x) 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 70% 60%, rgba(79,122,114,0.10), transparent 60%),
    radial-gradient(ellipse 80% 50% at 30% 90%, rgba(138, 106, 56, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-text {
  position: relative;
  z-index: 2;
  padding-top: 18px;
}
.hero-eyebrow {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow .rule { width: 24px; height: 1px; background: var(--gold); opacity: 0.6; }

.hero h1.francis {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: var(--fs-display);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin: 0 0 10px;
  white-space: nowrap;
  background: linear-gradient(180deg, #f7eccf 0%, #e6c989 55%, #c6a36a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 18px;
  margin: 6px 0 14px;
  letter-spacing: 0.04em;
}
.hero .support {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 300;
  margin: 0 0 22px;
  text-wrap: pretty;
  max-width: 32ch;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

/* Bottle stage */
.hero-stage {
  position: relative;
  z-index: 1;
  margin: 24px calc(var(--pad-x) * -0.4) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  max-height: 620px;
}
.bottle-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottle-media {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.bp-frame {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 420px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #030302;
}
.bp-frame::before {
  content: '';
  position: absolute; inset: 8px;
  border: 1px solid var(--line);
  pointer-events: none;
  z-index: 2;
}
.site-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-product-photo {
  padding: 0;
  transform: scale(1.14);
  transform-origin: center 52%;
}

.bottle-glow {
  position: absolute;
  inset: -10% -20%;
  z-index: -1;
  background:
    radial-gradient(ellipse 40% 50% at 50% 55%, rgba(138, 106, 56, 0.28) 0%, transparent 60%);
  filter: blur(36px);
  pointer-events: none;
}

/* Next-section peek strip beneath hero */
.hero-peek {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  padding: 18px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--rule);
}
.hero-peek .peek-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-peek .peek-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
  margin-top: 4px;
  line-height: 1.4;
}
.hero-peek .arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
  transition: border-color .2s, color .2s, background .2s;
}
.hero-peek .arrow:hover { border-color: var(--gold); }
.hero-peek .arrow .down {
  display: inline-block;
  animation: arrow-pulse 2.4s ease-in-out infinite;
}
@keyframes arrow-pulse {
  0%, 100% { transform: translateY(-2px); opacity: 0.6; }
  50% { transform: translateY(2px); opacity: 1; }
}

/* ============================================================
   SECTIONS - vertical, tight padding on mobile
   ============================================================ */
.section {
  position: relative;
  padding: var(--pad-section) var(--pad-x);
  max-width: 1400px;
  margin: 0 auto;
}
.section-divider {
  width: calc(100% - var(--pad-x) * 2);
  max-width: 1400px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-strong), transparent);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: var(--fs-h2);
  line-height: 1.08;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 18px;
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.section-body {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  text-wrap: pretty;
}

/* Story */
.story {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.story-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #0a0805;
  overflow: hidden;
  border: 1px solid var(--rule);
  order: -1;
}

/* Tasting profile - vertical list */
.tasting {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  cursor: default;
}
.note-num {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
}
.note-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
}
.note-line { display: none; }

/* Perfect serve */
.serve {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.serve-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--rule);
}
.serve-recipe {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
.recipe-item {
  border-top: 1px solid var(--rule);
  padding-top: 12px;
}
.recipe-item .label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.recipe-item .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.3;
}

/* Bottle detail */
.detail {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.detail-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 28px;
}
.fact {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.fact .k {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.fact .v {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.3;
}
.detail-image {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  order: -1;
}

/* Origin */
.origin {
  text-align: center;
  padding: var(--pad-section) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.origin::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(79,122,114,0.10), transparent 60%);
  pointer-events: none;
}
.origin .inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.origin .section-title { font-size: var(--fs-h2-origin); }
.coordinates {
  margin-top: 32px;
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 22px;
  row-gap: 10px;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
}
.coordinates > div {
  display: contents;
}
.coordinates .label {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: right;
  align-self: center;
  white-space: nowrap;
}
.coordinates .val {
  text-align: left;
  white-space: nowrap;
}

/* ============================================================
   ENQUIRY - single-column on mobile
   ============================================================ */
.enquiry {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(138, 106, 56, 0.12), transparent 55%),
    var(--bg);
  padding: var(--pad-section) var(--pad-x);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.enquiry-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.enquiry-side .section-title { font-size: 30px; }
.business-note {
  max-width: 340px;
  margin: 0;
  padding-left: 16px;
  border-left: 1px solid var(--gold);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}
.enquiry-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.4;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-size: 16px; /* prevents iOS zoom */
  font-weight: 300;
  padding: 14px 14px;
  outline: none;
  transition: border-color .25s, background .25s;
  border-radius: 0;
  min-height: 52px;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23c6a36a' stroke-width='1.4' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 38px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(198,163,106,0.03);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-faint); }
.field select option { background: #0c0a07; color: var(--ink); }
.field textarea { resize: vertical; min-height: 120px; font-family: inherit; line-height: 1.5; }
.field.error input,
.field.error select,
.field.error textarea {
  border-color: #c95a4a;
  background: rgba(201,90,74,0.04);
}
.field-error {
  font-size: 12px;
  color: #d97565;
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.checks { display: grid; gap: 14px; margin-top: 6px; }
.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  letter-spacing: 0.01em;
  padding: 8px 0;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}
.check input { appearance: none; -webkit-appearance: none; margin: 0; position: absolute; opacity: 0; }
.check .box {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
  transition: all .2s;
}
.check input:checked + .box {
  background: var(--gold);
  border-color: var(--gold);
}
.check input:checked + .box::after {
  content: ''; width: 10px; height: 10px; background: #050403;
  clip-path: polygon(14% 44%, 0 60%, 50% 100%, 100% 16%, 86% 0, 44% 71%);
}
.check input:focus-visible + .box {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}
.check.error .box { border-color: #c95a4a; }
.check .err-suffix { color: #d97565; margin-left: 6px; font-size: 13px; }

.submit-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 6px;
}
.fine-note {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.65;
}
.form-status {
  padding: 20px 20px;
  border: 1px solid var(--line-strong);
  font-size: 14px;
  color: var(--ink);
  background: rgba(198,163,106,0.06);
  letter-spacing: 0.01em;
  line-height: 1.55;
}
.form-status .success-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.form-status.error {
  border-color: #c95a4a;
  background: rgba(201, 90, 74, 0.08);
  color: #f1c8c0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 56px var(--pad-x) calc(40px + var(--safe-bottom));
  border-top: 1px solid var(--rule);
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-meta { font-size: 13px; color: var(--ink-soft); line-height: 1.85; }
.footer-meta .descr {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}
.footer-meta .resp {
  margin-top: 12px;
  color: var(--gold);
  letter-spacing: 0.05em;
  font-size: 12px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 14px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  padding: 8px 0;
  transition: color .2s;
  min-height: 36px;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1400px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; flex-direction: column;
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  gap: 14px;
}
.responsibility {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  text-transform: none;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  min-height: 100vh;
  padding: calc(104px + var(--safe-top)) var(--pad-x) 76px;
}
.legal-shell {
  max-width: 920px;
  margin: 0 auto;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.legal-back::before {
  content: '←';
  margin-right: 10px;
  font-size: 14px;
}
.legal-page h1 {
  font-size: 42px;
  line-height: 1.05;
  margin: 14px 0 20px;
  color: var(--ink);
}
.legal-intro {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 34px;
}
.legal-company {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  margin-bottom: 34px;
}
.legal-company h2,
.legal-content h2 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.legal-company p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}
.legal-content section {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.legal-content p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  line-height: 1.75;
}
.legal-content p:last-child { margin-bottom: 0; }

/* Reveal animations on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].visible {
  opacity: 1; transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Decorative rope/knot motif */
.rope-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0;
  color: var(--gold);
  font-size: 14px;
}
.rope-divider .line {
  height: 1px;
  width: 48px;
  background: var(--gold);
  opacity: 0.45;
}
.knot {
  display: inline-block;
  width: 22px; height: 14px;
  position: relative;
}
.knot::before, .knot::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 12px; height: 12px;
  top: 1px;
}
.knot::before { left: 0; }
.knot::after { right: 0; left: auto; }

/* ============================================================
   TABLET - 768px+
   ============================================================ */
@media (min-width: 768px) {
  :root {
    --pad-x: 40px;
    --pad-section: 100px;
    --fs-display: 88px;
    --fs-h2: 44px;
    --fs-h2-origin: 56px;
  }

  .nav { padding-top: calc(16px + var(--safe-top)); padding-bottom: 16px; }
  .nav-brand { font-size: 14px; letter-spacing: 0.3em; }

  /* Hero becomes side-by-side at tablet */
  .hero {
    padding: 100px var(--pad-x) 0;
    min-height: 100vh;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    flex: 1;
  }
  .hero-text { padding-top: 0; }
  .hero h1.francis { font-size: var(--fs-display); }
  .hero .sub { font-size: 22px; }
  .hero .support { font-size: 24px; margin-bottom: 28px; }
  .hero-actions {
    flex-direction: row;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn-block { width: auto; }

  .hero-stage {
    margin: 0;
    aspect-ratio: 5 / 7;
    max-height: none;
    height: 70vh;
  }
  .bp-frame { max-width: 380px; aspect-ratio: 320 / 580; }
  .hero-product-photo { transform: scale(1.18); }

  .hero-peek {
    margin-top: 32px;
    padding: 22px 0 36px;
  }
  .hero-peek .peek-title { font-size: 17px; }

  /* Sections */
  .section-title { letter-spacing: -0.01em; }

  .story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .story-image { order: 0; aspect-ratio: 4/5; }

  .tasting {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 50px;
    align-items: start;
  }
  .note {
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    padding: 22px 0;
    align-items: center;
  }
  .note-text { font-size: 24px; }
  .note-line {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--ink-faint);
    transition: background .3s, width .3s;
  }
  .note:hover .note-line { width: 56px; background: var(--gold-bright); }

  .serve {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .serve-image { aspect-ratio: 4/5; }

  .detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .detail-image { order: 0; aspect-ratio: 4/5; }
  .detail-facts { gap: 28px 36px; margin-top: 36px; }
  .fact .v { font-size: 20px; }

  .coordinates {
    display: flex;
    flex-direction: row;
    gap: 40px;
    font-size: 11px;
    justify-content: center;
  }
  .coordinates > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  .coordinates .label {
    display: block;
    text-align: center;
  }

  .enquiry-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
  }
  .enquiry-side .section-title { font-size: 40px; }
  .enquiry-form {
    grid-template-columns: 1fr 1fr;
    gap: 22px 24px;
  }
  .field.full { grid-column: 1 / -1; }
  .checks { grid-column: 1 / -1; }
  .submit-row {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }
  .submit-row .btn { flex-shrink: 0; }
  .fine-note { max-width: 480px; }
  .form-status { grid-column: 1 / -1; }

  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
  }
  .footer-cols { display: contents; }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .legal-page {
    padding-top: calc(132px + var(--safe-top));
    padding-bottom: 110px;
  }
  .legal-page h1 { font-size: 58px; }
  .legal-intro { font-size: 19px; }

  .gate-actions { flex-direction: row; justify-content: center; }
  .gate h1 { font-size: 36px; }

  /* Mobile menu chrome hidden at tablet+ where space allows */
  .nav-menu-btn { display: none; }
  .nav-sheet, .nav-scrim { display: none; }
  .nav-links {
    display: flex;
    gap: 28px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .nav-links a {
    transition: color .25s ease;
    padding: 8px 0;
  }
  .nav-links a:hover { color: var(--gold-bright); }
}

/* ============================================================
   SMALL DESKTOP - 1080px+
   ============================================================ */
@media (min-width: 1080px) {
  :root {
    --pad-section: 130px;
    --fs-display: 110px;
    --fs-h2: 56px;
    --fs-h2-origin: 72px;
  }
  .nav { padding-left: 56px; padding-right: 56px; }
  .nav-links { gap: 36px; }

  .hero { padding-left: 56px; padding-right: 56px; padding-top: 120px; }
  .hero-grid { gap: 60px; grid-template-columns: 1.1fr 1fr; }
  .hero .support { font-size: 28px; }
  .hero-stage { height: 82vh; max-height: 880px; }
  .bp-frame { max-width: min(500px, 100%); aspect-ratio: 360 / 660; }
  .hero-product-photo { transform: scale(1.22); }

  .section { padding-left: 56px; padding-right: 56px; }
  .footer { padding-left: 56px; padding-right: 56px; }
  .enquiry { padding-left: 56px; padding-right: 56px; }
  .origin { padding-left: 56px; padding-right: 56px; }

  .story { gap: 90px; }
  .serve { gap: 90px; }
  .detail { gap: 90px; }
  .tasting { gap: 70px; }
}

/* ============================================================
   DESKTOP - 1440px+
   ============================================================ */
@media (min-width: 1440px) {
  :root {
    --fs-display: 120px;
    --fs-h2: 60px;
  }
  .hero { padding-left: 72px; padding-right: 72px; }
  .bp-frame { max-width: min(540px, 100%); }
  .section { padding-left: 72px; padding-right: 72px; }
  .enquiry { padding-left: 72px; padding-right: 72px; }
  .footer { padding-left: 72px; padding-right: 72px; }
  .origin { padding-left: 72px; padding-right: 72px; }
}
