/* ============================================
   Cocktail Parties UK — Stylesheet
   Desktop: Pink (#fdbeb7)  |  Mobile: Mint
   ============================================ */

:root {
  --pink: #fdbeb7;
  --pink-deep: #f5a098;
  --pink-soft: #ffe4e0;
  --pink-blush: #fff5f3;

  --mint: #b8e6d1;
  --mint-deep: #8fd2b4;
  --mint-soft: #e0f5ec;
  --mint-blush: #f3fbf7;

  --ink: #2b2520;
  --ink-soft: #5b524d;
  --gold: #7a5e44; /* darkened from #a78463 for WCAG AA contrast */
  --gold-bright: #a78463; /* original — for decorative-only use */
  --cream: #faf6f1;
  --white: #ffffff;

  /* Live theme tokens — swapped at mobile breakpoint */
  --brand: var(--pink);
  --brand-deep: var(--pink-deep);
  --brand-soft: var(--pink-soft);
  --brand-blush: var(--pink-blush);

  --max-w: 1200px;
  --radius: 14px;
  --shadow-sm: 0 4px 14px rgba(43, 37, 32, 0.08);
  --shadow-md: 0 12px 32px rgba(43, 37, 32, 0.12);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* (mint mobile theme removed — pink applies across all breakpoints) */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Global focus indicator — visible across every brand surface */
:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.topbar a:focus-visible,
.site-footer a:focus-visible,
.social-highlight a:focus-visible {
  outline-color: var(--brand);
  outline-offset: 4px;
}

/* Skip link — sighted-keyboard + screen reader users */
.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--ink); color: var(--white);
  padding: 14px 22px;
  z-index: 1000;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid var(--brand);
  outline-offset: -3px;
}

/* Screen-reader-only utility */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  html { scroll-behavior: auto; }
  .card:hover, .package:hover, .btn:hover,
  .coverage-tags a:hover, .social-row a:hover,
  .cocktail-gallery .ck:hover {
    transform: none !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: .75; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0 0 1em; color: var(--ink-soft); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

/* ---------- Top Bar (socials + trustpilot) ---------- */
.topbar {
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  padding: 10px 0;
}
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.topbar a {
  color: var(--white);
  padding: 4px 0; /* larger touch target */
  display: inline-block;
}
.topbar a:hover { color: var(--brand); opacity: 1; }
.topbar .contact-quick { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar .contact-quick span { opacity: .85; }
.topbar .trust-strip {
  display: inline-flex; align-items: center; gap: 8px;
  background: #00603e; /* darker green for AA contrast (was #00b67a) */
  color: #fff;
  padding: 6px 12px; border-radius: 999px; font-weight: 600;
}
.topbar .trust-strip .stars { letter-spacing: 1px; }

/* Mobile: drop the email link to ease wrap, keep phone + Trustpilot */
@media (max-width: 600px) {
  .topbar { font-size: 13px; padding: 8px 0; }
  .topbar .contact-quick .email-only { display: none; }
  .topbar .container { justify-content: center; gap: 10px; }
  .topbar .trust-strip { padding: 4px 10px; font-size: 12px; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--brand);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-sm);
  transition: background .3s ease;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.15rem;
  color: var(--ink);
}
.brand-logo img {
  height: 72px; width: auto;
  display: block;
}
@media (max-width: 600px) {
  .brand-logo img { height: 56px; }
}
.nav-toggle {
  display: none;
  background: transparent; border: 0;
  font-size: 28px; color: var(--ink); cursor: pointer;
  padding: 8px 12px; /* 44x44 touch target */
  line-height: 1;
}
.nav-menu {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu a:not(.btn) {
  color: var(--ink);
  font-weight: 500; font-size: 15px;
  letter-spacing: .3px;
  padding: 8px 0;
  position: relative;
}
.nav-menu a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0; background: var(--ink);
  transition: width .25s ease;
}
.nav-menu a:not(.btn):hover::after,
.nav-menu a:not(.btn).active::after { width: 100%; }
.nav-menu a:hover { opacity: 1; }
.nav-menu a.btn { color: var(--white); }
.nav-menu a.btn:hover { color: var(--white); opacity: 1; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > .dropdown-trigger {
  /* Make button match nav link visually */
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  font-family: inherit;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .3px;
  padding: 8px 18px 8px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: inherit;
}
.has-dropdown > .dropdown-trigger::before {
  content: "▾";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  opacity: .55;
  transition: transform .2s ease;
}
.has-dropdown > .dropdown-trigger[aria-expanded="true"]::before,
.has-dropdown:hover > .dropdown-trigger::before {
  transform: translateY(-50%) rotate(180deg);
}
.has-dropdown > .dropdown-trigger::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0; background: var(--ink);
  transition: width .25s ease;
}
.has-dropdown > .dropdown-trigger:hover::after,
.has-dropdown > .dropdown-trigger[aria-expanded="true"]::after { width: calc(100% - 18px); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: -8px;
  background: var(--white);
  min-width: 264px;
  list-style: none; margin: 0; padding: 8px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(43, 37, 32, 0.06);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
/* invisible bridge so cursor can move into dropdown without it closing */
.dropdown::before {
  content: ""; position: absolute;
  top: -12px; left: 0; right: 0; height: 12px;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown > .dropdown-trigger[aria-expanded="true"] + .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
/* scoped with .nav-menu to beat `.nav-menu a:not(.btn)` specificity */
.nav-menu .dropdown li a {
  display: block;
  padding: 11px 16px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .2px;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}
.nav-menu .dropdown li a:hover {
  background: var(--brand-soft);
  color: var(--ink);
}
.nav-menu .dropdown li a::after { display: none; }
.dropdown li + li { margin-top: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--ink); color: var(--white);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  letter-spacing: .5px;
  border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); opacity: 1; box-shadow: var(--shadow-md); }
.btn.btn-light { background: var(--white); color: var(--ink); }
.btn.btn-brand { background: var(--brand-deep); color: var(--ink); }
.btn.btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--ink); box-shadow: none; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(circle at 20% 10%, var(--brand-blush) 0%, transparent 50%),
    linear-gradient(135deg, var(--brand) 0%, var(--brand-soft) 100%);
  padding: 110px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute;
  width: 280px; height: 280px;
  background: var(--white); opacity: .18;
  border-radius: 50%;
  z-index: 0;
}
.hero::before { top: -120px; left: -80px; }
.hero::after { bottom: -140px; right: -100px; }
.hero .container { position: relative; z-index: 2; }

/* Scattered cocktail images in hero */
.hero-floaties {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero-floaties .float-img {
  position: absolute;
  width: 200px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(43, 37, 32, 0.18);
  transform-origin: center;
  border: 4px solid var(--white);
}
.hero-floaties .f1 { top: 6%; left: 2%; transform: rotate(-9deg); width: 180px; }
.hero-floaties .f2 { top: 14%; right: 3%; transform: rotate(8deg); width: 220px; }
.hero-floaties .f3 { bottom: 6%; left: 6%; transform: rotate(6deg); width: 170px; }
.hero-floaties .f4 { bottom: 10%; right: 5%; transform: rotate(-7deg); width: 200px; }

/* Balance one left / one right at tablet so hero isn't lopsided */
@media (max-width: 1280px) {
  .hero-floaties .f1 { display: block; width: 150px; top: 8%; left: 1%; transform: rotate(-8deg); }
  .hero-floaties .f2 { display: block; width: 160px; top: 6%; right: 1%; transform: rotate(7deg); }
  .hero-floaties .f3 { display: none; }
  .hero-floaties .f4 { display: none; }
}
/* Mobile: keep all four but tuck them into the corners (within hero padding) */
@media (max-width: 900px) {
  .hero { padding: 128px 0 116px; }
  .hero-floaties { display: block; }
  .hero-floaties .float-img {
    border-width: 3px;
    box-shadow: 0 10px 24px rgba(43, 37, 32, 0.18);
  }
  .hero-floaties .f1 { display: block; width: 92px; top: 14px; left: 3%; transform: rotate(-8deg); }
  .hero-floaties .f2 { display: block; width: 92px; top: 14px; right: 3%; transform: rotate(8deg); }
  .hero-floaties .f3 { display: block; width: 84px; bottom: 16px; left: 4%; transform: rotate(7deg); }
  .hero-floaties .f4 { display: block; width: 84px; bottom: 16px; right: 4%; transform: rotate(-7deg); }
}
@media (max-width: 380px) {
  /* very narrow: keep just the top pair so text has room */
  .hero-floaties .f3, .hero-floaties .f4 { display: none; }
  .hero-floaties .f1, .hero-floaties .f2 { width: 78px; }
}
.hero h1 { color: var(--ink); margin-bottom: .4em; }
.hero .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 720px; margin: 0 auto 32px;
  color: var(--ink-soft);
}
.hero .hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Inline trust badge under hero */
.hero-trust {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.75);
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.hero-trust .stars { color: #00b67a; font-weight: 700; }

/* ---------- Page Hero (slimmer) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-soft) 100%);
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { max-width: 700px; margin: 0 auto; color: var(--ink-soft); }

/* ---------- Cards / Grids ---------- */
.grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
/* 4-block grids: 4 → 2x2 → 1 (avoids 3+1 orphan) */
.grid-4 {
  display: grid; gap: 28px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
}
.card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 37, 32, 0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-top: 0; }
.card .card-tag {
  display: inline-block;
  background: var(--brand-soft); color: var(--ink);
  font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 999px;
  letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 12px;
}

/* Numbered step cards — number badge stacked above the heading */
.steps { counter-reset: step; }
.steps .step {
  position: relative;
  padding-top: 100px; /* clear room for the 46px badge + breathing space */
}
.steps .step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 32px; top: 34px;
  width: 46px; height: 46px;
  background: var(--brand); color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  box-shadow: 0 6px 16px rgba(43, 37, 32, 0.12);
}
.steps .step h3 { margin-top: 0; }

/* Package list */
.package {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px;
  border-top: 6px solid var(--brand);
}
.package h2 { margin-top: 0; }
.package .recipe {
  font-style: italic; color: var(--gold);
  margin-bottom: 16px; font-size: 15px;
}
.package .best-for {
  margin-top: 16px;
  font-size: 14px; color: var(--ink);
  background: var(--brand-blush);
  padding: 10px 14px;
  border-radius: 8px;
}

/* Review block */
.review {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--brand-deep);
  display: flex;
  flex-direction: column;
}
.review .stars { color: #f5b50a; font-size: 18px; letter-spacing: 2px; margin-bottom: 6px; }
.review h3 { font-size: 1.1rem; margin-bottom: 12px; }
.review blockquote {
  margin: 0 0 12px;
  font-style: italic;
  color: var(--ink);
  font-size: 15px;
  flex: 1; /* push cite to card bottom for even alignment */
}
.review cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
  font-size: 14px;
  margin-top: auto;
  padding-top: 8px;
}

/* What's included list */
.included-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.included-list li {
  padding-left: 32px;
  position: relative;
  color: var(--ink);
}
.included-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--brand); color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}

/* FAQ accordion */
.faq-group { margin-bottom: 40px; }
.faq-group > h2 {
  border-bottom: 2px solid var(--brand);
  padding-bottom: 10px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600; font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 26px; color: var(--brand-deep);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
  padding: 0 24px 22px;
  color: var(--ink-soft);
}
.faq-item .answer a { color: var(--gold); font-weight: 600; }

/* Coverage list */
.coverage-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin: 24px auto 0;
  max-width: 820px;
}
.coverage-tags span,
.coverage-tags a {
  background: var(--white);
  padding: 8px 16px; border-radius: 999px;
  font-size: 14px; color: var(--ink);
  border: 1px solid var(--brand);
  display: inline-block;
  text-decoration: none;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.coverage-tags a:hover {
  background: var(--brand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  opacity: 1;
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 110px; /* so sticky header doesn't cover anchors */
}
@media (max-width: 600px) {
  .contact-form, .contact-info { padding: 22px; }
}
#form-message { scroll-margin-top: 120px; }
#form-message:focus { outline: none; }

/* Required-field marker */
.field label .req { color: #b3261e; margin-left: 2px; }
.field .helper {
  display: block; font-size: 13px; color: var(--ink-soft);
  margin-top: 6px;
}
.required-note {
  font-size: 13px; color: var(--ink-soft);
  margin: -8px 0 16px;
}
.contact-form .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (max-width: 600px) {
  .contact-form .row { grid-template-columns: 1fr; }
}
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 14px; font-weight: 600;
  margin-bottom: 6px; color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e7dfd9;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: var(--cream);
  transition: border .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--brand-deep);
}
.field textarea { min-height: 120px; resize: vertical; }

.contact-info {
  background: var(--brand-blush);
  padding: 32px;
  border-radius: var(--radius);
}
.contact-info h3 { margin-top: 0; }
.contact-info .info-block {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(43, 37, 32, 0.08); /* quieter divider */
}
.contact-info .info-block:last-child { border-bottom: 0; padding-bottom: 0; }
/* Quieter contact links — not buttons, keeps form CTA the only true button */
.contact-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-weight: 600; font-size: 15px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  transition: border-color .2s ease;
}
.contact-link:hover { border-bottom-color: var(--gold); opacity: 1; }
.contact-link + .contact-link { margin-left: 18px; }
.contact-link.trustpilot { color: #00603e; }
.contact-link.trustpilot:hover { border-bottom-color: #00603e; }

/* Social highlight section */
.social-highlight {
  background: var(--ink);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.social-highlight h2 { color: var(--white); }
.social-highlight p { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 28px; }
.social-row {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
}
.social-row a {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brand); color: var(--ink);
  padding: 14px 24px; border-radius: 999px;
  font-weight: 600;
  transition: transform .2s ease;
}
.social-row a:hover { transform: translateY(-3px); opacity: 1; }
.social-row a.trustpilot {
  background: #00b67a; color: #fff;
}
.social-row a svg { width: 20px; height: 20px; }

/* Section heading helper */
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading p { max-width: 640px; margin: 0 auto; }
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}

/* CTA strip */
.cta-strip {
  background: var(--brand);
  text-align: center;
  padding: 64px 24px;
}
.cta-strip h2 { margin-bottom: 12px; }
.cta-strip p { color: var(--ink); margin-bottom: 24px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 60px 0 24px;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--brand); opacity: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 8px; font-size: 14px; }
.footer-brand img { height: 70px; border-radius: 8px; margin-bottom: 14px; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a {
  width: 44px; height: 44px; /* WCAG 2.5.5 touch target */
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.footer-socials a:hover { background: var(--brand); }
.footer-socials svg { width: 18px; height: 18px; fill: currentColor; }
.copyright {
  padding-top: 24px; font-size: 13px; text-align: center;
}

/* ---------- Mobile Nav ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 340px; height: 100vh;
    background: var(--brand);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px;
    gap: 20px;
    transition: right .3s ease;
    box-shadow: -12px 0 32px rgba(0,0,0,.15);
    overflow-y: auto;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 17px; }
  .has-dropdown > .dropdown-trigger {
    font-size: 17px;
    padding: 8px 28px 8px 0;
    width: 100%;
    text-align: left;
  }
  .has-dropdown > .dropdown-trigger::before {
    right: 8px;
    font-size: 14px;
  }
  .has-dropdown > .dropdown-trigger::after { display: none; }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    background: transparent;
    box-shadow: none;
    padding: 8px 0 8px 16px;
    min-width: 0;
    display: none;
    border: 0;
  }
  .has-dropdown.open .dropdown { display: block; }
  .has-dropdown > .dropdown-trigger[aria-expanded="true"] + .dropdown { display: block; }
  .dropdown li + li { border-top: 0; }
  .nav-menu .dropdown li a {
    padding: 10px 0;
    font-size: 16px;
    white-space: normal;
    border-radius: 0;
  }
  .nav-menu .dropdown li a:hover {
    background: transparent;
    opacity: .7;
  }
}

/* ---------- Cocktail Imagery ---------- */
.cocktail-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2-up on mobile */
  gap: 14px;
}
@media (min-width: 640px) {
  .cocktail-gallery { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (min-width: 900px) {
  .cocktail-gallery { grid-template-columns: repeat(4, 1fr); }
}
.cocktail-gallery .ck {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.cocktail-gallery .ck:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-md);
}
.cocktail-gallery .ck span {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  backdrop-filter: blur(4px);
}

/* Package with hero image */
.package.with-image { padding-top: 0; overflow: hidden; }
.package .pkg-image {
  margin: 0 -36px 28px;
  height: 420px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 700px) {
  .package .pkg-image { height: 360px; }
}

/* Hero side image (split layout) */
.hero.hero-split { padding: 90px 0 80px; text-align: left; }
.hero.hero-split .hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero.hero-split .hero-cta { justify-content: flex-start; }
.hero.hero-split .hero-image {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
  max-height: 460px;
}
@media (max-width: 800px) {
  .hero.hero-split { text-align: center; padding: 70px 0; }
  .hero.hero-split .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero.hero-split .hero-cta { justify-content: center; }
  .hero.hero-split .hero-image { max-height: 360px; margin: 0 auto; max-width: 320px; width: 100%; }
}

/* Feature image inline */
.feature-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 100%;
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.bg-soft { background: var(--brand-blush); }
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
