/* ==========================================================================
   Little Sips of Heaven — design system
   A DBA of Kayla E LLC · Fort Wayne, Indiana
   ========================================================================== */

:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  /* Content widths */
  --content-narrow: 680px;
  --content-default: 1020px;
  --content-wide: 1240px;

  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Fonts */
  --font-display: 'Chillax', 'Trebuchet MS', sans-serif;
  --font-body: 'General Sans', 'Helvetica Neue', sans-serif;
}

/* ---------- Light theme (default) ---------- */
:root,
[data-theme='light'] {
  --color-bg: #f6fbfe;
  --color-surface: #ffffff;
  --color-surface-2: #eef7fd;
  --color-surface-offset: #e4f2fb;
  --color-border: #cfe6f5;
  --color-divider: #dfeef8;

  --color-text: #1f3346;
  --color-text-muted: #587184;
  --color-text-faint: #8ba3b4;
  --color-text-inverse: #ffffff;

  --color-sky: #8ed2f4;
  --color-sky-soft: #d9eefb;
  --color-sky-deep: #1c6b96;

  --color-pink: #f2679b;
  --color-pink-soft: #fde0eb;
  --color-pink-deep: #c22b64;

  --color-yellow: #f7d84e;
  --color-yellow-soft: #fdf3c9;
  --color-yellow-deep: #8a6a05;

  --color-purple: #a98ce4;
  --color-purple-soft: #ece3fb;
  --color-purple-deep: #61409f;

  --color-primary: #d62e6c;
  --color-primary-hover: #ad2255;

  --shadow-sm: 0 1px 3px rgba(31, 51, 70, 0.07);
  --shadow-md: 0 6px 20px rgba(31, 51, 70, 0.09);
  --shadow-lg: 0 18px 44px rgba(31, 51, 70, 0.13);
  --hero-scrim: linear-gradient(
    100deg,
    rgba(246, 251, 254, 0.97) 0%,
    rgba(246, 251, 254, 0.94) 44%,
    rgba(246, 251, 254, 0.55) 68%,
    rgba(246, 251, 254, 0.05) 92%
  );
}

/* ---------- Dark theme ---------- */
[data-theme='dark'] {
  --color-bg: #0e1a26;
  --color-surface: #152532;
  --color-surface-2: #1a2c3b;
  --color-surface-offset: #1e3345;
  --color-border: #2b4457;
  --color-divider: #23394b;

  --color-text: #e4eef6;
  --color-text-muted: #9db4c6;
  --color-text-faint: #6d8598;
  --color-text-inverse: #10202c;

  --color-sky: #7cc6ec;
  --color-sky-soft: #1c3346;
  --color-sky-deep: #9ad6f5;

  --color-pink: #f489b1;
  --color-pink-soft: #3a2130;
  --color-pink-deep: #f9a9c6;

  --color-yellow: #f5dc73;
  --color-yellow-soft: #3a3320;
  --color-yellow-deep: #f7e49a;

  --color-purple: #bda4ee;
  --color-purple-soft: #2c2542;
  --color-purple-deep: #cdbaf5;

  --color-primary: #f489b1;
  --color-primary-hover: #f9a9c6;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.38);
  --shadow-lg: 0 18px 44px rgba(0, 0, 0, 0.46);
  --hero-scrim: linear-gradient(
    100deg,
    rgba(14, 26, 38, 0.97) 0%,
    rgba(14, 26, 38, 0.92) 38%,
    rgba(14, 26, 38, 0.45) 62%,
    rgba(14, 26, 38, 0) 82%
  );
}

/* ==========================================================================
   Base
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  text-wrap: balance;
  color: var(--color-text);
}

p,
li {
  text-wrap: pretty;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

ul[role='list'] {
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection {
  background: var(--color-pink-soft);
  color: var(--color-text);
}

a,
button,
input,
textarea,
select {
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

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

@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;
  }
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.wrap {
  width: min(100% - 2.5rem, var(--content-wide));
  margin-inline: auto;
}

.wrap-default {
  width: min(100% - 2.5rem, var(--content-default));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - 2.5rem, var(--content-narrow));
  margin-inline: auto;
}

section {
  padding-block: clamp(var(--space-12), 7vw, var(--space-24));
}

.section-tint {
  background: var(--color-surface-2);
}

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-sky-deep);
  margin-bottom: var(--space-3);
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-10);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.section-head p {
  color: var(--color-text-muted);
}

.lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem 1.6rem;
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

[data-theme='dark'] .btn-primary {
  color: #2a0d1a;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-sky-deep);
  color: var(--color-sky-deep);
  transform: translateY(-2px);
}

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

.btn-row.center {
  justify-content: center;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-3);
}

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

.brand img {
  height: 52px;
  width: auto;
}

@media (max-width: 480px) {
  .brand img {
    height: 42px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav a {
  padding: 0.5rem 0.7rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: var(--radius-full);
}

.nav a:hover {
  color: var(--color-text);
  background: var(--color-surface-offset);
}

.nav a.active {
  color: var(--color-sky-deep);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-surface);
  flex-shrink: 0;
}

.theme-toggle:hover {
  color: var(--color-text);
  border-color: var(--color-sky-deep);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
}

@media (max-width: 940px) {
  .nav {
    position: fixed;
    inset: 68px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-4);
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
    display: none;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    border-radius: var(--radius-md);
  }
  .nav-toggle {
    display: grid;
  }
  .header-cta {
    display: none;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  isolation: isolate;
  padding-block: clamp(var(--space-12), 6vw, var(--space-20));
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-scrim);
}

@media (max-width: 860px) {
  .hero-bg::after {
    background: linear-gradient(
      180deg,
      color-mix(in srgb, var(--color-bg) 92%, transparent) 0%,
      color-mix(in srgb, var(--color-bg) 90%, transparent) 62%,
      color-mix(in srgb, var(--color-bg) 62%, transparent) 100%
    );
  }
}

.hero-content {
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.25rem, 1.2rem + 3.2vw, 3.75rem);
  letter-spacing: -0.015em;
  margin-bottom: var(--space-5);
}

.hero .lede {
  margin-bottom: var(--space-6);
  max-width: 32rem;
  font-size: var(--text-base);
}

.hero-note {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Two-badge "we do both" strip */
.dual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  max-width: 32rem;
}

.dual-item {
  padding: var(--space-3) var(--space-4);
  background: color-mix(in srgb, var(--color-surface) 88%, transparent);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(6px);
}

.dual-item .k {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.dual-item .v {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.45;
}

@media (max-width: 560px) {
  .dual {
    grid-template-columns: 1fr;
  }
}

/* Page banner for interior pages */
.page-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(var(--space-12), 7vw, var(--space-20));
  background: var(--color-surface-2);
  border-bottom: 1px solid var(--color-divider);
}

.page-banner::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: -30% -12% -30% 46%;
  background:
    radial-gradient(closest-side, color-mix(in srgb, var(--color-pink) 42%, transparent), transparent) 18% 30% / 46% 62% no-repeat,
    radial-gradient(closest-side, color-mix(in srgb, var(--color-yellow) 48%, transparent), transparent) 62% 12% / 40% 55% no-repeat,
    radial-gradient(closest-side, color-mix(in srgb, var(--color-purple) 40%, transparent), transparent) 78% 78% / 44% 58% no-repeat,
    radial-gradient(closest-side, color-mix(in srgb, var(--color-sky) 55%, transparent), transparent) 32% 88% / 48% 60% no-repeat;
  filter: blur(46px);
  opacity: 0.75;
}

[data-theme='dark'] .page-banner::before {
  opacity: 0.4;
}

@media (max-width: 720px) {
  .page-banner::before {
    inset: -20% -20% 40% 20%;
    opacity: 0.5;
  }
}

.page-banner h1 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  max-width: 20ch;
}

.page-banner .lede {
  max-width: 46rem;
}

/* ==========================================================================
   Two-track (pop-up vs catering) cards
   ========================================================================== */

.track-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
}

.track {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.track:hover {
  box-shadow: var(--shadow-md);
}

.track-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.track-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-body {
  padding: var(--space-6) var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.track-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.tag-sky {
  background: var(--color-sky-soft);
  color: var(--color-sky-deep);
}

.tag-pink {
  background: var(--color-pink-soft);
  color: var(--color-pink-deep);
}

.tag-purple {
  background: var(--color-purple-soft);
  color: var(--color-purple-deep);
}

.tag-yellow {
  background: var(--color-yellow-soft);
  color: var(--color-yellow-deep);
}

.track h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.track p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-5);
}

.track ul {
  list-style: none;
  margin-bottom: var(--space-6);
  display: grid;
  gap: var(--space-2);
}

.track ul li {
  position: relative;
  padding-left: 1.6rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.track ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-sky);
}

.track .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ==========================================================================
   Flavor / menu cards
   ========================================================================== */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}

.menu-card {
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.menu-card h3 {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.menu-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Drink photo cards */
.drink-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-5);
}

@media (min-width: 1140px) {
  .drink-grid.grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .drink-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 46rem;
    margin-inline: auto;
  }

  .drink-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 66rem;
    margin-inline: auto;
  }
}

.price-grid-1 {
  max-width: 30rem;
  margin-inline: auto;
}

.drink-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.35s ease;
}

.drink-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(31, 51, 70, 0.13);
}

.drink-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-surface-2);
}

.drink-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.drink-card:hover .drink-photo img {
  transform: scale(1.04);
}

.drink-body {
  padding: var(--space-5) var(--space-5) var(--space-6);
}

.drink-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-sky-deep);
  background: var(--color-surface-2);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: var(--space-3);
}

.drink-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.drink-head h3 {
  margin-bottom: 0;
}

.drink-price {
  flex: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.drink-body h3 {
  font-size: var(--text-lg);
  line-height: 1.2;
  margin-bottom: var(--space-2);
}

.drink-body p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Premium cream tops */
.cream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
  max-width: 60rem;
  margin-inline: auto;
}

.cream-card {
  position: relative;
  padding: var(--space-8) var(--space-6) var(--space-7);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
}

.cream-card::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-sky), var(--color-purple), var(--color-pink));
}

.cream-dot {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 0 auto var(--space-4);
  box-shadow: inset 0 -6px 12px rgba(0, 0, 0, 0.09), 0 2px 6px rgba(31, 51, 70, 0.12);
}

.cream-card h3 {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.cream-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-bottom: var(--space-4);
  border: 2px solid var(--color-surface);
  box-shadow: 0 0 0 1px var(--color-border);
}

/* Simple pill list */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
}

.pills li {
  padding: 0.4rem 0.9rem;
  font-size: var(--text-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
}

/* ==========================================================================
   Feature rows
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

.split-media img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.split h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.split p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-media {
    order: 0;
  }
}

/* ==========================================================================
   Steps
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
  counter-reset: step;
}

.step {
  padding: var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.step-num {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-sky-soft);
  color: var(--color-sky-deep);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.step h3 {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ==========================================================================
   Pricing
   ========================================================================== */

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: var(--space-6);
  align-items: start;
}

.price-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 56rem;
  margin-inline: auto;
}

.price-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--space-8) var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border-color: var(--color-pink);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}

.price-card::before {
  content: '';
  display: block;
  height: 1.55rem;
  margin-bottom: var(--space-4);
}

.price-card.featured::before {
  display: none;
}

@media (max-width: 900px) {
  .price-card::before {
    display: none;
  }
}

.price-flag {
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-pink-soft);
  color: var(--color-pink-deep);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.price-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.price-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.price-amount {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-pink-deep);
  line-height: 1;
}

.price-unit {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-top: var(--space-2);
  margin-bottom: var(--space-6);
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.price-card ul li {
  position: relative;
  padding-left: 1.75rem;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.price-card ul li::before {
  content: '';
  position: absolute;
  left: 0.15rem;
  top: 0.42em;
  width: 0.55rem;
  height: 0.95rem;
  border: solid var(--color-sky-deep);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.price-card .btn {
  margin-top: auto;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

th,
td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-divider);
}

th {
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface-2);
  white-space: nowrap;
}

td {
  color: var(--color-text-muted);
}

td:last-child,
th:last-child {
  text-align: right;
  white-space: nowrap;
}

tbody tr:last-child td {
  border-bottom: none;
}

/* ==========================================================================
   Notes / callouts
   ========================================================================== */

.note {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.note h3 {
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.note p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.note p + p {
  margin-top: var(--space-3);
}

.note-sky {
  background: var(--color-sky-soft);
  border-color: transparent;
}

.note-yellow {
  background: var(--color-yellow-soft);
  border-color: transparent;
}

.note-purple {
  background: var(--color-purple-soft);
  border-color: transparent;
}

.note-pink {
  background: var(--color-pink-soft);
  border-color: transparent;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  display: grid;
  gap: var(--space-3);
}

details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

details[open] {
  border-color: var(--color-sky);
}

summary {
  padding: var(--space-5) var(--space-6);
  font-weight: 600;
  font-size: var(--text-base);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-sky-deep);
  flex-shrink: 0;
}

details[open] summary::after {
  content: '–';
}

details .answer {
  padding: 0 var(--space-6) var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

details .answer p + p {
  margin-top: var(--space-3);
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-card {
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: var(--text-sm);
  font-weight: 600;
}

.field .hint {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--text-sm);
  width: 100%;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--color-sky-deep);
  outline: none;
  box-shadow: 0 0 0 3px var(--color-sky-soft);
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.check {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.55rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  cursor: pointer;
  background: var(--color-bg);
}

.check input {
  width: auto;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.check:hover {
  border-color: var(--color-sky-deep);
}

@media (max-width: 640px) {
  .field-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Sister brand strip
   ========================================================================== */

section:has(> .wrap-default > .sister),
section:has(> .wrap-default > .cta-band) {
  padding-block: clamp(var(--space-8), 4vw, var(--space-14));
}

.sister {
  background: #0d1b2a;
  color: #ede8dd;
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-8), 5vw, var(--space-12));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-8);
  align-items: center;
}

[data-theme='dark'] .sister {
  background: #08131e;
  border: 1px solid #d4a017;
}

.sister h2 {
  color: #fdfaf3;
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.sister p {
  color: #b8c4d0;
  font-size: var(--text-sm);
  max-width: 52ch;
}

.sister .btn {
  background: #d4a017;
  color: #0d1b2a;
  border-color: #d4a017;
  white-space: nowrap;
}

.sister .btn:hover {
  background: #b8880e;
  border-color: #b8880e;
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .sister {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: linear-gradient(135deg, var(--color-sky-soft), var(--color-pink-soft));
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-10), 6vw, var(--space-20));
  text-align: center;
}

[data-theme='dark'] .cta-band {
  background: linear-gradient(135deg, var(--color-surface-offset), var(--color-purple-soft));
}

.cta-band h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.cta-band p {
  color: var(--color-text-muted);
  max-width: 46ch;
  margin: 0 auto var(--space-8);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-16) var(--space-8);
  margin-top: var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.footer-brand img {
  height: 76px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 34ch;
}

.footer h3 {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}

.footer ul {
  list-style: none;
  display: grid;
  gap: var(--space-2);
}

.footer ul a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.footer ul a:hover {
  color: var(--color-sky-deep);
}

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---- Booking form states ---- */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 1rem;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--color-muted);
  min-height: 1.25rem;
}
.form-status:empty { margin-top: 0; min-height: 0; }
.form-status.is-error { color: var(--color-pink-deep); font-weight: 600; }
.form-status.is-note { color: var(--color-sky-deep); font-weight: 600; }

.form-done { text-align: center; padding: 1rem 0 0.5rem; }
.form-done h2 {
  font-size: var(--text-2xl);
  margin: 1.25rem 0 0.75rem;
}
.form-done p {
  color: var(--color-muted);
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}
.form-done-mark {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--color-sky-deep);
}
.form-done-mark svg { width: 1.75rem; height: 1.75rem; }

#form-submit[disabled] { opacity: 0.6; cursor: progress; }
