/* ═══════════════════════════════════════════════════════
   Vienna Pet Spaw — Design System
   Organic Soft UI · Cormorant Garamond + DM Sans
═══════════════════════════════════════════════════════ */

/* ─── Tokens ─────────────────────────────────────────── */
:root {
  --bg:           #F5F2E8;
  --bg-alt:       #ECEAE0;
  --bg-dark:      #E6E2D6;
  --primary:      #5CC4BE;
  --primary-light:#C8EEEC;
  --primary-dark: #3DA39D;
  --navy:         #1D2B45;
  --navy-mid:     #3D5278;
  --slate:        #8BA3C1;
  --text:         #1D2B45;
  --text-muted:   #5A6B84;
  --border:       #E2DDD4;
  --white:        #FFFFFF;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 999px;

  --shadow-sm:  0 2px 8px  rgba(29,43,69,.06);
  --shadow-md:  0 4px 20px rgba(29,43,69,.09);
  --shadow-lg:  0 8px 40px rgba(29,43,69,.13);

  --ease-out: cubic-bezier(.22,.61,.36,1);

  --nav-h: 72px;
}

/* ─── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
svg { flex-shrink: 0; }

/* ─── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 600;
  color: var(--navy);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); font-weight: 500; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-muted); line-height: 1.7; }
em { font-style: italic; }

/* ─── Utilities ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: .75rem;
}
.eyebrow--light { color: var(--primary-light); opacity: .85; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-header h2 { margin-bottom: .75rem; }
.section-sub { font-size: .95rem; color: var(--text-muted); }

/* ─── Scroll Reveal ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.is-visible        { opacity: 1; transform: none; }
.reveal--delay.is-visible  { transition-delay: .12s; }
.reveal--delay-2.is-visible{ transition-delay: .24s; }

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: transform .15s var(--ease-out), box-shadow .15s var(--ease-out), background .15s, color .15s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0);    box-shadow: none; }

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-mid); }

.btn--mint {
  background: var(--primary);
  color: var(--navy);
}
.btn--mint:hover { background: var(--primary-dark); color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.45);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.12);
}

.btn--lg { padding: 16px 34px; font-size: .95rem; }
.btn--sm { padding: 10px 20px; font-size: .82rem; }
.btn--full { width: 100%; justify-content: center; }

.btn__price {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: var(--r-full);
  padding: 2px 10px;
  font-size: .78rem;
  font-weight: 600;
  margin-left: 4px;
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  transition: background .25s, box-shadow .25s;
}
.navbar.scrolled {
  background: rgba(245,242,232,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--nav-h);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .navbar__inner { padding: 0 40px; } }

.navbar__logo { display: flex; align-items: center; }
.navbar__logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.footer__logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  /* teal logo on dark bg — no filter needed as SVG is already teal */
  filter: brightness(1.15);
}

.navbar__nav {
  display: none;
  gap: 2rem;
  margin-left: auto;
}
.navbar__nav a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
  transition: color .15s;
}
.navbar__nav a:hover { color: var(--primary-dark); }

.navbar__cta { margin-left: auto; display: none; }

.navbar__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  margin-left: auto;
  padding: 4px;
}
.navbar__burger span {
  display: block;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s var(--ease-out), opacity .2s;
}
.navbar__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: .25rem;
  background: rgba(245,242,232,.97);
  backdrop-filter: blur(12px);
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color .15s;
}
.navbar__mobile a:last-of-type { margin-bottom: 16px; }
.navbar__mobile a:hover { color: var(--primary-dark); }
.navbar__mobile .btn { align-self: flex-start; }

@media (min-width: 768px) {
  .navbar__nav  { display: flex; }
  .navbar__cta  { display: inline-flex; }
  .navbar__burger { display: none; }
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  background: var(--bg);
  overflow: hidden;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .hero__inner { padding: 0 40px; } }
@media (min-width: 1024px) {
  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .hero { padding-bottom: 100px; }
  .hero__text { flex: 1; }
  .hero__visual { flex: 0 0 480px; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: var(--r-full);
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero__headline {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--primary-dark);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.hero__note {
  font-size: .82rem;
  color: var(--slate);
  font-style: italic;
}

.hero__img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 6/7;
}
.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}
.hero__img-badge strong {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}
.hero__img-badge span {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ─── TICKER ─────────────────────────────────────────── */
.ticker {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: ticker-scroll 28s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  padding: 0 20px;
}
.ticker__item svg { color: var(--primary); }
.ticker__sep {
  color: rgba(255,255,255,.25);
  font-size: .7rem;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SPLIT SECTION (Problem/Solution) ───────────────── */
.split-section {
  padding: 100px 0;
  background: var(--bg);
}
.split-section__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .split-section__inner {
    flex-direction: row;
    gap: 72px;
  }
  .split-section__img  { flex: 0 0 480px; }
  .split-section__text { flex: 1; }
}

.split-section__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/4;
  width: 100%;
}
.split-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section__text .eyebrow { margin-bottom: .75rem; }
.split-section__text h2 { margin-bottom: 1rem; }
.split-section__text p  { margin-bottom: 1rem; }

.split-section__stats {
  display: flex;
  gap: 32px;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; }
.stat strong {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.stat span {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .03em;
}

/* ─── BENEFITS ───────────────────────────────────────── */
.benefits {
  padding: 100px 0;
  background: var(--bg-alt);
}
.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .benefits__grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,.6);
  transition: transform .2s var(--ease-out), box-shadow .2s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-card__icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary-dark);
}
.benefit-card__icon svg { width: 22px; height: 22px; }
.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--navy);
}
.benefit-card p { font-size: .9rem; }

/* ─── COAT CONSULTATIONS ─────────────────────────────── */
.consult-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.consult-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(92,196,190,.15) 0%, transparent 70%);
  pointer-events: none;
}

.consult-section__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) {
  .consult-section__inner {
    flex-direction: row;
    align-items: center;
    gap: 72px;
  }
  .consult-section__text  { flex: 1; }
  .consult-section__cards { flex: 0 0 460px; }
}

.consult-section__text .eyebrow { color: var(--primary-light); opacity: .85; }
.consult-section__text h2 { color: var(--white); margin-bottom: 1rem; }
.consult-section__text p  { color: rgba(255,255,255,.65); margin-bottom: 1rem; }
.consult-section__text .btn { margin-top: .75rem; }

.consult-section__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .consult-section__cards {
    flex-direction: row;
  }
  .consult-card { flex: 1; }
}

.consult-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  position: relative;
  transition: background .2s, border-color .2s;
}
.consult-card:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.2);
}
.consult-card--featured {
  background: rgba(92,196,190,.15);
  border-color: rgba(92,196,190,.35);
}
.consult-card__badge {
  position: absolute;
  top: -10px; right: 20px;
  background: var(--primary);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--r-full);
}
.consult-card__price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .5rem;
}
.consult-card h4 { color: var(--white); margin-bottom: .35rem; font-size: 1rem; }
.consult-card p  { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ─── SERVICES & PRICING ─────────────────────────────── */
.services {
  padding: 100px 0;
  background: var(--bg);
}

.services__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: all .15s;
}
.tab-btn:hover   { color: var(--navy); border-color: var(--navy); }
.tab-btn.active  { background: var(--navy); color: var(--white); border-color: var(--navy); }

.services__content { min-height: 280px; }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade-in .2s var(--ease-out); }
@keyframes fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.price-cols {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .price-cols { flex-direction: row; gap: 48px; }
  .price-col  { flex: 1; }
}

.price-col h4 {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.price-col h4 span { font-weight: 400; color: var(--text-muted); text-transform: none; letter-spacing: 0; }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(226,221,212,.5);
  font-size: .9rem;
}
.price-row span { color: var(--text-muted); flex: 1; }
.price-row strong { color: var(--navy); font-weight: 600; white-space: nowrap; }
.price-row--divider { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 17px; }
.price-note {
  font-size: .78rem;
  color: var(--slate);
  margin-top: 12px;
  line-height: 1.5;
  font-style: italic;
}
.price-note a { color: var(--primary-dark); text-decoration: underline; }

.services__cta {
  text-align: center;
  margin-top: 48px;
}

/* ─── TEAM ───────────────────────────────────────────── */
.team {
  padding: 100px 0;
  background: var(--bg-alt);
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px)  { .team__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .team__grid { grid-template-columns: repeat(3, 1fr); } }

.team-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease-out), box-shadow .2s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.team-card__img {
  aspect-ratio: 1;
  overflow: hidden;
}
.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .4s var(--ease-out);
}
.team-card:hover .team-card__img img { transform: scale(1.04); }

.team-card__info { padding: 20px 22px 24px; }
.team-card__info h3 { font-size: 1.25rem; margin-bottom: 4px; }
.team-card__role {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: .75rem;
}
.team-card__info p { font-size: .87rem; line-height: 1.55; }

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .testimonials__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); } }

.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s var(--ease-out), box-shadow .2s;
}
.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testi-card::before {
  content: '"';
  font-family: var(--font-head);
  font-size: 3.5rem;
  line-height: .8;
  color: var(--primary-light);
  display: block;
}
.testi-card p {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}
.testi-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--primary-light);
  box-shadow: 0 2px 8px rgba(29,43,69,.12);
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.testi-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-author strong {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
}
.testi-author span {
  font-size: .75rem;
  color: var(--slate);
}

/* ─── GALLERY ────────────────────────────────────────── */
.gallery {
  padding: 100px 0;
  background: var(--bg-alt);
}

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

.gallery__item {
  overflow: hidden;
  border-radius: var(--r-md);
  aspect-ratio: 1;
}
.gallery__item--tall { aspect-ratio: 3/4; }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.06); }

/* ─── HOW IT WORKS ───────────────────────────────────── */
.how-it-works {
  padding: 100px 0;
  background: var(--bg);
}
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step { position: relative; padding-left: 0; }
@media (min-width: 768px) {
  .step + .step::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(-50% + 8px);
    width: 50%;
    height: 1px;
    background: var(--border);
  }
}

.step__num {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.step p  { font-size: .9rem; }
.step a  { color: var(--primary-dark); text-decoration: underline; }

.how-it-works__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: var(--r-md);
  padding: 16px 20px;
  font-size: .88rem;
  font-weight: 500;
  max-width: 680px;
  margin: 0 auto;
}
.how-it-works__note svg { flex-shrink: 0; margin-top: 1px; }
.how-it-works__note span { line-height: 1.5; }
.how-it-works__note strong { color: var(--primary-dark); }

/* ─── CTA SECTION ────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(92,196,190,.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .cta-section__inner {
    flex-direction: row;
    gap: 72px;
    align-items: center;
  }
  .cta-section__img  { flex: 0 0 440px; }
  .cta-section__text { flex: 1; }
}

.cta-section__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 5/4;
  width: 100%;
}
.cta-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section__text p {
  color: rgba(255,255,255,.65);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}
.cta-section__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 72px 0 0;
  color: rgba(255,255,255,.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; }
}

.footer__brand .logo-lockup { margin-bottom: 16px; }
.footer__brand p { font-size: .88rem; line-height: 1.65; max-width: 320px; }

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.65);
  transition: background .15s, color .15s;
}
.footer__social a:hover {
  background: rgba(255,255,255,.14);
  color: var(--white);
}

.footer__col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__col p, .footer__col a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}
.footer__col p { margin-bottom: 12px; }
.footer__col a:hover { color: var(--primary-light); }
.footer__label {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  margin-top: 2px;
}

.hours-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
}
.hours-row span  { color: rgba(255,255,255,.55); }
.hours-row strong{ color: rgba(255,255,255,.85); font-weight: 500; }
.hours-row--muted span, .hours-row--muted strong { color: rgba(255,255,255,.35); }

.footer__book { margin-top: 8px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}
.footer__bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }

/* ─── BOOKING MODAL ──────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(29,43,69,.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease-out);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(.98);
  transition: transform .28s var(--ease-out);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

@media (max-width: 480px) {
  .modal { padding: 32px 24px; border-radius: var(--r-lg); }
}

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  background: var(--bg-alt);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.modal__close:hover { background: var(--border); color: var(--navy); }

.modal__step--hidden { display: none; }

.modal__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: .5rem;
  display: block;
}
.modal__title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.modal__service-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 480px) {
  .modal__service-cards { flex-direction: row; }
  .service-pick { flex: 1; }
}

.service-pick {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 22px 18px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  background: var(--bg);
  text-align: left;
  transition: border-color .15s, background .15s, box-shadow .15s, transform .15s var(--ease-out);
}
.service-pick:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.service-pick__icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  margin-bottom: 4px;
  box-shadow: var(--shadow-sm);
}

.service-pick h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-body);
}
.service-pick p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.service-pick__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: var(--bg-dark);
  color: var(--text-muted);
  margin-top: 4px;
}
.service-pick__tag--available {
  background: #d1fae5;
  color: #065f46;
}
.service-pick__tag--price {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.modal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
  transition: color .15s;
}
.modal__back:hover { color: var(--navy); }

/* ─── FORM ───────────────────────────────────────────── */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 480px) {
  .form-row { flex-direction: row; }
  .form-row .form-group { flex: 1; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-child { margin-bottom: 0; }

label {
  font-size: .82rem;
  font-weight: 500;
  color: var(--navy);
}
label span[aria-hidden] { color: var(--primary-dark); margin-left: 2px; }

input, textarea {
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--navy);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  resize: vertical;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--slate); }
input:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(92,196,190,.15);
  background: var(--white);
}
input.error, textarea.error { border-color: #e53e3e; }

#booking-form .btn--full { margin-top: 8px; }

.form-footer-note {
  text-align: center;
  font-size: .78rem;
  color: var(--slate);
  margin-top: 10px;
  font-style: italic;
}

/* ─── BOOKING SUCCESS ────────────────────────────────── */
.booking-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 0 8px;
  gap: 12px;
}
.booking-success.show { display: flex; }
.booking-success__icon { color: var(--primary); }
.booking-success h3 {
  font-size: 1.5rem;
  color: var(--navy);
}
.booking-success p { font-size: .92rem; }
.booking-success__email a { color: var(--primary-dark); text-decoration: underline; }

/* ─── Submit loading state ───────────────────────────── */
#submit-btn.loading {
  opacity: .7;
  pointer-events: none;
}
#submit-btn.loading::after {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  margin-left: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Responsive touch adjustments ──────────────────────── */
@media (max-width: 767px) {
  .split-section__stats { gap: 20px; }
  .stat strong { font-size: 1.8rem; }
  .consult-section { padding: 72px 0; }
  .cta-section { padding: 72px 0; }
}
