/* ============================================================
   BARON'S CRAFT — Mobile Cocktail Bar
   Shared stylesheet
   ============================================================ */

:root {
  --bg: #0A0A0A;
  --bg-deep: #000000;
  --bg-elev: #141210;
  --gold: #C9A961;
  --gold-dark: #B8924A;
  --gold-deep: #8A6E32;
  --amber: #E8B86D;
  --cream: #F5EFE0;
  --cream-mute: #cdc6b6;
  --line: rgba(201, 169, 97, 0.28);
  --line-strong: rgba(201, 169, 97, 0.55);
  --shadow-glow: 0 0 40px rgba(232, 184, 109, 0.15);

  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --script: 'Allura', 'Great Vibes', cursive;
  --sans: 'Montserrat', system-ui, -apple-system, sans-serif;

  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--gold); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--amber); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ------------------ Typography ------------------ */

.serif { font-family: var(--serif); }
.script { font-family: var(--script); font-weight: 400; }
.sans { font-family: var(--sans); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.05;
}

h1 { font-size: clamp(48px, 7.2vw, 104px); }
h2 { font-size: clamp(36px, 4.6vw, 64px); }
h3 { font-size: clamp(24px, 2vw, 32px); }

.headline-mix .light { color: var(--cream); }
.headline-mix .gold { color: var(--gold); }

p { margin: 0 0 1em; color: var(--cream-mute); }

.lede {
  font-size: 22px;
  color: var(--cream);
}

/* ------------------ Diamond divider ------------------ */

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px auto;
  width: 100%;
  max-width: 420px;
}
.divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}
.divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.divider.tight { max-width: 140px; margin: 16px auto; }
.divider.wide  { max-width: 720px; }

/* ------------------ Buttons ------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 38px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.32em;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232, 184, 109, 0.25), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
}
.btn:hover {
  color: var(--bg);
  background: var(--gold);
  box-shadow: 0 0 36px rgba(232, 184, 109, 0.35);
}
.btn:hover::before { opacity: 1; }
.btn.ghost:hover { color: var(--amber); background: transparent; box-shadow: 0 0 24px rgba(232,184,109,.2); }

/* ------------------ Navigation ------------------ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 24px 0;
  transition: background .4s ease-in-out, padding .4s ease-in-out, border-color .4s ease-in-out;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 0;
  border-bottom-color: var(--line);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 160px;
  width: auto;
  transition: all .4s ease-in-out;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.7));
}
.nav.scrolled .nav-logo img { height: 78px; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--sans);
  white-space: nowrap;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right .35s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }

.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  width: 44px; height: 44px;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.hamburger span {
  display: block;
  width: 20px; height: 1px;
  background: var(--gold);
  margin: 5px auto;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 60;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open {
  display: flex;
  animation: menuSlideIn .35s ease forwards;
}
@keyframes menuSlideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.mobile-menu ul {
  list-style: none;
  padding: 0; margin: 0;
  text-align: center;
  display: flex; flex-direction: column;
  gap: 32px;
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color .3s ease;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 28px;
  width: 44px; height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  line-height: 1;
  padding: 0;
}
.mobile-menu-close:hover {
  background: var(--gold);
  color: var(--bg);
}

/* ------------------ Hero ------------------ */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #000;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 2; }
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #000000;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 120px 0 48px;
  width: 100%;
}
.hero-content { padding-top: 0; }
.hero-visual { align-self: start; margin-top: -48px; }

/* Ambient candlelit dust — sparkles + soft bokeh orbs */
.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: var(--candle, 1);
  transition: opacity .45s ease;
}
.hero-visual::before { opacity: var(--candle, 1); transition: opacity .45s ease; }
.hero-ambient .orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(232, 184, 109, 0.35) 0%,
    rgba(201, 169, 97, 0.15) 50%,
    transparent 80%);
  filter: blur(4px);
  opacity: 0.18;
}
.hero-ambient .spark {
  position: absolute;
  color: #C9A961;
  line-height: 1;
  text-shadow: 0 0 6px rgba(201, 169, 97, 0.5);
}
.hero-ambient .spark::before { content: "\2726"; }
.hero-ambient .twinkle {
  animation: spark-twinkle 3.6s ease-in-out infinite;
}
@keyframes spark-twinkle {
  0%, 100% { opacity: 0.30; transform: scale(0.9); }
  50%      { opacity: 0.80; transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ambient .twinkle { animation: none; }
}

.hero-content .eyebrow { margin-bottom: 18px; display: inline-block; }
.hero-brand-logo {
  display: block;
  width: clamp(220px, 26vw, 380px);
  height: auto;
  margin: -20px 0 28px -10px;
  filter: drop-shadow(0 0 40px rgba(232, 184, 109, 0.18));
}

.hero-content h1 {
  font-size: clamp(56px, 8.4vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
}
.hero-content h1 .light,
.hero-content h1 .gold { display: block; }
.hero-content h1 .gold { font-style: italic; font-weight: 300; }

/* ── Headline voice variants (Tweaks) ───────────────────────── */
/* Grand: monumental display — heavier, tighter, larger, upright */
body[data-voice="grand"] .hero-content h1 {
  font-size: clamp(64px, 9.6vw, 152px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.9;
}
body[data-voice="grand"] .hero-content h1 .gold {
  font-style: normal;
  font-weight: 500;
}
/* Modern: editorial uppercase sans */
body[data-voice="modern"] .hero-content h1 {
  font-family: var(--sans);
  font-size: clamp(40px, 5.6vw, 88px);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.06;
}
body[data-voice="modern"] .hero-content h1 .gold {
  font-style: normal;
  font-weight: 400;
}

.hero-content .subhead {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 6px;
}
.hero-content .script-tag {
  font-family: var(--script);
  font-size: clamp(34px, 3.6vw, 50px);
  color: var(--amber);
  line-height: 1;
  margin: 8px 0 36px;
  text-shadow: 0 0 24px rgba(232,184,109,0.35);
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  isolation: isolate;
  overflow: visible;
}
.hero-visual img { position: relative; z-index: 1; }
.hero-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  max-height: 74vh;
  /* box follows the photo's own aspect — no letterboxing ambiguity */
  object-fit: contain;
  object-position: center;
  /* Vivid, photographic whiskey — clear glass, rich amber.
     NO drop-shadows: they trace the photo's rectangular silhouette with a
     blurred halo, re-creating the very box we're dissolving. */
  filter:
    contrast(1.08)
    saturate(1.14)
    brightness(1.04);
  animation: cocktail-float 8s ease-in-out infinite;
  /* Seamless blend: a deep alpha feather is baked into the PNG itself —
     edges are literally transparent pixels, so every renderer shows the
     same soft dissolve. The radial mask below is a gentle assist. */
  -webkit-mask-image:
    radial-gradient(ellipse 88% 94% at center,
      #000 62%,
      rgba(0,0,0,0.4) 82%,
      transparent 100%);
          mask-image:
    radial-gradient(ellipse 88% 94% at center,
      #000 62%,
      rgba(0,0,0,0.4) 82%,
      transparent 100%);
}
@keyframes cocktail-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
/* Warm candle glow behind the cocktail — extends the scene's warmth outward.
   closest-side keeps the gradient fully inside its box: no cut-off rectangle. */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(ellipse closest-side at center,
      rgba(201, 169, 97, 0.18) 0%,
      rgba(184, 146, 74, 0.09) 30%,
      rgba(120, 80, 30, 0.04) 55%,
      transparent 78%);
  z-index: 0;
  filter: blur(12px);
  pointer-events: none;
}

/* ------------------ Sections ------------------ */

section { padding: 110px 0; position: relative; }
section.tight { padding: 70px 0; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head h2 { margin-bottom: 18px; }
.section-head .script-tag {
  font-family: var(--script);
  font-size: clamp(32px, 3vw, 44px);
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}
.section-head p { font-size: 19px; }

/* ------------------ Feature row (4-up icons) ------------------ */

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature {
  padding: 56px 32px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.feature:first-child { border-left: none; }
.feature .icon {
  width: 56px; height: 56px;
  margin: 0 auto 24px;
  color: var(--gold);
}
.feature h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 14px;
}
.feature p { font-size: 15px; margin: 0; line-height: 1.55; }

/* ------------------ Perfect For row ------------------ */

.perfect-for {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 40px;
}
.perfect-item {
  padding: 40px 16px;
  text-align: center;
  border-left: 1px solid var(--line);
}
.perfect-item:first-child { border-left: none; }
.perfect-item .icon {
  width: 44px; height: 44px;
  margin: 0 auto 18px;
  color: var(--gold);
  transition: transform .4s ease, color .3s ease;
}
.perfect-item:hover .icon { transform: translateY(-4px); color: var(--amber); }
.perfect-item .label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ------------------ Testimonials ------------------ */

.testimonial {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding: 40px 20px;
}
.testimonial .quote-mark {
  font-family: var(--serif);
  font-size: 140px;
  color: var(--gold);
  line-height: 0.5;
  display: block;
  margin-bottom: 24px;
  opacity: .8;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
  color: var(--cream);
  margin: 0 0 28px;
  font-weight: 300;
}
.testimonial cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.testimonial cite .sub { display: block; margin-top: 6px; color: var(--cream-mute); letter-spacing: 0.3em; font-size: 10px; }

.t-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}
.t-dots button {
  width: 8px; height: 8px;
  border: 1px solid var(--gold);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transform: rotate(45deg);
  transition: background .3s ease;
}
.t-dots button.active { background: var(--gold); }

/* ------------------ Closing CTA banner ------------------ */

.cta-banner {
  text-align: center;
  padding: 110px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center, rgba(232,184,109,0.08), transparent 60%);
}
.cta-banner h2 { margin-bottom: 14px; }
.cta-banner .phone {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 24px 0 14px;
  display: block;
}
.cta-banner .tag {
  font-style: italic;
  color: var(--cream-mute);
  margin-bottom: 40px;
}

/* ------------------ Footer ------------------ */

footer {
  background: var(--bg-deep);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
  text-align: center;
}
footer .logo { height: 110px; margin: 0 auto 8px; }
footer .contact {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 18px 0;
}
footer .contact span { color: var(--gold); margin: 0 18px; }
footer .socials {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 24px 0 32px;
}
footer .socials a {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all .3s ease;
}
footer .socials a:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 0 24px rgba(232,184,109,.35);
}
footer .serving {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 24px 0;
}
footer .serving svg { width: 18px; height: 18px; color: var(--gold); }
footer .copyright {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.35);
  margin-top: 32px;
}

/* ------------------ Reveal-on-scroll ------------------ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------ Pricing cards ------------------ */

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  border: 1px solid var(--line-strong);
  padding: 56px 44px;
  background: linear-gradient(180deg, rgba(20,18,16,0.6), rgba(8,6,4,0.6));
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
}
.price-card .tier {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.price-card h3 {
  font-family: var(--serif);
  font-size: 44px;
  margin-bottom: 8px;
  color: var(--cream);
}
.price-card .price {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--gold);
  margin: 24px 0 8px;
}
.price-card .price small {
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--cream-mute);
  text-transform: uppercase;
  font-family: var(--sans);
  display: block;
  margin-top: 4px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}
.price-card li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  color: var(--cream);
  border-bottom: 1px solid rgba(201,169,97,0.12);
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 4px; top: 22px;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.price-card .ribbon {
  position: absolute;
  top: -1px; right: -1px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding: 10px 22px;
}
.price-card .btn { width: 100%; }

/* ------------------ Included strip ------------------ */

.included {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 80px;
}
.included-item {
  padding: 36px 24px;
  border-left: 1px solid var(--line);
  text-align: center;
}
.included-item:first-child { border-left: none; }
.included-item .icon {
  width: 36px; height: 36px;
  color: var(--gold);
  margin: 0 auto 16px;
}
.included-item h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 8px;
  font-weight: 500;
}
.included-item p {
  font-size: 13px;
  margin: 0;
  color: var(--cream-mute);
}

/* ------------------ Drinks grid ------------------ */

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}
.pill {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--cream);
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s ease;
}
.pill:hover { border-color: var(--gold); color: var(--gold); }
.pill.active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.drinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.drink {
  border: 1px solid var(--line);
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
  background: linear-gradient(180deg, rgba(20,18,16,0.7), rgba(8,6,4,0.7));
  display: flex;
  flex-direction: column;
}
.drink:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
}
.drink .photo {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.drink .photo::after {
  content: attr(data-label);
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(245,239,224,0.5);
  text-transform: uppercase;
}
.drink .photo .glass {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 55%; aspect-ratio: 1/1.6;
  border-radius: 4px 4px 50% 50% / 4px 4px 22% 22%;
  background: var(--g, linear-gradient(180deg, rgba(255,255,255,.15), rgba(0,0,0,.3)));
  border: 1px solid rgba(245,239,224,0.18);
  box-shadow: inset 0 -30px 40px rgba(0,0,0,0.35), 0 0 50px var(--glow, rgba(201,169,97,0.25));
}
.drink .photo .glass::before {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  bottom: -22px;
  width: 6px; height: 24px;
  background: rgba(245,239,224,0.2);
}
.drink .body { padding: 30px 28px 34px; }
.drink h3 {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 4px;
}
.drink h3 .l1 { color: var(--cream); display: block; font-size: 18px; font-weight: 300; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--sans); }
.drink h3 .l2 { color: var(--gold); display: block; font-style: italic; font-weight: 400; }
.drink .notes {
  font-family: var(--script);
  font-size: 24px;
  color: var(--amber);
  margin: 14px 0 16px;
  line-height: 1;
}
.drink .ingredients {
  font-size: 14px;
  color: var(--cream-mute);
  line-height: 1.55;
  margin: 0;
}
.drink .tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 18px;
  display: inline-block;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

/* ------------------ Form ------------------ */

.form-wrap {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--line);
  padding: 64px;
  background: linear-gradient(180deg, rgba(20,18,16,0.5), rgba(8,6,4,0.5));
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.field { margin-bottom: 24px; }
.field.full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.field label .req { color: var(--amber); }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 17px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 0 30px rgba(232,184,109,0.18);
}
.field textarea { min-height: 140px; resize: vertical; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}
.field .err {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #e07a5f;
  margin-top: 6px;
  display: none;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #e07a5f; }
.field.invalid .err { display: block; }

.form-confirm {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.form-confirm.show { display: block; }
.form-confirm h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 18px;
}
.form-confirm p { font-size: 18px; }

/* ------------------ Page header (sub pages) ------------------ */

.page-header {
  padding: 180px 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at center top, rgba(232,184,109,0.10), transparent 60%);
}
.page-header .eyebrow { margin-bottom: 24px; display: block; }
.page-header h1 { font-size: clamp(48px, 6vw, 86px); margin-bottom: 14px; }
.page-header .script-tag {
  font-family: var(--script);
  font-size: clamp(30px, 3.2vw, 46px);
  color: var(--gold);
  display: block;
  line-height: 1;
}

/* ------------------ Foot links ------------------ */
.foot-links{display:flex;align-items:center;justify-content:center;gap:12px;margin-bottom:14px}
.foot-links a{font-family:var(--sans);font-size:10px;letter-spacing:.24em;text-transform:uppercase;color:rgba(201,169,97,.85);text-decoration:none;transition:color .3s ease}
.foot-links a:hover{color:var(--gold)}
.foot-links span{color:rgba(201,169,97,.5)}

/* ------------------ Responsive — Tablet ≤1024px ------------------ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-logo img { height: 100px; }
  .nav.scrolled .nav-logo img { height: 65px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 160px; }
  .hero-content { text-align: center; }
  .hero-content > div { justify-content: center; }
  .hero-visual { height: auto; min-height: 0; margin-top: 0; }
  .hero-brand-logo { width: clamp(180px, 50vw, 300px); margin: 0 auto 24px; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(odd) { border-left: none; }
  .feature:nth-child(3), .feature:nth-child(4) { border-top: 1px solid var(--line); }
  .perfect-for { grid-template-columns: repeat(3, 1fr); }
  .perfect-item:nth-child(4), .perfect-item:nth-child(5), .perfect-item:nth-child(6) { border-top: 1px solid var(--line); }
  .perfect-item:nth-child(4) { border-left: none; }
  .drinks { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; max-width: 600px; }
  .included { grid-template-columns: repeat(2, 1fr); }
  .included-item:nth-child(3) { border-left: none; border-top: 1px solid var(--line); }
  .included-item:nth-child(4) { border-top: 1px solid var(--line); }
}

/* ------------------ Responsive — Mobile ≤640px ------------------ */
@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 70px 0; }
  .container { padding: 0 20px; }
  /* Nav */
  .nav { padding: 14px 0; }
  .nav.scrolled { padding: 10px 0; }
  .nav-logo img { height: 60px; }
  .nav.scrolled .nav-logo img { height: 50px; }
  /* Hero */
  .hero { min-height: auto; }
  .hero-grid { padding: 100px 0 40px; gap: 20px; }
  .hero-content h1 { font-size: 48px; }
  .hero-content h1 .gold { font-size: 40px; }
  .hero-content .script-tag { font-size: 22px; }
  .hero-content .btn { width: 100%; }
  .hero-visual img { width: 85vw; max-width: 85vw; margin: 0 auto; }
  body[data-voice="grand"] .hero-content h1 { font-size: clamp(44px, 11vw, 60px); }
  body[data-voice="modern"] .hero-content h1 { font-size: clamp(26px, 7vw, 36px); }
  /* Sparkle/bokeh density reduction */
  .hero-ambient > :nth-child(even) { display: none; }
  .page-ambient > :nth-child(even) { display: none; }
  /* Features 2×2 */
  .features { grid-template-columns: repeat(2, 1fr); }
  .feature { padding: 36px 20px; }
  /* Perfect For */
  .perfect-for { grid-template-columns: repeat(2, 1fr); }
  .perfect-item { border-left: 1px solid var(--line); }
  .perfect-item:nth-child(odd) { border-left: none; }
  .perfect-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  /* Drinks */
  .drinks { grid-template-columns: 1fr; }
  /* Pricing */
  .price-card { padding: 36px 24px; }
  .price-card .btn { width: 100%; }
  .price-card .ribbon { font-size: 9px; padding: 7px 14px; }
  .price-card h3 { font-size: 36px; }
  .price-card .price { font-size: 44px; }
  /* Included */
  .included { grid-template-columns: 1fr; }
  .included-item { border-left: none !important; border-top: 1px solid var(--line); }
  .included-item:first-child { border-top: none; }
  /* Form */
  .form-wrap { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .field input, .field select, .field textarea { min-height: 44px; font-size: 16px; }
  .field textarea { min-height: 120px; }
  #book-addons { grid-template-columns: 1fr !important; }
  .form-wrap button[type="submit"] { width: 100%; min-height: 50px; }
  /* Page header */
  .page-header { padding: 120px 0 50px; }
  .page-header h1 { font-size: clamp(32px, 9vw, 48px); }
  .page-header .script-tag { font-size: clamp(22px, 5vw, 30px); }
  /* Section head */
  .section-head { margin-bottom: 40px; }
  .section-head p { font-size: 17px; }
  /* CTA Banner */
  .cta-banner { padding: 70px 0; }
  .cta-banner .btn { width: 100%; max-width: 340px; }
  .cta-banner .phone { font-size: clamp(24px, 7vw, 34px); }
  /* Testimonials */
  .testimonial { padding: 30px 8px; }
  .testimonial blockquote { font-size: clamp(18px, 4.5vw, 24px); }
  .testimonial .quote-mark { font-size: 100px; margin-bottom: 16px; }
  .t-dots button { width: 12px; height: 12px; }
  /* Footer */
  footer { padding: 50px 0 24px; }
  footer .logo { height: 80px; }
  footer .contact { display: flex; flex-direction: column; align-items: center; gap: 10px; }
  footer .contact span { display: none; }
  footer .serving { flex-direction: column; gap: 10px; text-align: center; font-size: 11px; }
  footer .foot-links { flex-wrap: wrap; }
  /* Terms */
  .terms-wrap h2 { margin: 40px 0 14px; }
  .terms-wrap p, .terms-wrap li { line-height: 1.7; }
  .terms-note { padding: 18px 20px; }
  /* Touch targets */
  .pill { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .btn { min-height: 44px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .hero-visual img { animation: none; }
  .mobile-menu { transition: none; }
}
