/* ============================================
   BROUGH BROTHERS v3 — Heritage Premium
   Inspired by Uncle Nearest's editorial aesthetic
   ============================================ */

:root {
  --cream:        #f4ecd8;       /* paper background */
  --cream-light:  #faf5e8;
  --cream-dark:   #e8dcc0;
  --ink:          #1a1410;       /* near-black brown */
  --ink-soft:     #3d3225;
  --ink-mute:     #6b5a44;
  --gold:         #b8893e;
  --gold-deep:    #8a6428;
  --gold-light:   #d4af6a;
  --wine:         #6e2b2b;
  --wine-deep:    #4a1c1c;
  --rule:         rgba(26, 20, 16, 0.15);

  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lora', Georgia, serif;
  --font-label:   'Cormorant Garamond', Georgia, serif;

  --max-width: 1240px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Subtle paper texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.32 0 0 0 0 0.2 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-deep); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--wine); }
button { font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.05;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 400; }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }
.script {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--wine);
}
.smallcaps {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.kicker {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.kicker::before, .kicker::after {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.kicker.left::before { display: none; }
.kicker.left::after { display: none; }

/* Decorative flourish divider */
.flourish {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem;
  margin: 2.5rem 0;
}
.flourish svg { color: var(--gold); }
.flourish::before, .flourish::after {
  content: ''; flex: 1; max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Drop cap */
.dropcap::first-letter {
  font-family: var(--font-display);
  font-size: 5.5rem;
  float: left;
  line-height: 0.85;
  padding: 0.4rem 0.8rem 0 0;
  color: var(--wine);
  font-weight: 400;
  font-style: italic;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
section { padding: 7rem 0; position: relative; z-index: 2; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  background: rgba(244, 236, 216, 0);
  transition: all 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(244, 236, 216, 0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--rule);
  padding: 0.8rem 2rem;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.nav-links {
  display: flex; gap: 2rem; list-style: none;
  font-family: var(--font-label);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-links a { color: var(--ink); position: relative; padding: 0.3rem 0; }
.nav-links a:hover { color: var(--gold-deep); }
.nav-links a.active { color: var(--gold-deep); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 50%;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
}
.nav-logo {
  text-align: center;
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1;
}
.nav-logo .top {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.3rem;
  font-family: var(--font-label);
  font-weight: 600;
}
.nav-logo .name {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.nav-logo .name em { font-style: italic; font-weight: 500; }
.nav-right {
  display: flex; justify-content: flex-end; gap: 1rem; align-items: center;
}
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--ink);
  padding: 0.5rem 0.8rem;
  color: var(--ink); font-size: 0.7rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  font-family: var(--font-label);
  font-weight: 600;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
  position: relative;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--wine);
  color: var(--cream);
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-deep); color: var(--cream); }
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  padding: 9rem 0 5rem;
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(184, 137, 62, 0.12), transparent 55%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-content { position: relative; }
.hero-content .estab {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--wine);
  display: block;
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 1;
  letter-spacing: -0.015em;
}
.hero-content h1 .em {
  font-style: italic;
  color: var(--wine);
  font-weight: 400;
}
.hero-content .lede {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 480px;
  margin: 2rem 0 2.5rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual — vintage label illustration */
.hero-label {
  position: relative;
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
}
.hero-label .frame {
  position: absolute; inset: 0;
  border: 1px solid var(--gold);
  padding: 1rem;
}
.hero-label .frame::before, .hero-label .frame::after {
  content: '';
  position: absolute;
  border: 1px solid var(--gold);
}
.hero-label .frame::before { inset: 6px; }
.hero-label .frame::after { inset: 12px; border-color: var(--gold-deep); opacity: 0.5; }
.hero-label .label-inner {
  position: relative;
  z-index: 2;
  padding: 3rem;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
}
.hero-label .corner {
  position: absolute;
  width: 30px; height: 30px;
  color: var(--gold);
}
.hero-label .corner.tl { top: 18px; left: 18px; }
.hero-label .corner.tr { top: 18px; right: 18px; transform: rotate(90deg); }
.hero-label .corner.bl { bottom: 18px; left: 18px; transform: rotate(-90deg); }
.hero-label .corner.br { bottom: 18px; right: 18px; transform: rotate(180deg); }

/* Hero stamp */
.stamp {
  width: 130px; height: 130px;
  border: 2px solid var(--wine);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  color: var(--wine);
  font-family: var(--font-display);
  text-align: center;
  font-style: italic;
  transform: rotate(-8deg);
  flex-shrink: 0;
}
.stamp::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px dashed var(--wine);
  border-radius: 50%;
  opacity: 0.5;
}
.stamp .stamp-inner {
  display: flex; flex-direction: column;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-label);
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
}
.stamp .stamp-inner .big {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  margin: 0.2rem 0;
}

/* ---------- Page header ---------- */
.page-header {
  padding: 10rem 0 5rem;
  text-align: center;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.page-header h1 { font-size: clamp(3rem, 6vw, 5rem); }
.page-header .crumb {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.page-header .lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 1.5rem auto 0;
  line-height: 1.5;
}

/* ---------- Editorial story ---------- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.editorial.flipped {
  grid-template-columns: 1.2fr 1fr;
}
.editorial .text h2 { margin-bottom: 1.5rem; }
.editorial .text p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  line-height: 1.75;
}
.editorial .visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.editorial .visual svg { width: 100%; height: 100%; display: block; }
.editorial .visual .caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: var(--cream-light);
  padding: 0.8rem 1.2rem;
  border-left: 2px solid var(--gold);
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Awards strip ---------- */
.awards {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0;
  position: relative;
}
.awards .kicker { color: var(--gold); }
.awards .kicker::before, .awards .kicker::after { background: var(--gold); }
.awards h2 { color: var(--cream); }
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  text-align: center;
}
.medal {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.medal svg { width: 80px; height: 80px; color: var(--gold); }
.medal .award-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-light);
}
.medal .award-sub {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  font-weight: 600;
}

/* ---------- Bottle lineup ---------- */
.lineup {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.lineup .item {
  text-align: center;
  padding: 4rem 2rem;
  border-right: 1px solid var(--rule);
  transition: all 0.5s var(--ease);
  position: relative;
}
.lineup .item:last-child { border-right: none; }
.lineup .item:hover { background: var(--cream-light); }
.lineup .item .bottle {
  height: 320px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 18px 28px rgba(26, 20, 16, 0.18));
  transition: transform 0.5s var(--ease);
}
.lineup .item:hover .bottle { transform: translateY(-12px); }
.lineup .item .proof-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 1rem;
}
.lineup .item h3 {
  font-style: italic;
  margin-bottom: 0.8rem;
  font-size: 2rem;
}
.lineup .item p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 270px;
  margin: 0 auto 1.5rem;
  line-height: 1.55;
}
.lineup .item .price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--wine);
  margin-bottom: 1.5rem;
}

/* ---------- Pull quote ---------- */
.pullquote {
  background: var(--cream-light);
  padding: 7rem 0;
  text-align: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.pullquote::before, .pullquote::after {
  content: '"';
  position: absolute;
  font-family: var(--font-display);
  font-size: 12rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
  font-style: italic;
}
.pullquote::before { top: 2rem; left: 5%; }
.pullquote::after { bottom: -2rem; right: 5%; transform: scaleX(-1); }
.pullquote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
.pullquote cite {
  display: block;
  margin-top: 2.5rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-style: normal;
  font-weight: 600;
}

/* ---------- Brothers (portrait cards) ---------- */
.portraits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.portrait-card {
  text-align: center;
}
.portrait-frame {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid var(--gold);
}
.portrait-frame::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid var(--gold-deep);
  opacity: 0.4;
}
.portrait-frame .oval {
  width: 100%; height: 100%;
  background: var(--cream-light);
  border-radius: 50% / 40%;
  overflow: hidden;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.portrait-frame .oval svg { width: 100%; height: 100%; }
.portrait-card .role {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.portrait-card h3 {
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.portrait-card .sig {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--wine);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.portrait-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 280px;
  margin: 0 auto;
}

/* ---------- Timeline ---------- */
.tl {
  max-width: 820px;
  margin: 4rem auto 0;
  position: relative;
  padding-left: 3rem;
}
.tl::before {
  content: '';
  position: absolute;
  left: 0.4rem; top: 0; bottom: 0;
  width: 1px;
  background: var(--gold);
}
.tl-item {
  padding-left: 2rem;
  margin-bottom: 3.5rem;
  position: relative;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -2.7rem; top: 0.5rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1px var(--gold);
}
.tl-item .year {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--wine);
  display: block;
  margin-bottom: 0.4rem;
}
.tl-item h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.tl-item p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Tasting (Bourbon) ---------- */
.tasting {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.tasting-wheel {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
}
.tasting-wheel .wedge {
  cursor: pointer;
  transition: all 0.3s ease;
}
.tasting-wheel .wedge:hover { filter: brightness(1.1); }
.tasting-wheel .wedge.active { filter: brightness(1.15) drop-shadow(0 0 12px var(--gold)); }
.tasting-detail .note-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--wine);
  margin-bottom: 1.2rem;
}
.tasting-detail .note-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------- Specs ---------- */
.specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.spec {
  text-align: center;
  padding: 3rem 1rem;
  border-right: 1px solid var(--rule);
}
.spec:last-child { border-right: none; }
.spec .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.5rem;
  color: var(--wine);
  display: block;
  line-height: 1;
}
.spec .lbl {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 1rem;
  display: block;
  font-weight: 600;
}

/* ---------- Tour cards ---------- */
.tours {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.tour-card {
  background: var(--cream-light);
  border: 1px solid var(--rule);
  padding: 0;
  text-align: center;
  display: flex; flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative;
}
.tour-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(26, 20, 16, 0.08);
}
.tour-card .tour-head {
  background: var(--ink);
  color: var(--cream);
  padding: 2.5rem 2rem;
  position: relative;
}
.tour-card .tour-head::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  background: var(--ink);
  border-bottom-right-radius: 16px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.tour-card .tour-head .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.tour-card h3 {
  color: var(--cream);
  font-style: italic;
  font-size: 1.8rem;
}
.tour-card .duration {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 0.6rem;
  font-weight: 600;
}
.tour-card .tour-body {
  padding: 2.5rem 2rem 2rem;
  flex: 1;
  display: flex; flex-direction: column;
}
.tour-card .tour-body p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.tour-card .price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--wine);
  margin-bottom: 1.2rem;
}
.tour-card .price small {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold-deep);
  display: block;
  margin-top: 0.3rem;
  font-style: normal;
  font-weight: 600;
}

/* ---------- Cocktail cards ---------- */
.cocktails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.cocktail {
  background: var(--cream-light);
  border: 1px solid var(--rule);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.4s var(--ease);
}
.cocktail::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.cocktail:hover { border-color: var(--gold); transform: translateY(-4px); }
.cocktail:hover::before { opacity: 0.4; }
.cocktail .num-tag {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  font-weight: 600;
}
.cocktail .glass-svg {
  height: 180px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 12px 18px rgba(26, 20, 16, 0.12));
}
.cocktail h3 {
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.cocktail .recipe { text-align: left; }
.cocktail .recipe h4 {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 1.2rem 0 0.6rem;
  font-weight: 600;
}
.cocktail .recipe ul { list-style: none; }
.cocktail .recipe li {
  padding: 0.35rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
}
.cocktail .recipe p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  line-height: 1.55;
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 2.5rem; }
.contact-info .row {
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
}
.contact-info .row:last-child { border-bottom: 1px solid var(--rule); }
.contact-info .row .lbl {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 600;
}
.contact-info .row .val {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
}
.contact-info .row .val small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
}

.form { display: grid; gap: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.fld { display: flex; flex-direction: column; }
.fld label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.6rem;
  font-weight: 600;
}
.fld input, .fld select, .fld textarea {
  background: var(--cream-light);
  border: 1px solid var(--rule);
  padding: 0.9rem 1rem;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
}
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--cream-light);
}
.fld textarea { min-height: 140px; resize: vertical; font-family: var(--font-body); font-size: 1rem; font-style: normal; }

/* ---------- CTA ---------- */
.cta {
  background: var(--ink);
  color: var(--cream);
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center top, rgba(184, 137, 62, 0.18), transparent 60%);
}
.cta .container { position: relative; z-index: 2; }
.cta .kicker { color: var(--gold); }
.cta .kicker::before, .cta .kicker::after { background: var(--gold); }
.cta h2 {
  color: var(--cream);
  font-style: italic;
  margin: 1.5rem 0;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.cta h2 .em { color: var(--gold-light); }
.cta p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  color: var(--cream);
  opacity: 0.85;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--cream-light);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer h4 {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; font-family: var(--font-serif); font-style: italic; color: var(--ink-soft); }
.footer ul a { color: var(--ink-soft); }
.footer ul a:hover { color: var(--wine); }
.footer-brand .word {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--ink);
}
.footer-brand .word em { font-style: italic; display: block; color: var(--wine); }
.footer-brand p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin-top: 1.2rem;
  max-width: 320px;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid, .editorial, .editorial.flipped, .tasting, .contact {
    grid-template-columns: 1fr; gap: 3rem;
  }
  .lineup, .tours, .cocktails, .portraits { grid-template-columns: 1fr; }
  .lineup .item { border-right: none; border-bottom: 1px solid var(--rule); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(244, 236, 216, 0.98); backdrop-filter: blur(12px);
    flex-direction: column; padding: 2rem; gap: 1.5rem;
    border-bottom: 1px solid var(--rule); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-logo { text-align: left; }
  section { padding: 5rem 0; }
  .container { padding: 0 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Nav booking CTA */
.nav-links .nav-cta {
  border: 1px solid var(--gold-deep);
  color: var(--gold-deep);
  padding: 0.45rem 1rem;
}
.nav-links .nav-cta:hover { background: var(--gold-deep); color: var(--cream); }
.nav-links .nav-cta::after { display: none; }
@media (max-width: 768px) {
  .nav-links.open { position: static; grid-column: 1 / -1; order: 10; }
}
