/* ==========================================================================
   DREAM COCKTAILZ
   Design system. All values are tokens. Do not hardcode colors below :root.
   ========================================================================== */

:root {
  /* ---- Fonts ---- */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Helvetica Neue', sans-serif;

  /* ---- Type scale ---- */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;

  --leading-none: 1;
  --leading-tight: 1.14;
  --leading-snug: 1.35;
  --leading-normal: 1.65;

  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;

  --tracking-tight: -0.025em;
  --tracking-normal: 0em;
  --tracking-wide: 0.06em;
  --tracking-widest: 0.16em;

  /* ---- Color: brand ---- */
  --navy: hsl(231, 48%, 7%);
  --navy-lift: hsl(231, 38%, 12%);
  --navy-card: hsl(231, 32%, 15%);
  --plum: hsl(283, 48%, 12%);
  --plum-lift: hsl(283, 38%, 18%);
  --ink: hsl(0, 0%, 3%);

  --gold: hsl(43, 63%, 55%);
  --gold-bright: hsl(43, 74%, 66%);
  --gold-deep: hsl(38, 58%, 42%);
  --champagne: hsl(43, 76%, 80%);

  --coral: hsl(4, 77%, 61%);
  --mango: hsl(30, 89%, 58%);
  --teal: hsl(181, 76%, 35%);
  --tamarind: hsl(24, 52%, 48%);
  --creamflavor: hsl(38, 44%, 78%);

  --cream: hsl(41, 100%, 96%);
  --cream-deep: hsl(41, 46%, 91%);

  /* ---- Color: text on dark ---- */
  --on-dark-1: hsl(41, 62%, 95%);
  --on-dark-2: hsl(41, 20%, 76%);
  --on-dark-3: hsl(41, 13%, 60%);

  /* ---- Color: text on light ---- */
  --on-light-1: hsl(231, 42%, 11%);
  --on-light-2: hsl(231, 14%, 36%);
  --on-light-3: hsl(231, 10%, 52%);

  /* ---- Hairlines ---- */
  --line-dark: hsl(43, 30%, 70%, 0.18);
  --line-light: hsl(231, 20%, 20%, 0.14);

  /* ---- Spacing ---- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --section-y: var(--space-24);
  --container-max: 1180px;
  --content-max: 68ch;
  --gap-cards: var(--space-6);
  --btn-x: var(--space-8);
  --btn-y: var(--space-3);

  /* ---- Radius: sharp luxury personality ---- */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-full: 9999px;

  /* ---- Shadows ---- */
  --shadow-xs: 0 1px 2px hsl(231 48% 4% / 0.18);
  --shadow-sm: 0 1px 4px hsl(231 48% 4% / 0.22), 0 1px 2px hsl(231 48% 4% / 0.16);
  --shadow-md: 0 4px 14px hsl(231 48% 4% / 0.26), 0 2px 4px hsl(231 48% 4% / 0.18);
  --shadow-lg: 0 14px 36px hsl(231 48% 4% / 0.32), 0 4px 8px hsl(231 48% 4% / 0.2);
  --shadow-xl: 0 26px 68px hsl(231 48% 4% / 0.4), 0 8px 16px hsl(231 48% 4% / 0.22);

  --header-h: 68px;
  --bar-h: 34px;
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--on-dark-1);
  background: var(--navy);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: var(--space-16); }

.bg-navy { background: var(--navy); color: var(--on-dark-1); }
.bg-plum { background: linear-gradient(160deg, var(--plum), var(--navy) 70%); color: var(--on-dark-1); }
.bg-ink { background: var(--ink); color: var(--on-dark-1); }
.bg-cream { background: var(--cream); color: var(--on-light-1); }

/* Subtle woven texture so no panel is ever flat */
.bg-navy, .bg-ink, .bg-plum { position: relative; }
.bg-navy::before, .bg-ink::before, .bg-plum::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 18% 12%, hsl(43 63% 55% / 0.07), transparent 42%),
    radial-gradient(circle at 84% 78%, hsl(283 48% 40% / 0.14), transparent 46%);
}
.bg-cream::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 88% 6%, hsl(43 63% 55% / 0.12), transparent 40%);
}
.section > .wrap { position: relative; z-index: 1; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.display {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--weight-black);
  line-height: var(--leading-none);
  letter-spacing: var(--tracking-tight);
}
.h1 {
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}
.h2 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}
.h3 {
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
}
.h4 {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
}
.lead {
  font-size: var(--text-lg);
  line-height: var(--leading-normal);
  max-width: var(--content-max);
}
.body { max-width: var(--content-max); }
.small { font-size: var(--text-sm); }

.eyebrow {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.eyebrow::after {
  content: '';
  height: 1px;
  flex: 1;
  max-width: 72px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.bg-cream .eyebrow { color: var(--gold-deep); }

.muted { color: var(--on-dark-2); }
.bg-cream .muted { color: var(--on-light-2); }
.faint { color: var(--on-dark-3); }
.bg-cream .faint { color: var(--on-light-3); }
.gold { color: var(--gold); }
.bg-cream .gold { color: var(--gold-deep); }

.section-head { margin-bottom: var(--space-12); }
.section-head .h2 { margin-bottom: var(--space-4); }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--btn-y) var(--btn-x);
  min-height: 46px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.2s ease,
              color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(140deg, var(--gold-bright), var(--gold-deep));
  color: var(--ink);
  box-shadow: var(--shadow-sm), inset 0 1px 0 hsl(43 80% 84% / 0.6);
}
.btn--primary:hover { box-shadow: var(--shadow-md), inset 0 1px 0 hsl(43 80% 88% / 0.7); }

.btn--ghost {
  background: transparent;
  color: var(--on-dark-1);
  border-color: var(--line-dark);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }
.bg-cream .btn--ghost { color: var(--on-light-1); border-color: var(--line-light); }
.bg-cream .btn--ghost:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.btn--wa {
  background: hsl(142, 62%, 38%);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--wa:hover { background: hsl(142, 62%, 33%); box-shadow: var(--shadow-md); }

.btn--sm { min-height: 38px; padding: var(--space-2) var(--space-4); font-size: var(--text-xs); }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.textlink {
  color: var(--gold);
  font-weight: var(--weight-semibold);
  border-bottom: 1px solid hsl(43 63% 55% / 0.4);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.textlink:hover { border-color: var(--gold); color: var(--gold-bright); }
.bg-cream .textlink { color: var(--gold-deep); border-color: hsl(38 58% 42% / 0.4); }

/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announce {
  background: linear-gradient(90deg, var(--plum), var(--navy) 55%, var(--plum));
  border-bottom: 1px solid var(--line-dark);
  height: var(--bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 60;
}
.announce span {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  color: var(--champagne);
  text-align: center;
  padding-inline: var(--space-4);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.announce span.out { opacity: 0; transform: translateY(-8px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: hsl(231 48% 7% / 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}
.header.stuck { box-shadow: var(--shadow-lg); background: hsl(231 48% 6% / 0.96); }
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.brand { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.brand svg { width: 34px; height: 34px; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  color: var(--on-dark-1);
  line-height: 1;
}
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav a {
  position: relative;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  color: var(--on-dark-2);
  padding-block: var(--space-2);
  transition: color 0.2s ease;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav a:hover { color: var(--on-dark-1); }
.nav a:hover::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--gold); }
.nav a[aria-current="page"]::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }

.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  color: var(--on-dark-1);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.burger:hover { border-color: var(--gold); color: var(--gold); }
.burger svg { width: 20px; height: 20px; }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: hsl(231 48% 5% / 0.97);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.drawer[hidden] { display: none; }
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-8); }
.drawer nav { display: flex; flex-direction: column; }
.drawer nav a {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-semibold);
  color: var(--on-dark-1);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--line-dark);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.drawer nav a:hover, .drawer nav a[aria-current="page"] { color: var(--gold); padding-left: var(--space-2); }
.drawer-foot { margin-top: var(--space-8); display: grid; gap: var(--space-3); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero--page { min-height: 52vh; }

.hero-bg {
  position: absolute;
  inset: -10% 0 0 0;
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--plum) 42%, hsl(283 40% 8%) 70%, var(--ink) 100%);
  background-size: 300% 300%;
  animation: gradientShift 16s ease infinite;
  will-change: transform;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  will-change: transform;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, hsl(231 48% 5% / 0.72) 0%, hsl(231 48% 5% / 0.5) 45%, hsl(231 48% 5% / 0.94) 100%);
}

/* Rotating dreamcatcher ring, drawn from the client's profile mark */
.ring {
  position: absolute;
  top: 50%; right: -14%;
  width: min(760px, 92vw);
  aspect-ratio: 1;
  transform: translateY(-50%);
  opacity: 0.3;
  pointer-events: none;
  animation: slowSpin 90s linear infinite;
}
@keyframes slowSpin { to { transform: translateY(-50%) rotate(360deg); } }

.hero-content { position: relative; z-index: 2; padding-block: var(--space-24); width: 100%; }
.hero-content .display { max-width: 16ch; margin-bottom: var(--space-6); }
.hero-content .lead { max-width: 52ch; color: var(--on-dark-2); }

.trustline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-12);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--on-dark-3);
}
.trustline .dot { width: 3px; height: 3px; border-radius: var(--radius-full); background: var(--gold); }

/* ==========================================================================
   CARDS
   ========================================================================== */
.grid { display: grid; gap: var(--gap-cards); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  padding: var(--space-8);
  background: linear-gradient(165deg, var(--navy-card), var(--navy-lift));
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: hsl(43 40% 60% / 0.34);
}
.card:hover::before { opacity: 1; }
.card .h4 { margin-bottom: var(--space-3); }
.card p { color: var(--on-dark-2); font-size: var(--text-sm); }

.bg-cream .card {
  background: #fff;
  border-color: var(--line-light);
}
.bg-cream .card p { color: var(--on-light-2); }

.card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-6);
  border-radius: var(--radius-sm);
  background: hsl(43 63% 55% / 0.12);
  color: var(--gold);
}
.card-icon svg { width: 22px; height: 22px; }
.bg-cream .card-icon { background: hsl(38 58% 42% / 0.1); color: var(--gold-deep); }

/* Checklist */
.checks { display: grid; gap: var(--space-3); }
.checks li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--on-dark-2);
}
.bg-cream .checks li { color: var(--on-light-2); }
.checks li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  margin-top: 9px;
  border-radius: var(--radius-full);
  background: var(--gold);
}

/* Pill tags */
.pills { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.pill {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-full);
  color: var(--on-dark-2);
}
.bg-cream .pill { border-color: var(--line-light); color: var(--on-light-2); }

/* ==========================================================================
   COCKTAIL CARDS
   ========================================================================== */
.drink {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: linear-gradient(170deg, var(--navy-card), var(--navy));
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.drink:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: hsl(43 40% 60% / 0.34); }
.drink-swatch {
  height: 108px;
  position: relative;
  overflow: hidden;
}
.drink-swatch::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, hsl(231 48% 8% / 0.85));
}
.sw-mango { background: linear-gradient(140deg, var(--mango), hsl(38 92% 44%)); }
.sw-coral { background: linear-gradient(140deg, var(--coral), hsl(340 62% 52%)); }
.sw-teal { background: linear-gradient(140deg, var(--teal), hsl(196 70% 30%)); }
.sw-cream { background: linear-gradient(140deg, var(--creamflavor), hsl(30 40% 62%)); }
.sw-tamarind { background: linear-gradient(140deg, var(--tamarind), hsl(14 54% 34%)); }
.sw-plum { background: linear-gradient(140deg, hsl(283 52% 40%), hsl(266 60% 22%)); }

.drink-body { padding: var(--space-6); display: flex; flex-direction: column; flex: 1; gap: var(--space-3); }
.drink-name { font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--weight-bold); }
.drink-flavor { font-size: var(--text-sm); color: var(--gold); letter-spacing: var(--tracking-wide); }
.drink-note { font-size: var(--text-sm); color: var(--on-dark-2); flex: 1; }
.drink-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3); padding-top: var(--space-4); border-top: 1px solid var(--line-dark);
}
.drink-price { font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--weight-bold); }
.drink-price small { display: block; font-family: var(--font-body); font-size: var(--text-xs); font-weight: var(--weight-regular); color: var(--on-dark-3); letter-spacing: var(--tracking-normal); }

/* ==========================================================================
   SPLIT SECTIONS
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.split--wide-left { grid-template-columns: 1.15fr 1fr; }
.split-media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media--wide { aspect-ratio: 16 / 11; }
.split-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 45%, hsl(231 48% 6% / 0.55));
  pointer-events: none;
}
.media-badge {
  position: absolute;
  left: var(--space-6); bottom: var(--space-6);
  z-index: 2;
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--champagne);
  background: hsl(231 48% 6% / 0.72);
  border: 1px solid var(--line-dark);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}

/* ==========================================================================
   NUMBERED PROCESS
   ========================================================================== */
.steps { display: grid; gap: var(--space-8); grid-template-columns: repeat(3, 1fr); }
.step { position: relative; padding-top: var(--space-6); border-top: 1px solid var(--line-dark); }
.step-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--weight-black);
  color: hsl(43 63% 55% / 0.34);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.step h3 { margin-bottom: var(--space-2); }
.step p { font-size: var(--text-sm); color: var(--on-dark-2); }
.bg-cream .step p { color: var(--on-light-2); }
.bg-cream .step { border-color: var(--line-light); }
.bg-cream .step-num { color: hsl(38 58% 42% / 0.36); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.quote {
  position: relative;
  padding: var(--space-8);
  background: linear-gradient(165deg, var(--navy-card), var(--navy-lift));
  border: 1px solid var(--line-dark);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius-md);
}
.quote p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  line-height: var(--leading-snug);
  margin-bottom: var(--space-6);
}
.quote cite { font-style: normal; font-size: var(--text-sm); font-weight: var(--weight-bold); letter-spacing: var(--tracking-wide); }
.quote cite span { display: block; font-weight: var(--weight-regular); color: var(--on-dark-3); letter-spacing: var(--tracking-normal); margin-top: 2px; }
.ph-flag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--coral);
  border: 1px dashed hsl(4 77% 61% / 0.5);
  padding: 2px var(--space-2);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-4);
}

/* ==========================================================================
   GALLERY
   ========================================================================== */
.filters { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-12); }
.filter {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  background: transparent;
  color: var(--on-dark-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter:hover { color: var(--gold); border-color: var(--gold); }
.filter.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.masonry { columns: 3; column-gap: var(--space-4); }
.masonry figure { margin: 0 0 var(--space-4); break-inside: avoid; }
.shot {
  position: relative;
  display: block;
  width: 100%;
  border: 0; padding: 0;
  background: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.shot img { width: 100%; height: auto; transition: transform 0.5s ease; }
.shot::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, hsl(231 48% 5% / 0.7));
  opacity: 0; transition: opacity 0.3s ease;
}
.shot:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.shot:hover img { transform: scale(1.05); }
.shot:hover::after { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 90;
  background: hsl(231 48% 3% / 0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: var(--space-6);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1000px, 92vw); max-height: 82vh; object-fit: contain; border-radius: var(--radius-md); box-shadow: var(--shadow-xl); }
.lightbox-cap { position: absolute; bottom: var(--space-8); left: 0; right: 0; text-align: center; font-size: var(--text-sm); color: var(--on-dark-2); padding-inline: var(--space-6); }
.lightbox-close {
  position: absolute; top: var(--space-6); right: var(--space-6);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; color: var(--on-dark-1);
  border: 1px solid var(--line-dark); border-radius: var(--radius-full);
  cursor: pointer; transition: all 0.2s ease;
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form { display: grid; gap: var(--space-6); }
.field { display: grid; gap: var(--space-2); }
.field label {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--on-dark-3);
}
.bg-cream .field label { color: var(--on-light-3); }
.field .req { color: var(--coral); }

.field input, .field select, .field textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  min-height: 48px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--on-dark-1);
  background: hsl(231 40% 10%);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-inset, inset 0 1px 3px hsl(231 48% 3% / 0.3));
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { min-height: 128px; resize: vertical; line-height: var(--leading-normal); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px hsl(43 63% 55% / 0.16);
}
.field input::placeholder, .field textarea::placeholder { color: var(--on-dark-3); }

.bg-cream .field input, .bg-cream .field select, .bg-cream .field textarea {
  background: #fff; color: var(--on-light-1); border-color: var(--line-light);
  box-shadow: inset 0 1px 3px hsl(231 20% 40% / 0.08);
}
.bg-cream .field input::placeholder, .bg-cream .field textarea::placeholder { color: var(--on-light-3); }

.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--coral); }
.err { font-size: var(--text-xs); color: var(--coral); display: none; }
.field.invalid .err { display: block; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }

fieldset { border: 0; margin: 0; padding: 0; }
legend {
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--on-dark-3);
  margin-bottom: var(--space-4);
  padding: 0;
}
.bg-cream legend { color: var(--on-light-3); }

.checkgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.check {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--on-dark-2);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.check:hover { border-color: var(--gold); color: var(--on-dark-1); }
.check input { width: 18px; height: 18px; accent-color: hsl(43, 63%, 55%); flex-shrink: 0; margin: 0; min-height: 0; padding: 0; box-shadow: none; }
.check:has(input:checked) { border-color: var(--gold); background: hsl(43 63% 55% / 0.08); color: var(--on-dark-1); }
.bg-cream .check { border-color: var(--line-light); color: var(--on-light-2); }
.bg-cream .check:has(input:checked) { background: hsl(38 58% 42% / 0.08); color: var(--on-light-1); }

/* Multi step */
.stepper { display: flex; gap: var(--space-2); margin-bottom: var(--space-12); flex-wrap: wrap; }
.stepper-item {
  flex: 1; min-width: 90px;
  padding-top: var(--space-3);
  border-top: 2px solid var(--line-dark);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--on-dark-3);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.stepper-item.active { border-color: var(--gold); color: var(--gold); }
.stepper-item.done { border-color: hsl(43 63% 55% / 0.5); color: var(--on-dark-2); }

.step-panel { display: none; }
.step-panel.active { display: grid; gap: var(--space-6); }
.step-nav { display: flex; justify-content: space-between; gap: var(--space-3); margin-top: var(--space-8); }

.review-list { display: grid; gap: var(--space-3); padding: var(--space-6); border: 1px solid var(--line-dark); border-radius: var(--radius-md); background: hsl(231 40% 10%); }
.review-list div { display: flex; gap: var(--space-4); font-size: var(--text-sm); flex-wrap: wrap; }
.review-list dt, .review-list b {
  min-width: 150px; color: var(--on-dark-3); font-weight: var(--weight-regular);
  font-size: var(--text-xs); letter-spacing: var(--tracking-wide); text-transform: uppercase;
}
.review-list span { color: var(--on-dark-1); flex: 1; }

.notice {
  display: flex; gap: var(--space-4);
  padding: var(--space-4) var(--space-6);
  border-left: 2px solid var(--gold);
  background: hsl(43 63% 55% / 0.07);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--on-dark-2);
}
.bg-cream .notice { color: var(--on-light-2); border-color: var(--gold-deep); background: hsl(38 58% 42% / 0.07); }

.form-success {
  display: none;
  padding: var(--space-8);
  border: 1px solid hsl(142 50% 45% / 0.4);
  background: hsl(142 50% 30% / 0.12);
  border-radius: var(--radius-md);
  text-align: center;
}
.form-success.show { display: block; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { border-top: 1px solid var(--line-dark); }
.bg-cream .faq { border-color: var(--line-light); }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.bg-cream .faq-item { border-color: var(--line-light); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-6);
  padding: var(--space-6) 0;
  background: none; border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-q:hover { color: var(--gold); }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); transition: transform 0.28s ease; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.34s ease; }
.faq-a p { padding-bottom: var(--space-6); color: var(--on-dark-2); font-size: var(--text-sm); max-width: var(--content-max); }
.bg-cream .faq-a p { color: var(--on-light-2); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--ink); border-top: 1px solid var(--line-dark); padding-block: var(--space-16) var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--space-12); }
.footer h4 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-6);
}
.footer-links { display: grid; gap: var(--space-3); }
.footer-links a { font-size: var(--text-sm); color: var(--on-dark-2); transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-blurb { font-size: var(--text-sm); color: var(--on-dark-2); max-width: 40ch; margin-block: var(--space-6); }
.footer-tag { font-family: var(--font-display); font-style: italic; color: var(--champagne); font-size: var(--text-lg); }

.footer-bottom {
  margin-top: var(--space-16);
  padding-top: var(--space-6);
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: var(--on-dark-3);
}
.footer-bottom a { transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--gold); }
.legal-links { display: flex; gap: var(--space-6); }

/* ==========================================================================
   FLOATING ACTIONS
   ========================================================================== */
.floaties {
  position: fixed;
  right: var(--space-6);
  bottom: var(--space-6);
  z-index: 45;
  display: grid;
  gap: var(--space-3);
}
.float {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.float:hover { transform: scale(1.08); box-shadow: var(--shadow-xl); }
.float svg { width: 26px; height: 26px; }
.float--wa { background: hsl(142, 62%, 38%); }
.float--call { background: linear-gradient(140deg, var(--gold-bright), var(--gold-deep)); color: var(--ink); }

/* ==========================================================================
   MOTION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-group > * { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-group.visible > * { opacity: 1; transform: translateY(0); }
.reveal-group.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-group.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-group.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-group.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-group.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-group.visible > *:nth-child(6) { transition-delay: 0.4s; }

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  :root { --text-5xl: 2.75rem; --text-4xl: 2.25rem; --text-3xl: 1.75rem; --section-y: var(--space-16); }
  .nav { display: none; }
  .burger { display: flex; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .masonry { columns: 2; }
  .split { gap: var(--space-12); }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.25rem;
    --text-4xl: 1.875rem;
    --text-3xl: 1.5rem;
    --text-2xl: 1.25rem;
    --section-y: var(--space-16);
    --space-16: 3rem;
  }
  .wrap { padding-inline: var(--space-4); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .split, .split--wide-left { grid-template-columns: 1fr; gap: var(--space-8); }
  .split-media { aspect-ratio: 4 / 3; }
  .steps { grid-template-columns: 1fr; gap: var(--space-6); }
  .checkgrid, .field-row { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .hero--page { min-height: auto; }
  .hero-content { padding-block: var(--space-16); }
  .ring { right: -40%; opacity: 0.2; }
  .parallax { background-attachment: scroll; }
  /* Sideways reveals read badly on a narrow screen and push the page wide. */
  .reveal-left, .reveal-right { transform: translateY(24px); }
  .reveal-left.visible, .reveal-right.visible { transform: translateY(0); }
  .floaties { right: var(--space-4); bottom: var(--space-4); }
  .float { width: 50px; height: 50px; }
  .btn { width: 100%; }
  .btn--sm, .btn.btn--inline { width: auto; }
  .btn-row { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .masonry { columns: 1; }
  .brand-sub { display: none; }
}

@media (max-width: 420px) {
  .header-cta .btn { padding-inline: var(--space-4); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-group > * { opacity: 1; transform: none; }
}

@media print {
  .header, .announce, .floaties, .drawer, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
}
