/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #1d3f72;   /* deep brand navy-blue */
  --blue2:      #2b5694;
  --gold:       #c0892f;   /* warm amber accent */
  --gold-dark:  #a5742a;
  --ink:        #241f1a;   /* warm near-black */
  --text:       #3d362e;
  --muted:      #7c7164;
  --cream:      #f7f0e2;   /* warm page bg */
  --cream2:     #efe5d2;
  --paper:      #fffdf8;
  --line:       #e4d9c4;
  --white:      #ffffff;
  --font-disp:  'Playfair Display', Georgia, serif;
  --font-cond:  'Oswald', 'Arial Narrow', sans-serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-disp); color: var(--ink); line-height: 1.12; font-weight: 700; }
h1 { font-size: clamp(3rem, 7.5vw, 6.2rem); letter-spacing: 0.005em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.4rem; font-weight: 600; }

p { color: var(--muted); font-size: 1rem; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

.section-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1rem;
}
.section-eyebrow.center { display: flex; align-items: center; justify-content: center; gap: 0.8rem; }
.section-eyebrow.center::before, .section-eyebrow.center::after {
  content: '★'; color: var(--gold); font-size: 0.7rem; letter-spacing: 0;
}
.center { text-align: center; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block; padding: 1rem 2.5rem;
  border: 2px solid var(--gold); color: var(--gold-dark); background: transparent;
  font-family: var(--font-cond); font-size: 0.84rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.15s; border-radius: 2px;
}
.btn-primary:hover { background: var(--gold); color: var(--white); }
.btn-primary:active { transform: translateY(1px); }
.btn-primary.solid { background: var(--blue); border-color: var(--blue); color: var(--white); width: 100%; }
.btn-primary.solid:hover { background: var(--ink); border-color: var(--ink); }

/* ── Nav ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 2.5rem; transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}
#navbar.scrolled {
  background: rgba(247,240,226,0.96); backdrop-filter: blur(12px);
  padding: 0.85rem 2.5rem; box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(60,40,10,0.07);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; display: block; transition: height 0.35s; }
#navbar.scrolled .nav-logo img { height: 42px; }
.nav-logo .logo-on-light { display: none; }
#navbar.scrolled .nav-logo .logo-on-dark { display: none; }
#navbar.scrolled .nav-logo .logo-on-light { display: block; }
.nav-logo .logo-on-dark { filter: drop-shadow(0 2px 7px rgba(0,0,0,0.45)); }
.nav-logo .logo-on-light { filter: drop-shadow(0 2px 5px rgba(20,40,90,0.22)); }

.nav-links { display: flex; list-style: none; gap: 2.4rem; align-items: center; }
.nav-links a {
  font-family: var(--font-cond); font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.92); transition: color 0.2s;
}
#navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--gold); }
#navbar.scrolled .nav-links a:hover { color: var(--gold-dark); }

.nav-cta { border: 2px solid currentColor; padding: 0.42rem 1.15rem; border-radius: 2px; color: var(--white) !important; }
#navbar.scrolled .nav-cta { color: var(--gold-dark) !important; }
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: 0.3s; }
#navbar.scrolled .hamburger span { background: var(--ink); }

/* ── Mobile Menu ── */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 99; background: var(--blue);
  flex-direction: column; justify-content: center; align-items: center; }
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 1.4rem 0; }
.mobile-menu ul li a { font-family: var(--font-disp); font-weight: 700; font-size: 2.3rem; color: var(--white); }

/* ── Hero ── */
#hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 1.5rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('assets/hills.jpg') center/cover no-repeat; transform: scale(1.04); }
.hero-overlay { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(60,38,16,0.42) 0%, rgba(60,38,16,0.12) 38%, rgba(36,31,26,0.62) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-eyebrow { font-family: var(--font-cond); font-size: 0.8rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: #f3dcae; margin-bottom: 1.4rem; font-weight: 500; }
.hero-content h1 { color: var(--white); margin-bottom: 1.4rem; text-shadow: 0 6px 36px rgba(30,15,0,0.4); font-style: italic; }
.hero-sub { font-size: clamp(1.05rem, 1.9vw, 1.3rem); color: rgba(255,255,255,0.94); margin-bottom: 2.6rem; font-weight: 300; }
.hero-content .btn-primary { border-color: #f3dcae; color: #fbeed3; background: rgba(255,255,255,0.05); backdrop-filter: blur(2px); }
.hero-content .btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.scroll-indicator { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 1; }
.scroll-indicator span { display: block; width: 2px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.9), transparent); margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(1);} 50% { opacity: 1; transform: scaleY(1.12);} }

/* ── Badge strip ── */
#badges { background: var(--blue); }
.badge-row { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.badge { padding: 2.2rem 1rem; border-right: 1px solid rgba(255,255,255,0.14); display: flex; flex-direction: column; gap: 0.3rem; }
.badge:last-child { border-right: none; }
.badge-num { font-family: var(--font-disp); font-weight: 700; font-size: 2.4rem; color: #f3dcae; line-height: 1; }
.badge-label { font-family: var(--font-cond); font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.8); }

/* ── Story ── */
#story { padding: 7rem 0; background: var(--cream); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.split-text h2 { margin-bottom: 1.4rem; }
.split-text p { margin-bottom: 1rem; }
.split-text .link-arrow { margin-top: 0.6rem; display: inline-block; }

.photo-frame { position: relative; border-radius: 6px; overflow: visible; }
.photo-frame > img:first-child {
  width: 100%; border-radius: 6px; display: block;
  box-shadow: 0 24px 60px rgba(60,40,10,0.22); border: 5px solid var(--paper);
}
.emblem-badge {
  position: absolute; bottom: -24px; right: -18px; height: 140px; width: auto;
  background: #fff; border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 12px 30px rgba(60,40,10,0.25);
}

/* ── Product ── */
#product { padding: 7rem 0; background: var(--cream2); }
#product h2 { margin-bottom: 3.5rem; }
.product-feature { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: center; }
.product-img { display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 42%, #f5f5f7 0%, #ededf0 72%, #e6e6ea 100%);
  border-radius: 8px; padding: 2.5rem 1.5rem; border: 1px solid #e3e3e7; box-shadow: 0 24px 60px rgba(60,40,10,0.14); overflow: hidden; }
.bottle-art { display: block; height: 520px; max-height: 60vh; width: auto; }
.product-tagline { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-dark); font-weight: 600; font-size: 0.98rem; margin-bottom: 1rem; }
.product-detail > p { margin-bottom: 1.6rem; }
.spec-list { list-style: none; margin-bottom: 1.4rem; }
.spec-list li { display: flex; justify-content: space-between; align-items: baseline; padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.spec-list span { font-family: var(--font-cond); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.spec-list strong { font-family: var(--font-cond); font-weight: 500; color: var(--ink); letter-spacing: 0.02em; text-transform: uppercase; font-size: 0.98rem; }
.product-note { font-style: italic; font-size: 0.95rem; color: var(--muted); }

/* ── Quote ── */
#quote { position: relative; padding: 8rem 0; text-align: center; overflow: hidden; }
.quote-bg { position: absolute; inset: 0; background: url('assets/creek.jpg') center 30%/cover no-repeat; }
#quote::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(29,63,114,0.82), rgba(36,31,26,0.84)); }
#quote .container { position: relative; z-index: 1; }
blockquote { font-family: var(--font-disp); font-weight: 600; font-style: italic; font-size: clamp(1.7rem, 3.6vw, 2.8rem); color: var(--white); line-height: 1.45; max-width: 780px; margin: 0 auto; }
.quote-attr { font-family: var(--font-cond); margin-top: 1.4rem; color: #f3dcae; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.82rem; font-weight: 500; }

/* ── Drop-in image placeholder (shows filename until the photo exists) ── */
.ph { position: relative; overflow: hidden; background:
  repeating-linear-gradient(45deg, rgba(120,90,40,0.05) 0 16px, transparent 16px 32px),
  linear-gradient(160deg, var(--cream2), #e6d8bf); }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph.empty { display: flex; align-items: center; justify-content: center; border: 1.5px dashed rgba(160,116,42,0.4); }
.ph.empty::after { content: 'Add ' attr(data-label); font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.8rem; color: var(--gold-dark); }

/* ── Bottle feature band (bottle-in-landscape) ── */
#bottle-band { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; }
#bottle-band .band-photo { position: absolute; inset: 0; }
.band-overlay { position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(36,31,26,0.78) 0%, rgba(36,31,26,0.45) 45%, rgba(36,31,26,0.12) 100%); }
.band-content { position: relative; z-index: 1; max-width: 540px; margin-left: clamp(1.5rem, 8vw, 7rem); padding: 2rem 0; }
.band-content .section-eyebrow { color: #e7c98c; }
.band-content h2 { color: var(--white); margin-bottom: 1rem; font-style: italic; }
.band-content p { color: rgba(255,255,255,0.9); font-size: 1.05rem; }
#bottle-band .ph.empty { background: linear-gradient(160deg, #2c2620, #1f1a15); }
#bottle-band .ph.empty::after { color: #e7c98c; }

/* ── Cocktails ── */
#cocktails { padding: 7rem 0; background: var(--cream); }
#cocktails h2 { margin-bottom: 3.5rem; }
.cocktail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.cocktail-card { background: var(--paper); border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s; }
.cocktail-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(60,40,10,0.14); }
.cocktail-photo { aspect-ratio: 4 / 5; }
.cocktail-info { padding: 1.8rem; }
.cocktail-info h3 { margin-bottom: 0.3rem; }
.cocktail-meta { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.72rem; color: var(--gold-dark); margin-bottom: 0.9rem; }
.cocktail-info p { font-size: 0.92rem; }

/* ── Find Us ── */
#find { padding: 7rem 0; background: var(--cream); }
#find h2 { margin-bottom: 3.5rem; }
.find-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.find-card { padding: 2.4rem; border: 1px solid var(--line); border-radius: 6px; background: var(--paper);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.find-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 18px 40px rgba(60,40,10,0.12); }
.find-icon { font-size: 1.1rem; color: var(--gold); margin-bottom: 1.1rem; }
.find-card h3 { margin-bottom: 0.7rem; }
.find-card p { font-size: 0.95rem; margin-bottom: 1rem; }

.link-arrow { font-family: var(--font-cond); font-weight: 600; text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.08em; color: var(--gold-dark); transition: opacity 0.2s; }
.link-arrow:hover { opacity: 0.7; }

/* ── Contact ── */
#contact { padding: 7rem 0; position: relative; overflow: hidden; }
#contact::before { content: ''; position: absolute; inset: 0; background: url('assets/oak.jpg') center/cover no-repeat; opacity: 0.12; }
#contact .container { position: relative; z-index: 1; }
.contact-details { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0.5rem; }
.contact-details p { font-size: 0.95rem; }
.contact-details strong { color: var(--ink); }

.split-form { background: var(--paper); padding: 2.6rem; border-radius: 8px; box-shadow: 0 20px 50px rgba(60,40,10,0.12); border: 1px solid var(--line); }
.form-group { margin-bottom: 1.3rem; display: flex; flex-direction: column; gap: 0.45rem; }
label { font-family: var(--font-cond); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
input, select, textarea { background: var(--cream); border: 1px solid var(--line); border-radius: 3px; color: var(--text);
  font-family: var(--font-sans); font-size: 0.96rem; padding: 0.8rem 1rem; outline: none; transition: border-color 0.2s, background 0.2s; width: 100%; }
input::placeholder, textarea::placeholder { color: #b3a892; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); background: var(--white); }
select { appearance: none; cursor: pointer; }
textarea { resize: vertical; }
.form-status { font-weight: 600; font-size: 0.9rem; margin-top: 1rem; text-align: center; min-height: 1.2em; }
.form-status.success { color: var(--gold-dark); }
.form-status.error { color: #b23b3b; }
.form-status.sending { color: var(--muted); }
#formSubmit[disabled] { opacity: 0.6; cursor: progress; }
/* Honeypot: hidden from real users, visible to bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

/* ── Age Gate ── */
.age-gate { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; text-align: center;
  background: linear-gradient(rgba(36,31,26,0.72), rgba(36,31,26,0.82)), url('assets/hills.jpg') center/cover no-repeat; }
.age-gate[hidden] { display: none; }
.age-gate-inner { max-width: 480px; background: rgba(247,240,226,0.97); border: 1px solid var(--line);
  border-radius: 10px; padding: 3rem 2.4rem; box-shadow: 0 30px 80px rgba(0,0,0,0.4); }
.age-logo { display: block; width: 230px; max-width: 72%; height: auto; margin: 0 auto;
  filter: drop-shadow(0 3px 6px rgba(20,40,90,0.18)); }
.age-eyebrow { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.68rem;
  color: var(--gold-dark); margin: 1.2rem 0 1.6rem; }
.age-title { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 0.6rem; }
.age-text { margin-bottom: 1.8rem; }
.age-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.age-btn { min-width: 130px; cursor: pointer; }
.age-btn-ghost { border-color: var(--muted); color: var(--muted); }
.age-btn-ghost:hover { background: var(--muted); border-color: var(--muted); color: var(--white); }
.age-legal { margin-top: 1.8rem; font-size: 0.76rem; color: var(--muted); }
.age-denied { margin-top: 1.2rem; color: #b23b3b; font-weight: 600; font-size: 0.95rem; }
.age-denied[hidden] { display: none; }
body.age-locked { overflow: hidden; }

/* ── Footer ── */
footer { padding: 3.5rem 0; background: var(--ink); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; text-align: center; }
.footer-logo { display: block; width: 210px; max-width: 60%; height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-family: var(--font-cond); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: #b8ac99; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-legal { font-size: 0.76rem; color: #7e7461; line-height: 1.8; }

/* ── Fade-in ── */
.fade-in { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .split, .product-feature { grid-template-columns: 1fr; gap: 2.8rem; }
  .product-feature .product-img { order: -1; max-width: 460px; margin: 0 auto; }
  .find-grid { grid-template-columns: 1fr; }
  .cocktail-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  #bottle-band .band-overlay { background: linear-gradient(180deg, rgba(36,31,26,0.55), rgba(36,31,26,0.8)); }
  .badge-row { grid-template-columns: repeat(2, 1fr); }
  .badge:nth-child(2) { border-right: none; }
  .badge:nth-child(1), .badge:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.14); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .emblem-badge { height: 110px; bottom: -18px; right: -8px; padding: 10px 12px; }
}
@media (max-width: 600px) {
  #navbar { padding: 1.1rem 1.5rem; }
  .container { padding: 0 1.5rem; }
  #story, #product, #find, #contact, #quote { padding: 5rem 0; }
  .split-form { padding: 1.8rem; }
}
