/* ============================================================
   Salty Fluids IV & Wellness — Master Stylesheet
   Coastal casual. Sandy neutrals. Gulf Coast energy.
   Logo-derived palette — no pure whites, no darks.
   ============================================================ */

/* --- Custom Properties --- */
:root {
  /* Logo-extracted palette */
  --teal: #2A9D8F;
  --teal-light: #5BB8AC;
  --teal-pale: #DAF0EC;
  --teal-wash: rgba(42, 157, 143, 0.08);
  --coral: #D4756A;
  --coral-light: #E09B92;
  --coral-pale: #F3E2DE;
  --coral-wash: rgba(212, 117, 106, 0.1);
  --navy: #1B3A4B;
  --navy-light: #2C5F6E;

  /* Sandy warm surfaces — no pure white */
  --sand-0: #FAF6EF;
  --sand-1: #F2ECE2;
  --sand-2: #E8E1D5;
  --sand-3: #DDD6C9;
  --sand-4: #D1C9BB;
  --driftwood: #C4BAA8;

  /* Sea glass accent for alternating sections */
  --sea-glass: #E8F0ED;

  /* Text hierarchy */
  --text: #2A3F4D;
  --text-dim: #5A7385;
  --text-muted: #8DA0AD;
  --text-on-dark: #E8E2D8;

  /* Borders & shadows — warm-tinted */
  --border: rgba(27, 58, 75, 0.08);
  --border-strong: rgba(27, 58, 75, 0.14);
  --shadow-soft: 0 2px 16px rgba(42, 63, 77, 0.06);
  --shadow-lift: 0 6px 24px rgba(42, 63, 77, 0.1);

  /* Radii — generous, friendly */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  --transition: 0.25s ease;
  --font-body: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Fraunces', 'Georgia', serif;
  --header-height: 76px;
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--sand-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 42px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--coral); }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

::selection {
  background: var(--teal);
  color: var(--sand-0);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 600;
  font-optical-sizing: auto;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); margin-bottom: 0.4em; }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.5rem); margin-bottom: 0.4em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.4rem); margin-bottom: 0.3em; }
h4 { font-size: 1.0625rem; margin-bottom: 0.25em; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.accent-text { color: var(--teal); }
.hot-text { color: var(--coral); }

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.15rem);
  color: var(--text-dim);
  line-height: 1.8;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.875rem;
  background: var(--teal-wash);
  border: 1px solid rgba(42, 157, 143, 0.15);
  border-radius: var(--radius-pill);
}

.section-title { margin-bottom: 0.5rem; }

.section-subtitle {
  color: var(--text-dim);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 560px;
}

.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5.5rem 0; }
.section-alt { background: var(--sand-1); }
.section-dark { background: var(--navy); color: var(--text-on-dark); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--sand-0); }

.section-teal {
  background: var(--sea-glass);
}

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.text-center { text-align: center; }

/* --- Buttons — warm, rounded, inviting --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--coral);
  color: var(--sand-0);
  border-color: var(--coral);
}
.btn-primary:hover {
  background: var(--coral-light);
  border-color: var(--coral-light);
  color: var(--sand-0);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.btn-hot {
  background: var(--teal);
  color: var(--sand-0);
  border-color: var(--teal);
}
.btn-hot:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  color: var(--sand-0);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--sand-0);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--sand-0);
  border-color: rgba(250, 246, 239, 0.4);
}
.btn-outline-white:hover {
  background: rgba(250, 246, 239, 0.12);
  color: var(--sand-0);
  transform: translateY(-1px);
}

.btn-glass {
  background: var(--sand-1);
  color: var(--navy);
  border-color: var(--border);
}
.btn-glass:hover {
  background: var(--sand-2);
  border-color: var(--border-strong);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.8125rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(42,63,77,0.06); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Logo medallion — doubled size, overflows header with curved border */
.logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none; flex-shrink: 0;
  position: relative;
  z-index: 1001;
}
.logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 124px;
  height: 124px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--sand-0);
  border: 1px solid var(--border);
  z-index: -1;
  box-shadow: 0 4px 16px rgba(42, 63, 77, 0.05);
}
.logo img { height: 104px; width: auto; position: relative; z-index: 1; }

.nav-desktop { display: none; align-items: center; gap: 0.125rem; }
.nav-desktop a {
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dim);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--navy); background: var(--teal-wash); }
.nav-desktop .btn { margin-left: 0.5rem; }

.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  position: relative; z-index: 1001;
}
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--transition); position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ''; position: absolute; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all var(--transition); left: 0;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle.active span { background: transparent; }
.menu-toggle.active span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.active span::after { top: 0; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed; top: 0; right: -100%;
  width: min(85vw, 360px); height: 100vh; height: 100dvh;
  background: var(--sand-0);
  border-left: 1px solid var(--border);
  box-shadow: -6px 0 24px rgba(42,63,77,0.08);
  z-index: 999;
  padding: calc(var(--header-height) + 1.5rem) 1.5rem 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.nav-mobile.open { right: 0; }
.nav-mobile a {
  display: block; padding: 0.875rem 0;
  font-size: 1.0625rem; font-weight: 500; color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.active { color: var(--teal); }
.nav-mobile .btn { margin-top: 1.5rem; text-align: center; }
.nav-mobile .mobile-contact {
  margin-top: auto; padding-top: 2rem;
  font-size: 0.875rem; color: var(--text-muted);
}
.nav-mobile .mobile-contact a {
  display: inline; padding: 0; border: none;
  font-size: 0.875rem; color: var(--teal); font-weight: 600;
}

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(27, 58, 75, 0.2);
  backdrop-filter: blur(3px);
  z-index: 998; opacity: 0; visibility: hidden;
  transition: all var(--transition);
}
.nav-overlay.active { opacity: 1; visibility: visible; }

@media (min-width: 960px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .nav-mobile, .nav-overlay { display: none; }
}

/* --- Hero --- */
.hero {
  min-height: 100vh; min-height: 100svh;
  padding-top: var(--header-height);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}

.hero-home {
  background: var(--sand-1);
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(242, 236, 226, 0.55) 0%,
    rgba(242, 236, 226, 0.72) 50%,
    rgba(250, 246, 239, 0.96) 100%
  );
}

.hero-content {
  position: relative; z-index: 1;
  max-width: var(--container);
  margin: 0 auto; padding: 4rem 1.5rem;
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  line-height: 1.08;
  margin-bottom: 0.35em;
}
.hero-text h1 .neon-word {
  display: block;
  color: var(--teal);
}

.hero-text .lead {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  margin-bottom: 2rem; max-width: 480px;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.875rem; }
.hero-image { display: none; }
.hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); }

.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 2.5rem; padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem; font-weight: 600;
  color: var(--teal);
}
.hero-stat-label { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.125rem; }

@media (min-width: 768px) {
  .hero-content { grid-template-columns: 1fr 1fr; padding: 5rem 1.5rem; }
  .hero-image { display: block; }
}
@media (min-width: 960px) {
  .hero-content { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}

/* --- Page Hero (interior pages) --- */
.page-hero {
  padding: calc(var(--header-height) + 4.5rem) 0 4.5rem;
  position: relative; overflow: hidden;
  background: var(--sand-1);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.15;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(242,236,226,0.5) 0%, rgba(250,246,239,0.95) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .lead { color: var(--text-dim); max-width: 560px; }
.page-hero.text-center .lead { margin: 0 auto; }

/* --- Cards — warm, no pure white --- */
.card {
  background: var(--sand-0);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
}
.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}

.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
  background: var(--teal-pale);
  border: 1px solid rgba(42, 157, 143, 0.15);
}
.card-coral .card-icon {
  background: var(--coral-pale);
  border-color: rgba(212, 117, 106, 0.15);
}

.card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.card p { color: var(--text-dim); font-size: 0.9375rem; }

/* --- Service Card --- */
.service-card {
  background: var(--sand-0);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden; transition: all var(--transition);
  box-shadow: var(--shadow-soft);
}
.service-card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); border-color: var(--border-strong); }

.service-card-popular {
  border-color: var(--teal); position: relative;
}
.service-card-popular::before {
  content: 'Most Popular';
  position: absolute; top: 0.875rem; right: 0.875rem;
  background: var(--coral); color: var(--sand-0);
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: var(--radius-pill); z-index: 1;
}

.service-card-header { padding: 1.75rem 1.75rem 0; }
.service-card-header h3 { font-size: 1.2rem; margin-bottom: 0.375rem; }
.service-card-price {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 600; color: var(--teal);
}
.service-card-price .price-note {
  font-family: var(--font-body);
  font-size: 0.8125rem; color: var(--text-muted); font-weight: 400;
}
.service-card-body { padding: 1.25rem 1.75rem 1.75rem; }
.service-card-body p { font-size: 0.9375rem; color: var(--text-dim); }
.service-card-body ul { list-style: none; padding: 0; }
.service-card-body li {
  padding: 0.375rem 0 0.375rem 1.5rem;
  position: relative; font-size: 0.9375rem; color: var(--text-dim);
}
.service-card-body li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--teal); font-weight: 700;
}

/* --- Pricing Table --- */
.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.pricing-table thead th {
  background: var(--navy); color: var(--teal-pale);
  padding: 0.875rem 1.25rem; text-align: left;
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.pricing-table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.pricing-table thead th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.pricing-table tbody td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
.pricing-table tbody tr:hover { background: var(--teal-wash); }
.pricing-table .price { font-weight: 700; color: var(--navy); white-space: nowrap; }
.pricing-table .promo-badge {
  display: inline-block; background: var(--coral); color: var(--sand-0);
  font-size: 0.625rem; font-weight: 700;
  padding: 0.15rem 0.5rem; border-radius: var(--radius-pill);
  margin-left: 0.5rem; text-transform: uppercase; letter-spacing: 0.04em;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--sand-0);
}

/* --- Photo Section --- */
.photo-section {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
}
.photo-section-bg {
  position: absolute; inset: 0;
}
.photo-section-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.photo-section-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(242,236,226,0.88) 0%, rgba(242,236,226,0.75) 100%);
}
.photo-section .container { position: relative; z-index: 1; }

/* --- Testimonials --- */
.testimonial-card {
  background: var(--sand-0);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: var(--shadow-soft);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 3.5rem; line-height: 1;
  color: var(--teal-pale);
  position: absolute; top: 0.75rem; left: 1.25rem;
}
.testimonial-text {
  font-size: 1rem; font-style: italic;
  color: var(--text-dim);
  margin-bottom: 1.25rem; position: relative; z-index: 1;
}
.testimonial-author { font-weight: 600; color: var(--navy); font-size: 0.9375rem; }
.testimonial-service { font-size: 0.8125rem; color: var(--text-muted); }

/* --- Steps / Process --- */
.steps {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  counter-reset: step-counter;
}
.step {
  position: relative; padding-left: 4.5rem;
  counter-increment: step-counter;
}
.step::before {
  content: counter(step-counter);
  position: absolute; left: 0; top: 0;
  width: 3.25rem; height: 3.25rem; border-radius: 50%;
  background: var(--teal-pale); border: 2px solid var(--teal);
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 1.0625rem; margin-bottom: 0.375rem; }
.step p { font-size: 0.9375rem; color: var(--text-dim); }

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .step { padding-left: 0; padding-top: 5rem; text-align: center; }
  .step::before { left: 50%; transform: translateX(-50%); }
}

/* --- FAQ / Accordion --- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0; background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--navy); text-align: left; gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--teal); }

.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal-pale); border: 1px solid rgba(42,157,143,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.faq-icon::after {
  content: '+'; font-size: 1.125rem; font-weight: 500;
  color: var(--teal); line-height: 1;
}
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--teal); border-color: var(--teal); }
.faq-item.active .faq-icon::after { color: var(--sand-0); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9375rem; color: var(--text-dim); line-height: 1.7;
}

/* --- Hours Table --- */
.hours-table { max-width: 400px; }
.hours-table table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 0.625rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}
.hours-table td:first-child { font-weight: 600; color: var(--navy); }
.hours-table td:last-child { text-align: right; color: var(--text-dim); }

/* --- Feature List --- */
.feature-list, .features-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.feature-list li, .features-list li {
  padding: 0.625rem 0 0.625rem 1.5rem;
  position: relative; font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
.feature-list li:last-child, .features-list li:last-child { border-bottom: none; }
.feature-list li::before, .features-list li::before {
  content: ''; position: absolute; left: 0; top: 1rem;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
}
.features-list.coral li::before { background: var(--coral); }

/* --- Contact Page --- */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 0;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1.2fr 0.8fr; gap: 4rem; } }

.contact-info-wrap h2 { margin-bottom: 1.5rem; }
.contact-detail {
  margin-bottom: 1.25rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-detail h3 {
  font-family: var(--font-body);
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.25rem;
}
.contact-detail p { font-size: 1rem; color: var(--text); }
.contact-detail a { color: var(--teal); font-weight: 600; font-size: 1.0625rem; }

/* --- Contact Form --- */
.contact-form { max-width: 600px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.875rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.375rem;
}
.form-group label .optional { font-weight: 400; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.8rem 1rem;
  font-family: var(--font-body); font-size: 0.9375rem;
  color: var(--text);
  background: var(--sand-0);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-wash);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-submit { margin-top: 0.5rem; }

/* --- Map --- */
.map-container { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.map-container iframe { display: block; width: 100%; height: 400px; border: none; }

/* --- Two-column content --- */
.content-split {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
@media (min-width: 768px) {
  .content-split { grid-template-columns: 1fr 1fr; }
  .content-split.reverse > :first-child { order: 2; }
  .content-split.reverse > :last-child { order: 1; }
}
.content-split-image { border-radius: var(--radius-lg); overflow: hidden; }
.content-split-image img {
  width: 100%; height: 100%;
  object-fit: cover; aspect-ratio: 4 / 3;
}

/* --- CTA Banner --- */
.cta-banner {
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner-teal {
  background: var(--teal-pale);
  border: 1px solid rgba(42, 157, 143, 0.15);
}
.cta-banner-dark {
  background: var(--navy);
  border: none;
}
.cta-banner-dark h2 { color: var(--sand-0); }
.cta-banner-dark p { color: rgba(250,246,239,0.65); }
.cta-banner p { max-width: 520px; margin: 0 auto 1.5rem; color: var(--text-dim); }

/* --- Badges --- */
.badge {
  display: inline-block; padding: 0.2rem 0.625rem;
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.04em;
  border-radius: var(--radius-pill); text-transform: uppercase;
}
.badge-teal { background: var(--teal-pale); color: var(--navy-light); border: 1px solid rgba(42,157,143,0.2); }
.badge-coral { background: var(--coral-pale); color: var(--coral); border: 1px solid rgba(212,117,106,0.2); }

/* --- Party Cards --- */
.party-type {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--sand-0); border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
}
.party-type:hover { border-color: var(--border-strong); box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.party-type-icon { font-size: 2.25rem; margin-bottom: 0.875rem; }
.party-type h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.party-type p { font-size: 0.875rem; color: var(--text-dim); }

/* --- Credential Strip --- */
.credential-strip {
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; padding: 1.25rem 0;
}
.credential-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; color: var(--text-dim); font-weight: 500;
}
.credential-icon { color: var(--teal); font-size: 1rem; }

/* --- Image Placeholder (branded visual blocks) --- */
.img-placeholder {
  width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.img-placeholder-teal { background: linear-gradient(135deg, #2A9D8F 0%, #5BB8AC 100%); }
.img-placeholder-navy { background: linear-gradient(135deg, #1B3A4B 0%, #2C5F6E 100%); }
.img-placeholder-coral { background: linear-gradient(135deg, #D4756A 0%, #E09B92 100%); }
.img-placeholder::before {
  content: ''; position: absolute; top: -30%; right: -20%; width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(250,246,239,0.12) 0%, transparent 70%);
}
.img-placeholder img {
  max-width: 50%; max-height: 50%; opacity: 0.8;
  position: relative; z-index: 1;
}

/* --- Divider --- */
.divider {
  width: 48px; height: 3px;
  background: var(--teal);
  border-radius: 2px; margin: 1rem 0;
}
.text-center .divider { margin-left: auto; margin-right: auto; }

/* --- Footer --- */
.site-footer {
  background: var(--navy);
  color: rgba(232, 226, 216, 0.55);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand img { height: 52px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9375rem; line-height: 1.7; max-width: 280px; color: rgba(232,226,216,0.55); }
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.9375rem; color: rgba(232,226,216,0.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--teal-light); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 0.75rem; font-size: 0.9375rem;
}
.footer-contact-icon { color: var(--teal-light); flex-shrink: 0; margin-top: 0.15rem; }
.footer-contact-item a { color: rgba(232,226,216,0.55); }
.footer-contact-item a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(232,226,216,0.08);
  padding: 1.5rem 0;
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: 1rem; font-size: 0.8125rem;
  color: rgba(232,226,216,0.3);
}

@media (min-width: 640px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

/* --- 404 Page --- */
.page-404 {
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
}
.error-404 {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0; line-height: 1;
}
.page-404 h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.page-404 p { color: var(--text-dim); margin-bottom: 2rem; max-width: 380px; }

/* --- Scroll reveal animations --- */
.js-reveal-init .reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js-reveal-init .reveal.visible, .reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* --- Utilities --- */
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }

.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 (max-width: 639px) {
  .section { padding: 3.5rem 0; }
  .page-hero { padding: calc(var(--header-height) + 2.5rem) 0 2.5rem; }
  .cta-banner { padding: 2rem 1.5rem; }
  .pricing-table { font-size: 0.875rem; }
  .pricing-table thead th, .pricing-table tbody td { padding: 0.75rem 0.875rem; }
}

/* --- Print --- */
@media print {
  .site-header, .site-footer, .nav-mobile, .nav-overlay, .btn { display: none; }
  body { padding: 0; color: #222; background: #f5f5f0; }
  h1, h2, h3, h4 { color: #222; }
  .hero, .page-hero { min-height: auto; background: none; padding-top: 1rem; }
  .hero-bg, .page-hero-bg, .photo-section-bg { display: none; }
  .section { padding: 1.5rem 0; }
}
