/* =========================================================
   PhysioGo, premium design system
   warm cream · deep navy · sage accent · editorial serif italic
   ========================================================= */

:root {
  /* surfaces */
  --bg:        #ECE5D8;     /* warm cream page */
  --bg-soft:   #F3ECDF;     /* softer cream */
  --bg-cream:  #F8F2E5;     /* cream cards */
  --bg-warm:   #E5DCC8;     /* warmer accent */
  --surface:   #FFFFFF;     /* white content sections */
  --feature-bg:#F0E9DA;     /* small feature card bg */
  --feature-2: #E8DFCB;     /* alt tonal card */
  --feature-3: #DDD2BC;     /* deepest tonal */

  /* ink */
  --ink:       #0B0D12;
  --ink-2:     #1F2229;
  --muted:     #6E695E;
  --muted-2:   #8A8576;
  --line:      #E2DAC7;
  --line-2:    #D5CBB6;
  --line-3:    #EDE6D6;

  /* accents */
  --navy:      #0A0E1B;
  --navy-2:    #161B2C;
  --navy-hover:#000004;
  --sage:      #7C9885;
  --sage-hover:#5F7E69;
  --sage-soft: #E6EDE5;
  --gold:      #B8915E;
  --pill-bg:   rgba(255,255,255,.55);

  /* shape */
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 32px;
  --radius-xl: 42px;

  --shadow-xs: 0 1px 2px rgba(11, 13, 18, .04);
  --shadow-sm: 0 4px 14px -6px rgba(11, 13, 18, .08);
  --shadow-md: 0 18px 38px -18px rgba(11, 13, 18, .18);
  --shadow-lg: 0 32px 80px -28px rgba(11, 13, 18, .25);
  --shadow-photo: 0 28px 70px -28px rgba(11, 13, 18, .35);

  /* type */
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Instrument Serif', 'Cormorant Garamond', ui-serif, Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  /* subtle warm grain */
  background-image:
    radial-gradient(rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 3px 3px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

/* serif italic editorial accent */
.serif-accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ============== NAV ============== */
.nav {
  padding: 32px 28px 0;
}
.nav__inner {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.015em;
}
.logo__wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo__name {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.logo__name em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
  font-size: 20px;
  line-height: 1;
  margin-left: 1px;
  letter-spacing: -0.005em;
}
.logo__parent {
  font-size: 10.5px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  color: var(--ink-2);
}
.nav__links a { color: var(--ink-2); transition: color .15s ease; position: relative; }
.nav__links a:hover { color: var(--ink); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
  font-family: inherit;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn--primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 6px 18px -8px rgba(11,13,18,.4);
}
.btn--primary:hover {
  background: var(--navy-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(11,13,18,.5);
}
.btn--accent {
  background: var(--sage);
  color: white;
  box-shadow: 0 6px 18px -8px rgba(124,152,133,.55);
}
.btn--accent:hover { background: var(--sage-hover); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: white; border-color: var(--ink); }
.btn--lg { padding: 15px 28px; font-size: 14.5px; }

/* ============== HERO ============== */
.hero {
  padding: 56px 0 40px;
  position: relative;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero__copy { padding: 24px 0 8px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}
.hero__eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--muted-2);
}
.hero__title {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(46px, 5.6vw, 76px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 28px;
  color: var(--ink);
}
.hero__title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero__sub {
  max-width: 480px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0 0 36px;
}

/* email + CTA row */
.hero__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 500px;
  align-items: center;
}
.hero__email {
  flex: 1;
  min-width: 240px;
  padding: 15px 22px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: var(--pill-bg);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.hero__email:focus { border-color: var(--ink); background: white; }
.hero__email::placeholder { color: var(--muted); }

.hero__photo {
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--feature-2) 0%, var(--feature-3) 100%);
  box-shadow: var(--shadow-photo);
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* premium tonal photo overlay */
.hero__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,13,18,0) 60%, rgba(11,13,18,0.18) 100%);
  pointer-events: none;
}

/* floating quote card */

/* second floating chip, stats */

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__photo { aspect-ratio: 4 / 3.2; }
    .nav__links { display: none; }
}

/* ============== PRESS / TRUST STRIP ============== */
.trust {
  padding: 56px 0 24px;
}
.trust__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.trust__label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.trust__logos {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  align-items: center;
}
.trust__logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-2);
  opacity: .65;
  letter-spacing: -0.005em;
}
.trust__logo--sans {
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 18px;
}

/* ============== WHITE CONTENT SECTIONS ============== */
.section-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  margin: 16px 24px;
  padding: 104px 24px;
}
.section-card .container { padding: 0 36px; }

.section__head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section__head .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-hover);
  font-weight: 600;
  margin-bottom: 22px;
}
.section__head h2 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0 0 18px;
  color: var(--ink);
}
.section__head h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
}
.lead { font-size: 16px; color: var(--muted); line-height: 1.65; max-width: 600px; margin: 0 auto; }

/* ============== FEATURE GRID (services) ============== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 520px;
}
.feature-card {
  background: var(--feature-bg);
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease;
}
.feature-card:hover { transform: translateY(-2px); }
.feature-card--alt    { background: var(--feature-2); }
.feature-card--deep   { background: var(--feature-3); }
.feature-card--cream  { background: var(--bg-cream); }
.feature-card--photo {
  grid-row: 1 / span 2;
  grid-column: 2;
  padding: 0;
  background: linear-gradient(135deg, var(--feature-2) 0%, var(--feature-3) 100%);
  position: relative;
}
.feature-card--photo img { width: 100%; height: 100%; object-fit: cover; }
.feature-card--photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,13,18,0) 60%, rgba(11,13,18,0.2) 100%);
  pointer-events: none;
}
.feature__badge {
  position: absolute;
  top: 26px; left: 26px;
  width: 42px; height: 42px;
  background: var(--ink);
  color: white;
  border-radius: 12px;
  display: grid; place-items: center;
}
.feature__badge svg { width: 20px; height: 20px; }
.feature__body { margin-top: 90px; }
.feature__title {
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.feature__desc { font-size: 14px; color: var(--muted); line-height: 1.55; }

@media (max-width: 920px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
  }
  .feature-card--photo { grid-row: 2; grid-column: 1 / -1; aspect-ratio: 16/9; }
}

/* ============== STATS STRIP ============== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--line-3);
}
.stat { padding: 0 4px; }
.stat__num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
}
.stat__suffix {
  font-size: 24px;
  color: var(--ink);
  margin-left: 2px;
  font-weight: 400;
  font-family: var(--serif);
}
.stat__label { font-size: 13px; color: var(--muted); margin-top: 12px; line-height: 1.45; }

@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ============== PRICING ============== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--feature-bg);
  border-radius: 26px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s ease, background .25s ease;
}
.price-card:hover { transform: translateY(-3px); background: var(--bg-cream); }
.price-card__badge {
  width: 42px; height: 42px;
  background: var(--ink);
  color: white;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 8px;
}
.price-card__badge svg { width: 20px; height: 20px; }
.price-card__title {
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.price-card__desc { font-size: 14px; color: var(--muted); flex: 1; line-height: 1.55; }
.price-card__meta {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--line-3);
}
.price-card__price {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.price-card__dur {
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============== ABOUT ============== */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about__photo {
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(135deg, var(--feature-2) 0%, var(--feature-3) 100%);
  position: relative;
  box-shadow: var(--shadow-photo);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,13,18,0) 65%, rgba(11,13,18,0.15) 100%);
  pointer-events: none;
}
.about__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-hover);
  font-weight: 600;
  margin-bottom: 22px;
}
.about h2 {
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0 0 22px;
  color: var(--ink);
}
.about h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.about p { color: var(--muted); margin: 0 0 16px; font-size: 15.5px; line-height: 1.65; }
.about__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 22px; }
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-cream);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
}
.tag svg { width: 13px; height: 13px; color: var(--sage); }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; gap: 40px; } }

/* ============== STEPS ============== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }

.step {
  background: var(--feature-bg);
  border-radius: 26px;
  padding: 32px 28px;
  transition: transform .25s ease, background .25s ease;
}
.step:hover { transform: translateY(-2px); background: var(--bg-cream); }
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--sage-hover);
  margin-bottom: 18px;
  line-height: 1;
}
.step h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.step p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ============== CTA BANNER ============== */
.cta-banner {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  color: white;
  overflow: hidden;
  position: relative;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(124,152,133,.3) 0%, transparent 70%);
}
.cta-banner h3 {
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: white;
}
.cta-banner h3 em {
  font-family: var(--serif);
  font-style: italic;
}
.cta-banner p { color: rgba(255,255,255,.7); margin: 0 0 28px; font-size: 15px; line-height: 1.6; }
.cta-banner__photo {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-photo);
}
.cta-banner__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) {
  .cta-banner { grid-template-columns: 1fr; padding: 36px; }
}

/* ============== FAQ ============== */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq details {
  background: var(--feature-bg);
  border-radius: 20px;
  padding: 22px 28px;
  transition: background .2s ease;
}
.faq details[open] { background: var(--bg-cream); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
  transition: transform .2s ease;
  font-weight: 300;
}
.faq details[open] summary::after { content: '−'; }
.faq__body {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--bg);
  padding: 80px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer h4 {
  margin: 0 0 16px;
  font-size: 12px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer .muted, .footer p { color: var(--muted); font-size: 14px; margin: 0 0 6px; line-height: 1.6; }
.footer__brand p { max-width: 320px; margin-top: 16px; font-size: 15px; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid; place-items: center;
  transition: background .15s ease, color .15s ease;
}
.footer__social a:hover { background: var(--ink); color: white; }
.footer__social svg { width: 15px; height: 15px; }
.footer__fine {
  display: flex; justify-content: space-between;
  padding-top: 24px; font-size: 12px; color: var(--muted);
  flex-wrap: wrap; gap: 12px;
}
.muted { color: var(--muted); }

@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__inner { grid-template-columns: 1fr; } }

/* ============== SCROLL REVEALS ============== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   CHAT WIDGET (navy/cream premium)
   ========================================================= */
/* morphing pill: circular by default, expands with label on hover */
.chat-launcher {
  position: fixed;
  right: 28px; bottom: 28px;
  height: 62px;
  width: 62px;
  padding: 0 0 0 18px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  box-shadow: 0 18px 36px -12px rgba(11,13,18,.45);
  cursor: pointer;
  z-index: 90;
  transition: width .35s cubic-bezier(.5,.05,.2,1),
              padding .35s cubic-bezier(.5,.05,.2,1),
              background .2s ease,
              transform .25s ease,
              box-shadow .25s ease;
  font-family: inherit;
}
.chat-launcher__icon {
  display: grid; place-items: center;
  width: 26px; height: 26px;
  flex-shrink: 0;
  margin-left: -2px;
}
.chat-launcher__label {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  margin-left: 0;
  padding-right: 22px;
  max-width: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: max-width .35s cubic-bezier(.5,.05,.2,1),
              opacity .25s ease,
              margin-left .35s cubic-bezier(.5,.05,.2,1),
              transform .35s cubic-bezier(.5,.05,.2,1);
}
.chat-launcher:hover {
  background: var(--navy-hover);
  width: 232px;
  padding-left: 22px;
  transform: translateY(-2px);
  box-shadow: 0 22px 44px -12px rgba(11,13,18,.55);
}
.chat-launcher:hover .chat-launcher__label {
  max-width: 220px;
  opacity: 1;
  margin-left: 10px;
  transform: translateX(0);
}
.chat-launcher__pulse {
  position: absolute;
  width: 62px; height: 62px;
  right: 0; top: 0;
  border-radius: 50%;
  border: 2px solid var(--sage);
  opacity: 0;
  animation: pulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0% { transform: scale(.85); opacity: .7; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { opacity: 0; }
}

.chat {
  position: fixed;
  right: 28px; bottom: 104px;
  width: 392px;
  max-width: calc(100vw - 32px);
  height: 620px;
  max-height: calc(100vh - 140px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 95;
  font-family: var(--sans);
}
.chat.open { display: flex; animation: chatIn .3s ease-out; }
@keyframes chatIn { from { opacity: 0; transform: translateY(10px) scale(.98); } to { opacity: 1; transform: none; } }

.chat__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px;
  background: var(--navy);
  color: white;
}
.chat__title { display: flex; align-items: center; gap: 12px; }
.chat__avatar {
  width: 40px; height: 40px;
  background: var(--sage);
  border-radius: 50%;
  display: grid; place-items: center;
  color: white;
}
.chat__title strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.chat__status {
  font-size: 11.5px;
  color: rgba(255,255,255,.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.chat__dot { width: 7px; height: 7px; border-radius: 50%; background: #A8D5B5; box-shadow: 0 0 0 3px rgba(168,213,181,.3); }
.chat__close {
  background: rgba(255,255,255,.12); color: white;
  border: none; width: 32px; height: 32px; border-radius: 50%;
  font-size: 20px; line-height: 1; cursor: pointer;
}
.chat__close:hover { background: rgba(255,255,255,.24); }

.chat__intro {
  padding: 18px 22px 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.3;
}

.chat__messages {
  flex: 1;
  padding: 14px 18px 8px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.msg {
  max-width: 84%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-wrap: break-word;
  animation: msgIn .25s ease-out;
}
@keyframes msgIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.msg--assistant {
  align-self: flex-start;
  background: var(--feature-bg);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.msg--user {
  align-self: flex-end;
  background: var(--navy);
  color: white;
  border-bottom-right-radius: 4px;
}
.msg--system {
  align-self: center;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
  padding: 4px 8px;
}
.msg--booking {
  align-self: stretch;
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--sage);
  border-radius: 16px;
  padding: 18px;
  color: var(--ink);
}
.msg--booking h4 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.msg--booking h4::before {
  content: '✓';
  background: var(--sage);
  color: white;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  font-size: 11px;
  font-family: var(--sans);
  font-style: normal;
}
.msg--booking dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 5px 16px; font-size: 13px; }
.msg--booking dt { color: var(--muted); }
.msg--booking dd { margin: 0; color: var(--ink); font-weight: 500; }
.msg--booking .ref {
  font-family: ui-monospace, monospace;
  font-size: 11.5px;
  color: var(--sage-hover);
  margin-top: 12px;
  letter-spacing: 0.05em;
}

.typing {
  align-self: flex-start;
  background: var(--feature-bg);
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  padding: 12px 14px;
  display: inline-flex;
  gap: 4px;
}
.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--navy); opacity: .4; animation: dot 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes dot { 0%,80%,100% { opacity: .3; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-3px); } }

.chat__quick { padding: 10px 16px 4px; display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12.5px;
  cursor: pointer;
  font-family: inherit;
  transition: all .15s ease;
}
.chip:hover { border-color: var(--ink); background: var(--bg-cream); }

.chat__form {
  display: flex;
  gap: 8px;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
#chat-input {
  flex: 1;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  background: var(--bg);
  transition: border-color .15s ease;
}
#chat-input:focus { border-color: var(--navy); background: white; }
.chat__send {
  background: var(--navy);
  color: white;
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.chat__send:hover { background: var(--navy-hover); transform: scale(1.05); }

.chat__legal {
  padding: 8px 18px 14px;
  font-size: 10.5px;
  color: var(--muted);
  text-align: center;
  background: var(--surface);
  letter-spacing: 0.02em;
}

/* =========================================================
   MOBILE OVERHAUL
   Tablet / large phone / phone / small phone breakpoints
   ========================================================= */

/* ---------- tablet (<= 1024px) ---------- */
@media (max-width: 1024px) {
  .container { padding: 0 22px; }
  .section-card { padding: 80px 22px; }
  .section-card .container { padding: 0 24px; }
  .nav__links { gap: 24px; }
}

/* ---------- large phone / small tablet (<= 768px) ---------- */
@media (max-width: 768px) {
  body { font-size: 14.5px; }

  .container { padding: 0 18px; }

  /* Nav */
  .nav { padding: 18px 16px 0; }
  .logo__name { font-size: 15px; }
  .logo__name em { font-size: 17px; }
  .logo__parent { font-size: 10px; }
  .nav__links { display: none; }
  .btn { padding: 10px 18px; font-size: 13.5px; }
  .btn--lg { padding: 12px 22px; font-size: 14px; }

  /* Hero */
  .hero { padding: 32px 0 24px; }
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__copy { padding: 12px 0 0; }
  .hero__eyebrow { font-size: 11.5px; margin-bottom: 18px; }
  .hero__title {
    font-size: clamp(34px, 9vw, 46px);
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    line-height: 1.04;
  }
  .hero__sub { font-size: 15px; margin-bottom: 24px; }
  .hero__form { gap: 8px; }
  .hero__email { min-width: 100%; padding: 13px 18px; font-size: 14px; }
  .hero__form .btn { width: 100%; justify-content: center; }
  .hero__photo { aspect-ratio: 4 / 3.4; border-radius: 28px; }

  /* Trust strip */
  .trust { padding: 36px 0 16px; }
  .trust__row { flex-direction: column; gap: 16px; text-align: center; }
  .trust__logos { gap: 22px; justify-content: center; }
  .trust__logo { font-size: 17px; }
  .trust__logo--sans { font-size: 14.5px; }

  /* Section card */
  .section-card {
    margin: 12px 12px;
    padding: 56px 18px;
    border-radius: 26px;
  }
  .section-card .container { padding: 0 4px; }
  .section__head { margin-bottom: 40px; }
  .section__head h2 {
    font-size: clamp(26px, 6.5vw, 34px);
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  .section__head .eyebrow { margin-bottom: 14px; font-size: 11px; }
  .lead { font-size: 14.5px; }

  /* Feature grid: stack photo first, then small cards in 2 cols */
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
    min-height: 0;
  }
  .feature-card { padding: 22px 20px; border-radius: 20px; }
  .feature-card--photo {
    grid-row: 1;
    grid-column: 1 / -1;
    aspect-ratio: 16 / 11;
  }
  .feature__badge { width: 36px; height: 36px; top: 18px; left: 18px; border-radius: 10px; }
  .feature__badge svg { width: 16px; height: 16px; }
  .feature__body { margin-top: 56px; }
  .feature__title { font-size: 14.5px; }
  .feature__desc { font-size: 13px; }

  /* Stats */
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 44px;
    padding-top: 36px;
  }
  .stat { padding: 0; }
  .stat__num { font-size: 34px; }
  .stat__suffix { font-size: 16px; }
  .stat__label { font-size: 12px; margin-top: 8px; }

  /* About */
  .about { grid-template-columns: 1fr; gap: 28px; }
  .about__photo { aspect-ratio: 4 / 3; border-radius: 24px; }
  .about__eyebrow { margin-bottom: 14px; font-size: 11px; }
  .about h2 { font-size: clamp(24px, 6vw, 32px); margin-bottom: 14px; }
  .about p { font-size: 14.5px; margin-bottom: 12px; }
  .about__tags { gap: 6px; margin-top: 16px; }
  .tag { padding: 7px 12px; font-size: 12px; }

  /* Steps */
  .steps { grid-template-columns: 1fr; gap: 10px; }
  .step { padding: 22px 20px; border-radius: 20px; }
  .step__num { font-size: 24px; margin-bottom: 12px; }
  .step h3 { font-size: 16px; }
  .step p { font-size: 13.5px; }

  /* CTA banner */
  .cta-banner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
    border-radius: 26px;
  }
  .cta-banner h3 { font-size: clamp(22px, 5.5vw, 28px); }
  .cta-banner p { font-size: 14px; margin-bottom: 18px; }
  .cta-banner .btn { width: 100%; }
  .cta-banner__photo { aspect-ratio: 16 / 11; }

  /* Pricing */
  .price-grid { grid-template-columns: 1fr; gap: 12px; }
  .price-card { padding: 24px 22px; border-radius: 22px; }
  .price-card__price { font-size: 26px; }

  /* FAQ */
  .faq details { padding: 16px 20px; border-radius: 16px; }
  .faq summary { font-size: 14.5px; gap: 10px; }
  .faq summary::after { font-size: 24px; }
  .faq__body { font-size: 13.5px; margin-top: 10px; }

  /* Footer */
  .footer { padding: 48px 0 24px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 28px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand p { font-size: 14px; }
  .footer h4 { font-size: 11.5px; }
  .footer p { font-size: 13.5px; }
  .footer__fine { padding-top: 18px; font-size: 11px; }
}

/* ---------- phone (<= 600px) ---------- */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .nav__inner .btn { padding: 9px 14px; font-size: 12.5px; }
  .logo__parent { display: none; }
  .logo__name { font-size: 16px; }
  .logo__name em { font-size: 18px; }

  .hero__title { font-size: clamp(30px, 8.5vw, 40px); }

  .section-card { margin: 10px 10px; padding: 48px 16px; border-radius: 24px; }
  .section-card .container { padding: 0; }

  .stats { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- small phone (<= 420px) ---------- */
@media (max-width: 420px) {
  .hero__title { font-size: 30px; line-height: 1.06; }
  .hero__sub { font-size: 14.5px; }

  .section__head h2 { font-size: 24px; }

  /* Feature grid collapses to single column on very narrow screens */
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card--photo { aspect-ratio: 16 / 10; }

  .stat__num { font-size: 30px; }
  .stat__suffix { font-size: 14px; }

  .price-card__price { font-size: 24px; }

  .cta-banner { padding: 26px 20px; }
  .cta-banner h3 { font-size: 22px; }
}

/* ---------- chat widget responsiveness ---------- */
@media (max-width: 768px) {
  /* Launcher: keep compact circle on touch (hover-expand only on desktop) */
  .chat-launcher { right: 18px; bottom: 18px; height: 56px; width: 56px; padding: 0; }
  .chat-launcher__icon { width: 24px; height: 24px; margin: 0 auto; }
  .chat-launcher__label { display: none; }
  .chat-launcher__pulse { width: 56px; height: 56px; }
  .chat-launcher:hover { width: 56px; padding: 0; }

  /* Chat panel: full screen minus margins */
  .chat {
    right: 10px;
    left: 10px;
    bottom: 84px;
    width: auto;
    max-width: none;
    height: calc(100vh - 100px);
    height: calc(100dvh - 100px);
    max-height: calc(100vh - 100px);
    max-height: calc(100dvh - 100px);
    border-radius: 22px;
  }
  .chat__header { padding: 16px; }
  .chat__title strong { font-size: 14px; }
  .chat__intro { padding: 14px 18px 4px; font-size: 16px; }
  .chat__messages { padding: 12px 14px 6px; }
  .msg { font-size: 13.5px; padding: 10px 14px; }
  .chip { font-size: 12px; padding: 7px 12px; }
  #chat-input { padding: 11px 14px; font-size: 14px; }
  .chat__send { width: 40px; height: 40px; }
}

@media (max-width: 420px) {
  .chat-launcher { right: 14px; bottom: 14px; height: 52px; width: 52px; }
  .chat-launcher__pulse { width: 52px; height: 52px; }
  .chat {
    bottom: 76px;
    height: calc(100vh - 92px);
    height: calc(100dvh - 92px);
  }
}

/* =========================================================
   BOOKING MODAL (Cal.com-style)
   ========================================================= */

.booking {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.booking.is-open { display: flex; animation: fadeIn .25s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.booking__backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 13, 18, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.booking__sheet {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: sheetUp .35s cubic-bezier(.4,.0,.2,1);
}
@keyframes sheetUp {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: none; }
}

.booking__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 28px 18px;
  border-bottom: 1px solid var(--line-3);
}
.booking__eyebrow {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-hover);
  font-weight: 600;
  margin-bottom: 6px;
}
.booking__title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
.booking__close {
  background: var(--feature-bg);
  color: var(--ink);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 22px; line-height: 1;
  cursor: pointer;
  transition: background .15s ease;
}
.booking__close:hover { background: var(--feature-2); }

.booking__steps {
  display: flex;
  gap: 8px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--line-3);
  overflow-x: auto;
  scrollbar-width: none;
}
.booking__steps::-webkit-scrollbar { display: none; }
.booking__step {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 999px;
  background: transparent;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.booking__step.is-active {
  background: var(--ink);
  color: white;
}
.booking__step.is-done {
  color: var(--sage-hover);
  font-weight: 500;
}

.booking__body {
  flex: 1;
  overflow-y: auto;
  padding: 26px 28px;
}

.booking__step-pane { display: none; }
.booking__step-pane.is-active { display: block; animation: paneIn .25s ease-out; }
@keyframes paneIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ----- service picker ----- */
.booking__services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  min-height: 200px;
}
.booking__loading {
  grid-column: 1 / -1;
  padding: 48px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.svc-card {
  text-align: left;
  background: var(--feature-bg);
  border: 1.5px solid transparent;
  border-radius: 18px;
  padding: 18px 20px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc-card:hover { background: var(--bg-cream); transform: translateY(-1px); }
.svc-card.is-selected {
  border-color: var(--ink);
  background: var(--bg-cream);
}
.svc-card__badge {
  width: 34px; height: 34px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.svc-card__badge svg { width: 16px; height: 16px; }
.svc-card__name { font-weight: 500; font-size: 14.5px; color: var(--ink); letter-spacing: -0.01em; }
.svc-card__desc { font-size: 12.5px; color: var(--muted); line-height: 1.45; flex: 1; }
.svc-card__meta {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 8px; padding-top: 8px;
  border-top: 1px solid var(--line-3);
}
.svc-card__price {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.svc-card__dur { font-size: 11.5px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }

/* ----- calendar ----- */
.cal {
  background: var(--feature-bg);
  border-radius: 20px;
  padding: 20px;
}
.cal__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.cal__title { font-size: 16px; letter-spacing: -0.015em; }
.cal__nav {
  background: white;
  border: 1px solid var(--line);
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--ink);
  font-family: inherit;
  transition: background .15s ease, border-color .15s ease;
}
.cal__nav:hover { background: var(--bg-cream); border-color: var(--ink); }
.cal__nav[disabled] { opacity: .35; cursor: not-allowed; }

.cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 8px;
}
.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal__day {
  aspect-ratio: 1;
  border-radius: 12px;
  border: none;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  display: grid; place-items: center;
}
.cal__day:hover:not([disabled]) { background: white; }
.cal__day[disabled] {
  color: var(--line-2);
  cursor: not-allowed;
}
.cal__day.is-today {
  font-weight: 600;
  color: var(--sage-hover);
}
.cal__day.is-selected {
  background: var(--ink);
  color: white;
}
.cal__day.is-selected.is-today { color: white; }
.cal__day--blank { visibility: hidden; }
.cal__note {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* ----- time slots ----- */
.booking__pick-summary {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.slot {
  background: var(--feature-bg);
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
  letter-spacing: -0.005em;
}
.slot:hover { background: var(--bg-cream); }
.slot.is-selected {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

/* ----- details form ----- */
.booking__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--ink); }
.field textarea { min-height: 60px; }
.booking__error {
  grid-column: 1 / -1;
  margin: 0;
  color: #B33A3A;
  font-size: 13px;
  min-height: 18px;
}
.booking__error:empty { display: none; }

/* ----- summary / review ----- */
.booking__summary {
  background: var(--feature-bg);
  border-radius: 18px;
  padding: 22px 24px;
}
.booking__summary dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 18px;
  margin: 0;
}
.booking__summary dt { color: var(--muted); font-size: 13px; }
.booking__summary dd { margin: 0; color: var(--ink); font-size: 14px; font-weight: 500; }

/* ----- done ----- */
.booking__done {
  text-align: center;
  padding: 16px 0 24px;
}
.booking__check {
  width: 64px; height: 64px;
  background: var(--sage);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  font-size: 30px;
  box-shadow: 0 12px 28px -10px rgba(124,152,133,.6);
}
.booking__done h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
.booking__done p { color: var(--muted); margin: 0 0 16px; font-size: 14.5px; }
.booking__ref {
  display: inline-block;
  padding: 8px 14px;
  background: var(--feature-bg);
  border-radius: 999px;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  color: var(--sage-hover);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}

/* ----- footer nav ----- */
.booking__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border-top: 1px solid var(--line-3);
  background: var(--bg-soft);
}
.booking__foot-spacer { flex: 1; }
.booking__foot .btn { min-width: 120px; }
.booking__foot.is-hidden { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 768px) {
  .booking { padding: 0; align-items: stretch; }
  .booking__sheet {
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    height: 100vh;
    height: 100dvh;
  }
  .booking__head { padding: 20px 18px 14px; }
  .booking__title { font-size: 22px; }
  .booking__steps { padding: 12px 18px; gap: 6px; }
  .booking__step { font-size: 11px; padding: 5px 10px; }
  .booking__body { padding: 18px; }
  .booking__foot { padding: 12px 18px; }
  .booking__foot .btn { min-width: 0; flex: 1; }

  .booking__services { grid-template-columns: 1fr; gap: 10px; }
  .svc-card { padding: 16px 18px; }

  .cal { padding: 16px; }
  .cal__title { font-size: 15px; }
  .cal__day { font-size: 13px; }
  .cal__weekdays { font-size: 10.5px; }

  .slot-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .slot { padding: 12px; font-size: 13.5px; }

  .booking__form { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 420px) {
  .booking__title { font-size: 19px; }
  .booking__head { padding: 16px 14px 12px; }
  .booking__body { padding: 16px 14px; }
  .booking__steps { padding: 10px 14px; }
  .booking__foot { padding: 12px 14px; }

  .cal { padding: 12px; }
  .cal__nav { width: 30px; height: 30px; font-size: 16px; }
  .cal__weekdays { font-size: 9.5px; }
  .cal__day { font-size: 12.5px; border-radius: 10px; }

  .slot { padding: 11px; font-size: 13px; }
}
