/* ============================================================
   Audio Haus Café Site — Shared Stylesheet
   Style: Clean Modern + Vintage Soul
   Redesign: May 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Abril+Fatface&family=Lato:wght@300;400;700&family=Dancing+Script:wght@600&display=swap');

/* --- CSS Variables --- */
:root {
  --cream:      #FFFFFF;
  --surface:    #F8F5F0;
  --parchment:  #F2EDE4;
  --ochre:      #C07A12;
  --amber:      #E8A020;
  --green:      #2D5E1E;
  --dark:       #1C0F08;
  --mahogany:   #1A0E08;
  --charcoal:   #1A1A1A;
  --sepia:      #8B6520;
  --burgundy:   #7A1C30;
  --gold:       #D4AF37;
  --text-body:  #3D2B1A;
  --text-mid:   #6B4E35;
  --border:     rgba(192,122,18,0.15);
  --shadow-sm:  0 2px 12px rgba(28,15,8,0.07);
  --shadow-md:  0 6px 28px rgba(28,15,8,0.10);
  --radius-sm:  8px;
  --radius-md:  10px;
  --radius-lg:  28px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.65;
}

/* Subtle film grain — keeps the vintage soul */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.18;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
a { text-decoration: none; }
img { border-radius: var(--radius-md); }

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0; width: 100%; z-index: 500;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(192,122,18,0.12);
  padding: 12px 48px;
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 1px 20px rgba(28,15,8,0.06);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-mid);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ochre); }

.nav-cta {
  background: var(--charcoal);
  color: #fff;
  padding: 10px 24px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: var(--radius-lg);
  border: 2px solid var(--charcoal);
  transition: all 0.22s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--ochre);
  border-color: var(--ochre);
  color: #fff;
}

/* --- Buttons --- */
.btn-primary {
  background: var(--ochre);
  color: #fff;
  padding: 15px 38px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  display: inline-block;
  border-radius: var(--radius-lg);
  transition: all 0.22s;
  border: 2px solid var(--ochre);
}
.btn-primary:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--charcoal);
}

.btn-dark {
  background: var(--charcoal);
  color: #fff;
  padding: 15px 38px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  display: inline-block;
  border-radius: var(--radius-lg);
  transition: all 0.22s;
  border: 2px solid var(--charcoal);
}
.btn-dark:hover {
  background: var(--ochre);
  border-color: var(--ochre);
  color: #fff;
}

/* btn-dark sits on ochre sections on these pages — white outline on hover keeps it visible */
.comp-band .btn-dark:hover,
.booking-banner .btn-dark:hover,
.enquiry-section .btn-dark:hover {
  background: transparent;
  border-color: rgba(255,255,255,0.9);
  color: #fff;
}

.btn-outline-cream {
  border: 2px solid rgba(255,255,255,0.75);
  color: #fff;
  padding: 15px 38px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  display: inline-block;
  border-radius: var(--radius-lg);
  transition: all 0.22s;
  background: transparent;
}
.btn-outline-cream:hover {
  background: #fff;
  color: var(--charcoal);
  border-color: #fff;
}

.btn-outline-dark {
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
  padding: 15px 38px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  display: inline-block;
  border-radius: var(--radius-lg);
  transition: all 0.22s;
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: #fff;
}

/* --- Section Typography Utilities --- */
.section-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  color: var(--ochre);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-mid);
}

.ornament {
  font-size: 1rem;
  color: var(--ochre);
  letter-spacing: 0.5em;
  text-align: center;
  margin: 20px 0;
  opacity: 0.6;
}

/* --- Cinema Strip Ticker --- */
.cinema-strip {
  background: var(--dark);
  padding: 14px 0;
  overflow: hidden;
  border-top: 2px solid var(--ochre);
  border-bottom: 2px solid var(--ochre);
}
.cinema-strip-inner {
  display: flex;
  gap: 48px;
  animation: scrollTicker 22s linear infinite;
  white-space: nowrap;
}
.cinema-strip span {
  font-family: 'Abril Fatface', cursive;
  font-size: 0.9rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  flex-shrink: 0;
  opacity: 0.75;
}
@keyframes scrollTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Footer --- */
.site-footer {
  background: var(--parchment);
  color: var(--dark);
  padding: 64px 48px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(30,20,10,0.12);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--dark);
}
.footer-logo span { color: var(--amber); }
.footer-logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 8px;
  filter: none;
  opacity: 1;
  border-radius: 0;
}
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(30,20,10,0.45);
  margin-top: 6px;
}
.footer-col h4 {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--amber);
  margin-bottom: 18px;
  font-family: 'Lato', sans-serif;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.84rem;
  color: rgba(30,20,10,0.55);
  margin-bottom: 10px;
  line-height: 1.65;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: rgba(30,20,10,0.35);
  font-family: 'Lato', sans-serif;
  padding-right: 60px;
  letter-spacing: 0.05em;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--charcoal);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 200;
  opacity: 0;
  border-radius: 50%;
  transition: opacity 0.3s, background 0.2s;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--ochre); }

/* --- Intro section --- */
.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-quote {
  font-family: 'Abril Fatface', cursive;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--charcoal);
  line-height: 1.0;
}
.intro-quote em { color: var(--ochre); font-style: normal; }

/* --- Feature rows --- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.feature-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}
.feature-img {
  background-size: cover;
  background-position: center;
}

/* --- Package items --- */
.pkg-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pkg-item.reverse .pkg-text { order: 2; }
.pkg-item.reverse .pkg-img  { order: 1; }
.pkg-text {
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}
.pkg-img {
  background-size: cover;
  background-position: center;
}

/* --- Icons row --- */
.icons-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.icon-item i {
  font-size: 2rem;
  color: var(--ochre);
}

/* --- Moments / Legend grid --- */
.moments-grid,
.legend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.moment-card,
.legend-card {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.moment-card img,
.legend-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 0;
}
.moment-card:hover img,
.legend-card:hover img { transform: scale(1.05); }

/* --- Wine / Vintages grid --- */
.wine-grid,
.vintages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --- Themes grid --- */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --- Own section --- */
.own-section {
  display: flex;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.own-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 480px;
}
.own-text {
  flex: 1;
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}

/* --- SOL Unifier --- */
.sol-unifier {
  background: var(--surface);
  padding: 80px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sol-notes {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.sol-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sol-note i {
  font-size: 2rem;
  color: var(--ochre);
}
.sol-pill {
  border: 1px solid rgba(192,122,18,0.35);
  color: var(--text-mid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-lg);
  font-family: 'Lato', sans-serif;
}
.sol-pill.active {
  background: var(--ochre);
  color: #fff;
  border-color: var(--ochre);
}
.sol-divider { width: 20px; height: 1px; background: rgba(192,122,18,0.25); }

/* --- Reel / Social Video Strip --- */
.reels-strip {
  background: var(--dark);
  padding: 64px 80px;
  border-top: 3px solid var(--ochre);
}
.reels-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.reels-strip-header h3 {
  font-family: 'Abril Fatface', cursive;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--cream);
  line-height: 1;
}
.reels-strip-header h3 em { color: var(--amber); font-style: normal; }
.reels-strip-header a {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--amber);
  border-bottom: 1px solid rgba(232,160,32,0.35);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.reels-strip-header a:hover { color: #fff; }

/* ── Carousel wrapper ── */
.reels-carousel {
  max-width: 340px;
  margin: 0 auto;
  overflow: hidden;
}
.reels-row {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
}
.reel-card {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* ── Desktop: grid ── */
@media (min-width: 961px) {
  .reels-carousel { max-width: none; overflow: visible; }
  .reels-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    transform: none !important;
    transition: none !important;
  }
  .reel-card { flex: unset; width: auto; }
  .reels-nav { display: none; }
  /* cap at 5 — hide any extra real reels beyond the first 5 */
  .reels-row .reel-card:nth-child(n+6) { display: none; }
}

/* ── Nav arrows ── */
.reels-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.reels-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(192,122,18,0.12);
  border: 1px solid rgba(192,122,18,0.3);
  color: var(--ochre);
  cursor: pointer;
  font-size: 14px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.reels-arrow:hover { background: var(--ochre); color: #fff; }
.reels-arrow:disabled { opacity: 0.25; cursor: default; pointer-events: none; }

/* ── Dots ── */
.reels-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(192,122,18,0.3);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
}
.reels-dot.active { background: var(--ochre); transform: scale(1.4); }

.reel-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 16px;
}
.reel-placeholder-icon { font-size: 2rem; color: rgba(232,160,32,0.4); }
.reel-placeholder-label {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}
.reel-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  display: block;
  pointer-events: none;   /* let card clicks pass through for carousel swipe */
}
.reel-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(28,15,8,0.88) 0%, transparent 60%);
  padding: 16px 12px 12px;
}
.reel-tag {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--amber);
  display: block;
  margin-bottom: 3px;
}
.reel-caption {
  font-size: 9px;
  color: rgba(255,255,255,0.65);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  line-height: 1.4;
}

/* --- Music Preferences (booking form) --- */
.music-prefs-section {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-top: 8px;
}
.music-checkboxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.music-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-body);
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: background 0.15s, border-color 0.15s;
}
.music-check-item:hover {
  background: rgba(192,122,18,0.05);
  border-color: var(--ochre);
}
.music-check-item input { accent-color: var(--ochre); width: 14px; height: 14px; flex-shrink: 0; }

/* --- Mobile Nav Dropdown --- */
.nav-select-wrap { display: none; margin-left: auto; }
.nav-select {
  appearance: none; -webkit-appearance: none;
  background: var(--cream);
  color: var(--charcoal);
  border: 1px solid var(--border);
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 36px 11px 14px;
  cursor: pointer;
  outline: none;
  min-height: 44px;
  border-radius: var(--radius-sm);
}

/* ══ CUSTOM NAV DROPDOWN ══ */
.nav-custom-dd { display: none; position: relative; margin-left: auto; }
.nav-dd-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--charcoal);
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 16px;
  cursor: pointer;
  min-height: 44px;
  white-space: nowrap;
  border-radius: var(--radius-sm);
}
.nav-dd-chevron {
  font-size: 10px;
  color: var(--ochre);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.nav-dd-panel {
  display: none;
  position: fixed;
  top: 74px;
  left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  border-bottom: 2px solid var(--border);
  z-index: 999;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(28,15,8,0.10);
  backdrop-filter: blur(16px);
}
.nav-dd-panel.open { display: flex; }
.nav-dd-link {
  display: flex;
  align-items: center;
  padding: 16px 28px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  border-bottom: 1px solid rgba(192,122,18,0.08);
  transition: background 0.15s, color 0.15s;
  min-height: 56px;
}
.nav-dd-link:last-child { border-bottom: none; }
.nav-dd-link:active,
.nav-dd-link:hover { background: var(--surface); color: var(--ochre); }
.nav-dd-link.active { color: var(--ochre); }
.nav-dd-link.active::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ochre);
  margin-right: 12px;
  flex-shrink: 0;
}
.nav-dd-link.nav-dd-cta {
  background: rgba(192,122,18,0.07);
  color: var(--ochre);
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.nav-dd-link.nav-dd-cta:hover { background: rgba(192,122,18,0.14); }

/* ══ STICKY BOTTOM BAR ══ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1500;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid var(--border);
  gap: 0;
  align-items: stretch;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  backdrop-filter: blur(16px);
  box-shadow: 0 -4px 20px rgba(28,15,8,0.08);
}
.mobile-bottom-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 8px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
  color: var(--text-mid);
  background: transparent;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.mobile-bottom-bar a:last-child { border-right: none; }
.mobile-bottom-bar a i { font-size: 18px; color: var(--ochre); }
.mobile-bottom-bar a.bar-reserve {
  background: var(--ochre);
  color: #fff;
}
.mobile-bottom-bar a.bar-reserve i { color: #fff; }
.mobile-bottom-bar a:active { opacity: 0.7; }

/* ── Force desktop hide ── */
@media (min-width: 961px) {
  .mobile-bottom-bar { display: none !important; }
  .nav-select-wrap   { display: none !important; }
  body { padding-bottom: 0 !important; }
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET / MOBILE (≤960px)
══════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-custom-dd { display: block; }
  .nav-select-wrap { display: none !important; }
  .site-nav { padding: 10px 20px; min-height: 64px; }
  .mobile-bottom-bar { display: flex !important; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
  .back-to-top { bottom: calc(60px + 16px); right: 16px; width: 40px; height: 40px; }
  h1, .section-title { font-size: clamp(2rem, 8vw, 3rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sol-unifier { padding: 56px 28px; }
  .sol-notes { gap: 24px; }
  .intro-section { grid-template-columns: 1fr !important; gap: 32px; }
  .booking-layout { grid-template-columns: 1fr !important; }
  .music-checkboxes { grid-template-columns: repeat(2, 1fr); }
  .reels-strip { padding: 48px 24px; }
  .hero-section, .page-hero {
    padding: 120px 24px 60px;
    min-height: 80vh;
    text-align: center;
    align-items: center;
  }
  .page-hero .hero-eyebrow,
  .page-hero .section-label { margin-left: auto; margin-right: auto; }
  .hero-cta-row, .enquiry-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn-primary, .btn-dark, .btn-outline-cream {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
  .feature-row, .pkg-row, .own-section {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
  }
  .pkg-row .pkg-img, .own-img { max-height: 260px; overflow: hidden; }
  .pkg-item, .pkg-item.reverse {
    grid-template-columns: 1fr !important;
    flex-direction: column !important;
  }
  .pkg-item .pkg-img { max-height: 220px; overflow: hidden; }
  .themes-grid { grid-template-columns: 1fr !important; }
  .own-section { flex-direction: column; }
  .moments-grid, .legend-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .icons-row { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .wine-hero-content, .legacy-content { padding: 0 24px; }
  .wine-grid, .vintages-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤600px)
══════════════════════════════════════ */
@media (max-width: 600px) {
  .site-nav { padding: 10px 16px; min-height: 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  body { padding-bottom: 68px; }
  .hero-section, .page-hero {
    padding: 100px 20px 48px;
    min-height: 75vh;
    text-align: center;
    align-items: center;
  }
  .moments-grid, .legend-grid,
  .wine-grid, .vintages-grid { grid-template-columns: 1fr !important; }
  .intro-quote { font-size: clamp(2rem, 10vw, 3rem); }
  .nav-logo-img { height: 44px; }
}

/* ══════════════════════════════════════
   TYPEWRITER STRIP
══════════════════════════════════════ */
.typewriter-strip {
  background: var(--dark);
  padding: 80px 48px;
  text-align: center;
  border-top: 3px solid var(--ochre);
  border-bottom: 3px solid var(--ochre);
}
.tw-inner { max-width: 1100px; margin: 0 auto; }
.tw-prelabel {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: rgba(192,122,18,0.6);
  margin-bottom: 28px;
}
.tw-line {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.9rem, 3.8vw, 2.6rem);
  color: #fff;
  line-height: 1.3;
  min-height: 1.5em;
  white-space: nowrap;
}
.tw-verb { color: var(--amber); font-style: italic; }
.tw-kw   { color: var(--ochre); font-weight: 700; }
/* ε raised to cap-height; X in brand red — typewriter */
.tw-eps {
  font-size: 1.45em;
  text-transform: none;    /* prevent CSS uppercase from converting ε → Ε */
  line-height: 0.84;       /* stops ε from expanding the line box */
  vertical-align: -0.05em; /* tiny nudge keeps glyph bottom on the text baseline */
}
.tw-x { color: #c0392b; }
/* ε raised to cap-height; X in brand red — static HTML (sitewide) */
.eps-cap { font-size: 1.55em; text-transform: none; }
.eps-x   { color: #c0392b; }
.tw-cursor {
  display: inline;
  color: var(--amber);
  animation: tw-blink 0.75s step-end infinite;
  margin-left: 2px;
}
@keyframes tw-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.tw-sensory-row {
  margin-top: 22px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  opacity: 0;
  transition: opacity 0.7s ease;
  min-height: 18px;
}
@media (max-width: 960px) { .typewriter-strip { padding: 56px 28px; } }
@media (max-width: 600px) {
  .typewriter-strip { padding: 44px 16px; }
  .tw-inner { overflow: hidden; }
}

/* ── PERFECT FOR ─────────────────────────────────────────────────────── */
.perfect-for-section {
  background: var(--dark);
  padding: 72px 48px 64px;
  text-align: center;
  border-top: 1px solid rgba(192,122,18,0.2);
  border-bottom: 1px solid rgba(192,122,18,0.2);
}
.pf-inner { max-width: 860px; margin: 0 auto; }
.pf-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 44px;
}
.pf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 24px;
  margin-bottom: 52px;
}
.pf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pf-icon {
  font-size: 2rem;
  color: var(--amber);
  opacity: 0.9;
}
.pf-text {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.pf-tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--amber);
  border-top: 1px solid rgba(192,122,18,0.25);
  padding-top: 36px;
}
@media (max-width: 600px) {
  .perfect-for-section { padding: 52px 24px 48px; }
  .pf-grid { grid-template-columns: repeat(4, 1fr); gap: 28px 12px; }
  .pf-icon { font-size: 1.6rem; }
  .pf-text { font-size: 8px; }
}
