/* ========================================
   THE HEALING MELODY — Design Tokens & Styles
   ======================================== */

/* --- Type Scale --- */
:root {
  --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,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* --- Spacing (4px base) --- */
  --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-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* --- Fonts --- */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;

  /* --- Radius --- */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* --- Transitions --- */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* --- Content Widths --- */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;
}

/* ========================================
   COLOR PALETTE — Healing Melody (Warm Wellness)
   ======================================== */

:root, [data-theme="light"] {
  /* Surfaces */
  --color-bg:             #faf8f4;
  --color-surface:        #fdfcf9;
  --color-surface-2:      #f5f2ec;
  --color-surface-offset: #f0ede6;
  --color-surface-offset-2: #e8e5dd;
  --color-surface-dynamic: #dedad2;
  --color-divider:        #d6d2c9;
  --color-border:         #ccc8be;

  /* Text */
  --color-text:           #2d2a22;
  --color-text-muted:     #7a7668;
  --color-text-faint:     #b0ac9f;
  --color-text-inverse:   #faf8f4;

  /* Primary — Sage Green */
  --color-primary:        #6b7f5e;
  --color-primary-hover:  #566a4b;
  --color-primary-active: #445538;
  --color-primary-highlight: #dce4d6;

  /* Accent — Gold */
  --color-accent:         #c4973a;
  --color-accent-hover:   #a67e2a;
  --color-accent-active:  #8a671e;
  --color-accent-highlight: #f0e5cd;

  /* Shadows */
  --shadow-sm: 0 1px 2px oklch(0.3 0.02 70 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.3 0.02 70 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.3 0.02 70 / 0.12);
}

/* --- Dark Mode --- */
[data-theme="dark"] {
  --color-bg:             #1a1914;
  --color-surface:        #201f1a;
  --color-surface-2:      #262520;
  --color-surface-offset: #222118;
  --color-surface-offset-2: #2b2a24;
  --color-surface-dynamic: #34332c;
  --color-divider:        #2e2d27;
  --color-border:         #3e3d36;

  --color-text:           #d8d4c9;
  --color-text-muted:     #908c80;
  --color-text-faint:     #5e5b52;
  --color-text-inverse:   #1a1914;

  --color-primary:        #8fa881;
  --color-primary-hover:  #a3bb96;
  --color-primary-active: #7a9a6c;
  --color-primary-highlight: #2e352a;

  --color-accent:         #d4ad5a;
  --color-accent-hover:   #e0c07a;
  --color-accent-active:  #c49a40;
  --color-accent-highlight: #3a3426;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #1a1914;
    --color-surface:        #201f1a;
    --color-surface-2:      #262520;
    --color-surface-offset: #222118;
    --color-surface-offset-2: #2b2a24;
    --color-surface-dynamic: #34332c;
    --color-divider:        #2e2d27;
    --color-border:         #3e3d36;
    --color-text:           #d8d4c9;
    --color-text-muted:     #908c80;
    --color-text-faint:     #5e5b52;
    --color-text-inverse:   #1a1914;
    --color-primary:        #8fa881;
    --color-primary-hover:  #a3bb96;
    --color-primary-active: #7a9a6c;
    --color-primary-highlight: #2e352a;
    --color-accent:         #d4ad5a;
    --color-accent-hover:   #e0c07a;
    --color-accent-active:  #c49a40;
    --color-accent-highlight: #3a3426;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
  }
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
a:hover {
  color: var(--color-primary-hover);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.header--scrolled {
  border-bottom-color: var(--color-divider);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .header__inner {
    padding: var(--space-4) var(--space-8);
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
}
.header__logo svg {
  width: 36px;
  height: 36px;
}
.header__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.header__nav {
  display: none;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }
}
.header__nav a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 450;
  transition: color var(--transition-interactive);
}
.header__nav a:hover {
  color: var(--color-text);
}

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

.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: color var(--transition-interactive), background var(--transition-interactive);
}
.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface-offset);
}

.mobile-menu-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
}
@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}
.mobile-menu-btn:hover {
  color: var(--color-text);
  background: var(--color-surface-offset);
}

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--color-bg);
  padding: var(--space-4);
  flex-direction: column;
}
.mobile-nav.is-open {
  display: flex;
}
.mobile-nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
}
.mobile-nav__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.mobile-nav a:hover {
  color: var(--color-primary);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition-interactive),
              color var(--transition-interactive),
              box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}
.btn--primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  color: var(--color-text-inverse);
}
.btn--accent {
  background: var(--color-accent);
  color: #fff;
}
.btn--accent:hover {
  background: var(--color-accent-hover);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn--outline:hover {
  background: var(--color-surface-offset);
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn--sm {
  font-size: var(--text-xs);
  padding: var(--space-2) var(--space-4);
}

/* ========================================
   HERO
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 50, 55, 0.35) 0%,
    rgba(15, 50, 55, 0.45) 30%,
    rgba(15, 50, 55, 0.55) 60%,
    rgba(250, 248, 244, 0.85) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-8) var(--space-4);
  max-width: 800px;
}
.hero__tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-4);
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.15);
}
.hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--space-8);
  max-width: 60ch;
  margin-inline: auto;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.1);
}
.hero__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.hero__actions .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}
.hero__actions .btn--outline:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  color: #fff;
}

/* ========================================
   SECTIONS — Shared
   ======================================== */

.section {
  padding: clamp(var(--space-12), 8vw, var(--space-32)) var(--space-4);
}
@media (min-width: 768px) {
  .section {
    padding-inline: var(--space-8);
  }
}
.section--alt {
  background: var(--color-surface-2);
}

/* --- Showcase (full-width image break) --- */
.showcase {
  position: relative;
  overflow: hidden;
}
.showcase__image img {
  width: 100%;
  height: auto;
  display: block;
}
.showcase__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6) var(--space-8);
  background: linear-gradient(transparent, rgba(20, 18, 12, 0.5));
  text-align: center;
}
.showcase__caption-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.section__container {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-12);
}
.section__label {
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.section__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}
.section__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-inline: auto;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}
@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
  }
}

.about__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 420px;
  margin: 0 auto;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  max-width: 55ch;
}
.about__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.about__role {
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-6);
}
.about__text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}
.about__text p:last-child {
  margin-bottom: 0;
}

/* ========================================
   SERVICES
   ======================================== */

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: box-shadow var(--transition-interactive),
              transform var(--transition-interactive),
              border-color var(--transition-interactive);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-primary-highlight);
}
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}
.service-card__icon svg {
  width: 24px;
  height: 24px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  line-height: 1.6;
}
.service-card__price {
  font-size: var(--text-xs);
  color: var(--color-accent);
  font-weight: 500;
}

/* ========================================
   FOR YOUR ORGANIZATION
   ======================================== */

.org__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .org__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.org-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}
.org-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-highlight);
}
.org-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}
.org-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--color-accent-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-accent);
}
.org-card__icon svg {
  width: 28px;
  height: 28px;
}
.org-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.org-card__desc {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.6;
}
.org-card__list {
  list-style: none;
  padding: 0;
}
.org-card__list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-1) 0;
  padding-left: var(--space-5);
  position: relative;
}
.org-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
}

/* ========================================
   SOUND SAMPLES
   ======================================== */

.samples__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  max-width: 700px;
  margin: 0 auto;
}

.sample-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  transition: box-shadow var(--transition-interactive);
}
.sample-card:hover {
  box-shadow: var(--shadow-sm);
}
.sample-card__play {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-interactive), transform var(--transition-interactive);
}
.sample-card__play:hover {
  background: var(--color-primary-hover);
  transform: scale(1.05);
}
.sample-card__play svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}
.sample-card__info {
  flex: 1;
  min-width: 0;
}
.sample-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.sample-card__subtitle {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}
.sample-card__waveform {
  flex: 1;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.sample-card__waveform span {
  flex: 1;
  background: var(--color-primary-highlight);
  border-radius: 2px;
  transition: background 0.2s;
}
.sample-card__duration {
  flex-shrink: 0;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-variant-numeric: tabular-nums;
}

/* ========================================
   GALLERY
   ======================================== */

/* --- Gallery Grid --- */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  align-items: end;
}
@media (min-width: 640px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Gallery Items --- */
.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.gallery__item:hover img {
  transform: scale(1.04);
}
.gallery__item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(transparent, rgba(20, 18, 12, 0.65));
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 450;
  letter-spacing: 0.01em;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.gallery__item:hover .gallery__item__caption {
  opacity: 1;
}

/* --- Featured item spans full width --- */
.gallery__item--featured {
  grid-column: 1 / -1;
}

/* --- Category Labels --- */
.gallery__category-label {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-top: var(--space-12);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}
.gallery__category-label:first-of-type {
  margin-top: 0;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
}
.testimonial-card__stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
  color: var(--color-accent);
}
.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
}
.testimonial-card__quote {
  flex: 1;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 600;
}
.testimonial-card__name {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}
.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ========================================
   BOOKING / CONTACT
   ======================================== */

.booking__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .booking__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.form-group {
  margin-bottom: var(--space-4);
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.15);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a7668' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  padding-right: var(--space-10);
}

.booking__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.booking__info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}
.booking__info-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.booking__info-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.booking__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
}
.booking__contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.booking__contact-item span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ========================================
   NEWSLETTER
   ======================================== */

.newsletter {
  background: linear-gradient(135deg, var(--color-primary-highlight), var(--color-accent-highlight));
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-6);
  text-align: center;
  max-width: var(--content-default);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .newsletter {
    padding: var(--space-12) var(--space-10);
  }
}
.newsletter__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}
.newsletter__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 50ch;
  margin: 0 auto var(--space-6);
}
.newsletter__form {
  display: flex;
  gap: var(--space-3);
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter__form input {
  flex: 1;
  min-width: 200px;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
}
.newsletter__form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.15);
}
.contact__msg {
  width: 100%;
  text-align: center;
  font-size: var(--text-sm);
  margin-top: var(--space-3);
  min-height: 1.4em;
}
.contact__msg:empty {
  display: none;
}
.contact__msg--success {
  color: #2e7d32;
}
.contact__msg--error {
  color: #c62828;
}

.newsletter__form input[name="email_address_check"] {
  position: absolute;
  left: -9999px;
}
.newsletter__msg {
  width: 100%;
  text-align: center;
  font-size: var(--text-sm);
  margin-top: var(--space-2);
  min-height: 1.4em;
}
.newsletter__msg:empty {
  display: none;
}
.newsletter__msg--success {
  color: #2e7d32;
}
.newsletter__msg--error {
  color: #c62828;
}
.newsletter__form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-12) var(--space-4);
}
@media (min-width: 768px) {
  .footer {
    padding-inline: var(--space-8);
  }
}
.footer__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-divider);
}
@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}
.footer__brand {
  max-width: 300px;
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  color: var(--color-text);
  text-decoration: none;
}
.footer__brand-logo svg {
  width: 32px;
  height: 32px;
}
.footer__brand-logo span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
}
.footer__brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.footer__col a {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-1) 0;
  transition: color var(--transition-interactive);
}
.footer__col a:hover {
  color: var(--color-primary);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-surface-offset);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: background var(--transition-interactive), color var(--transition-interactive);
}
.footer__social a:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}
.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer__attribution {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer__attribution a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__attribution a:hover {
  color: var(--color-primary);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 100%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}

/* Fallback: JS-driven IntersectionObserver */
.fade-in-js {
  opacity: 0;
  transition: opacity 0.6s var(--ease-out);
}
.fade-in-js.is-visible {
  opacity: 1;
}

/* ========================================
   DIVIDER
   ======================================== */

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  margin: 0 auto;
  border-radius: var(--radius-full);
}
