/* ==========================================================================
   Mudraa Ramnani — Speech Therapy
   Fonts: Playfair Display (display) + Figtree (text), self-hosted
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../assets/fonts/figtree-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url('../assets/fonts/figtree-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
                 U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../assets/fonts/playfair-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
                 U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../assets/fonts/playfair-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
                 U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --coral:        #f19b97;
  --coral-dark:   #e8887f;
  --teal:         #3f8d8e;
  --teal-dark:    #367a7b;
  --blush:        #f6eded;
  --ink:          #0a0a0a;
  --body:         #404040;
  --line:         #d9d9d9;
  --line-soft:    #e6e7eb;
  --white:        #ffffff;

  --font-text:    'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --shell-max:    1344px;   /* 1280px content + 2 × 32px gutter */
  --gutter:       32px;
  --section-pad:  112px;
  --header-h:     78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 500; }
button { font: inherit; color: inherit; }
hr { border: 0; margin: 0; }

:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- Layout helpers ---------- */
.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--inset { padding-inline: calc(var(--gutter) * 2); }

.display { font-family: var(--font-display); }

.eyebrow {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--teal);
}
.eyebrow--light { color: var(--white); }

.section-title {
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  margin-top: 20px;
}

.rule { height: 1px; background: var(--line); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding-inline: 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn--sm { height: 44px; padding-inline: 21px; }

.btn--teal { background: var(--teal); color: var(--white); }
.btn--teal:hover { background: var(--teal-dark); }

.btn--ghost { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn--white { background: var(--white); color: var(--ink); }
.btn--white:hover { background: var(--blush); }

.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.85); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.i-arrow, .i-chat, .i-check {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.i-arrow { width: 16px; height: 16px; }
.i-chat  { width: 18px; height: 18px; }
.i-check { width: 18px; height: 18px; stroke: var(--teal); stroke-width: 1.8; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--coral);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: var(--header-h);
}
.brand img { width: 221px; height: 48px; object-fit: contain; }

.primary-nav { flex: 1; }
.primary-nav ul {
  display: flex;
  justify-content: center;
  gap: 31px;
}
.primary-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--body);
  transition: color .2s ease;
}
.primary-nav a:hover { color: var(--ink); }

.header-cta { flex: none; }

/* Mobile nav */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  padding: 8px 24px 28px;
  background: var(--coral);
}
.mobile-nav ul { display: grid; gap: 4px; margin-bottom: 20px; }
.mobile-nav a { display: block; padding: 10px 0; font-size: 18px; font-weight: 500; color: var(--ink); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { padding-top: 80px; padding-bottom: var(--section-pad); overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 542px;
  column-gap: 196px;
  align-items: center;
}

.hero-title {
  font-size: 48px;
  line-height: 1.5;
  color: var(--ink);
  margin-top: 38px;
}
.hero-sub {
  margin-top: 14px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--teal);
}
.hero-copy .btn-row { margin-top: 41px; }

.hero-figure {
  position: relative;
  margin: 0;
  width: 542px;
}
.hero-frame {
  position: relative;
  z-index: 2;
  display: block;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 24px rgba(0, 0, 0, .07);
}
.hero-frame img { width: 100%; height: auto; }

.hero-blob {
  position: absolute;
  z-index: 1;
  top: 53px;
  right: -40px;
  width: 214px;
  height: 214px;
  border-radius: 50%;
  background: var(--coral);
}
.hero-wave {
  position: absolute;
  z-index: 3;
  left: -168px;
  top: 19px;
  width: 525px;
  height: 132px;
  pointer-events: none;
}
.hero-wave path { stroke: var(--teal); stroke-width: 1.5; }

/* ==========================================================================
   About
   ========================================================================== */
.about {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: var(--section-pad);
}
.about-grid { display: grid; grid-template-columns: 4fr 5fr; }

.lede {
  /* max-width reproduces the line breaks of the original design */
  max-width: 667px;
  font-size: 20.5px;
  line-height: 28px;
  color: var(--body);
}
.about-body .rule { margin-top: 33px; }

.tick {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-top: 23px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--ink);
}
.i-check { margin-top: 1px; }

/* ==========================================================================
   Services
   ========================================================================== */
.services { padding-block: var(--section-pad); overflow: hidden; }
.services .shell { position: relative; }

.services-head { position: relative; }
.services-wave {
  position: absolute;
  top: 10px;
  left: 1107px;
  width: 394px;
  height: 131px;
  pointer-events: none;
}
.services-wave path { stroke: var(--coral); stroke-width: 1.5; }

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.service-card {
  min-height: 288px;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color .2s ease;
}
.service-card:hover,
.service-card.is-featured { border-color: var(--teal); }

.service-num {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--teal);
}
.service-title {
  margin-top: 41px;
  font-size: 30px;
  line-height: 1.1;
  color: var(--ink);
}
.service-text {
  margin-top: 24px;
  /* max-width reproduces the line breaks of the original design */
  max-width: 510px;
  font-size: 16.4px;
  line-height: 27.5px;
  color: var(--body);
}

/* ==========================================================================
   How it works
   ========================================================================== */
.how {
  background: var(--blush);
  padding-block: var(--section-pad);
}
.how-rule { margin-top: 56px; }

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 31px;
}
.step-num {
  font-size: 32px;
  line-height: 1;
  color: var(--teal);
}
.step-num--lg { font-size: 37px; }
.step-title {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}
.step-text {
  margin-top: 14px;
  max-width: 326px;
  font-size: 16.4px;
  line-height: 28px;
  color: var(--body);
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta-section { padding-block: var(--section-pad); }

.cta {
  position: relative;
  overflow: hidden;
  padding: 80px 64px;
  background: var(--teal);
  color: var(--white);
}
.cta-wave {
  position: absolute;
  top: 60px;
  left: 760px;
  width: 519px;
  height: 161px;
  pointer-events: none;
}
.cta-wave path { stroke: var(--coral); stroke-width: 1.5; }

.cta-title {
  position: relative;
  margin-top: 20px;
  font-size: 48px;
  line-height: 1;
  color: var(--white);
}
.cta-text {
  margin-top: 25px;
  max-width: 545px;
  font-size: 18.2px;
  line-height: 32px;
  color: var(--white);
}
.cta .btn-row { margin-top: 41px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--coral);
  color: var(--body);
  padding-block: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 5.5fr 3.5fr 3fr;
}
.footer-logo { width: 221px; height: 48px; object-fit: contain; }

.footer-meta {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--body);
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 21px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.footer-wa:hover { color: var(--teal); }

.footer-nav ul { display: grid; gap: 12.3px; }
.footer-nav a {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: var(--body);
  transition: color .2s ease;
}
.footer-nav a:hover { color: var(--ink); }

.footer-tagline {
  margin-top: 11px;
  max-width: 240px;
  font-size: 14.4px;
  line-height: 24px;
  color: var(--body);
}

.footer-rule { margin-top: 57px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  font-size: 12.3px;
  line-height: 1.6;
}
.footer-bottom a:hover { color: var(--ink); }

/* ==========================================================================
   Cookie consent
   ========================================================================== */
.cookie {
  position: fixed;
  z-index: 80;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  border-top: 1px solid var(--line-soft);
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-block: 15px;
}
.cookie-copy { flex: 1; }
.cookie-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}
.cookie-copy p {
  margin-top: 5px;
  font-size: 14px;
  line-height: 20px;
  color: var(--body);
}
.cookie-actions { display: flex; gap: 9px; flex: none; }

.btn-cookie {
  height: 44px;
  padding-inline: 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.btn-cookie--decline { background: var(--coral); color: var(--white); }
.btn-cookie--decline:hover { background: var(--coral-dark); }
.btn-cookie--accept { background: var(--white); color: var(--teal); border-color: var(--teal); }
.btn-cookie--accept:hover { background: var(--teal); color: var(--white); }

/* ==========================================================================
   Page hero — coral band (Services)
   ========================================================================== */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--coral);
  padding-block: var(--section-pad);
}
.page-hero__ring {
  position: absolute;
  top: 0;
  right: -96px;
  width: 288px;
  height: 288px;
  border: 40px solid var(--white);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .shell { position: relative; z-index: 1; }

.page-title {
  margin-top: 24px;
  font-size: 72px;
  line-height: 1;
  color: var(--ink);
}
.page-hero__text {
  margin-top: 34px;
  max-width: 680px;
  font-size: 20.5px;
  line-height: 28px;
  color: var(--body);
}

/* ==========================================================================
   Page hero — blush band (Resources)
   ========================================================================== */
.page-hero--blush {
  background: var(--blush);
  border-bottom: 1px solid var(--line);
  padding-block: 96px 98px;
}
.page-hero--blush .page-title { margin-top: 0; font-size: 60px; }
.page-hero--blush .page-hero__text { margin-top: 21px; max-width: 760px; font-size: 18.3px; line-height: 1.6; }

/* ==========================================================================
   Services — detailed cards
   ========================================================================== */
.detail-card {
  display: flex;
  flex-direction: column;
  min-height: 495px;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color .2s ease;
}
.detail-card:hover { border-color: var(--teal); }

.detail-card__num {
  font-family: var(--font-display);
  font-size: 37px;
  line-height: 1;
  color: var(--teal);
}
.detail-card__title {
  margin-top: 35px;
  font-size: 30px;
  line-height: 1.1;
  color: var(--ink);
}
.detail-card__text {
  margin-top: 21px;
  /* max-width reproduces the line breaks of the original design */
  max-width: 546px;
  font-size: 18.3px;
  line-height: 32px;
  color: var(--body);
}
.detail-card__rule { margin-top: auto; }

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 16px;
  margin-top: 29px;
}
.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--body);
}
.detail-list .i-check { width: 15px; height: 15px; stroke-width: 2; margin-top: 2px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding-block: var(--section-pad); }
.faq-grid { display: grid; grid-template-columns: 11fr 15fr; }

.faq-list { border-bottom: 1px solid var(--line); }
.faq-item { border-top: 1px solid var(--line); }

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 25px 0 0;
  border: 0;
  background: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  cursor: pointer;
}
.faq-q .i-plus {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.6;
  stroke-linecap: round;
}

.faq-a {
  padding: 16px 0 24px 32px;
  font-size: 16.4px;
  line-height: 28px;
  color: var(--body);
}

/* ==========================================================================
   Simple CTA band (Services)
   ========================================================================== */
.cta--plain { padding: 55px 64px 56px; }
.cta--plain .cta-title { margin-top: 0; }
.cta--plain .cta-text { margin-top: 24px; max-width: 560px; font-size: 18.3px; }
.cta--plain .btn-row { margin-top: 36px; }

/* ==========================================================================
   Resources — filter bar + post grid
   ========================================================================== */
.library { padding-block: 45px 112px; }
.library__inner { padding-inline: 16px; }

.filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.filter-select {
  appearance: none;
  width: 196px;
  max-width: 100%;
  height: 40px;
  padding: 0 42px 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23404040' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3.5 6 4.5 4.5L12.5 6'/%3E%3C/svg%3E")
    no-repeat right 11px center / 16px 16px;
  font-family: inherit;
  font-size: 16.4px;
  color: var(--body);
  cursor: pointer;
}
.filter-bar__label { font-size: 16.4px; color: var(--body); }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  font-family: inherit;
  font-size: 12.5px;
  line-height: 1;
  color: var(--white);
  cursor: pointer;
  transition: background-color .2s ease;
}
.tag:hover { background: var(--teal-dark); }
.tag[aria-pressed="true"] { background: var(--ink); }

.post-count {
  margin-top: 31px;
  font-size: 14.5px;
  color: var(--body);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 21px;
}

.post-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
  transition: border-color .2s ease, box-shadow .25s ease, transform .25s ease;
}
.post-card:hover {
  border-color: var(--teal);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .10);
  transform: translateY(-4px);
}
.post-card:hover .post-card__title { color: var(--teal); }

.post-card__media { aspect-ratio: 16 / 9; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }

.post-card__body { display: flex; flex-direction: column; flex: 1; padding: 32px; }

.pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 14px;
  border: 1px solid #cfe2e1;
  border-radius: 999px;
  background: #eaf3f2;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--teal);
}

.post-card__title {
  margin-top: 14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: var(--ink);
  transition: color .2s ease;
}
.post-card__excerpt {
  margin-top: 12px;
  font-size: 16.4px;
  line-height: 26px;
  color: var(--body);
}
.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  font-size: 14.5px;
  color: var(--body);
}
.post-card__meta .dot { color: var(--line); }
.post-card__meta strong { font-weight: 600; color: var(--ink); }

.post-card__tags { display: flex; flex-wrap: wrap; gap: 8px 10px; margin-top: 20px; }
.post-card__tags span {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 15.5px;
  border-radius: 6px;
  background: var(--teal);
  font-size: 12.4px;
  line-height: 1;
  color: var(--white);
}

.empty-state {
  margin-top: 48px;
  padding: 48px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  text-align: center;
  font-size: 16.4px;
  color: var(--body);
}

/* ==========================================================================
   Booking
   ========================================================================== */
.booking-topbar { border-bottom: 1px solid var(--line); }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
}
.back-link:hover { color: var(--teal-dark); }
.back-link svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.booking { --shell-max: 1084px; padding-bottom: 96px; }
.booking-head { padding-top: 22px; }
.booking-head .page-title { margin-top: 20px; font-size: 60px; }
.booking-head__text { margin-top: 24px; max-width: 660px; font-size: 18.3px; line-height: 32px; color: var(--body); }

.booking-grid {
  display: grid;
  grid-template-columns: 402fr 585fr;
  gap: 32px;
  margin-top: 48px;
}

.booking-side { display: grid; gap: 20px; align-content: start; }

.booking-aside { padding: 24px; background: var(--blush); }
.booking-aside__icon { width: 26px; height: 26px; fill: none; stroke: var(--teal); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.booking-aside__title { margin-top: 21px; font-size: 30px; line-height: 1.1; color: var(--ink); }
.booking-aside__text { margin-top: 18px; font-size: 16.4px; line-height: 28px; color: var(--body); }
.booking-aside__list { margin-top: 24px; display: grid; gap: 10px; font-size: 16.4px; color: var(--body); }
.booking-aside__list li { display: flex; gap: 10px; align-items: flex-start; }

.contact-card { padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; }
.contact-card__eyebrow { font-size: 12.5px; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--teal); }
.contact-card__name { margin-top: 12px; font-size: 26px; line-height: 1.1; color: var(--ink); }
.contact-card__role { margin-top: 6px; font-size: 14.3px; color: var(--body); }
.contact-card__list { margin-top: 20px; display: grid; gap: 12px; }
.contact-card__list li { display: flex; align-items: center; gap: 12px; }
.contact-card__list a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  word-break: break-word;
  transition: color .2s ease;
}
.contact-card__list a:hover { color: var(--teal); }
.contact-card__icon {
  flex: none;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-card { padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; }

.field { margin-top: 20px; }
.field:first-child { margin-top: 0; }
.field__label { display: block; font-size: 14.3px; font-weight: 600; color: var(--ink); }
.field__hint { margin-top: 4px; font-size: 14.3px; color: var(--body); }

.control {
  width: 100%;
  height: 47px;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-family: inherit;
  font-size: 16.4px;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
select.control {
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23404040' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3.5 6 4.5 4.5L12.5 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
  cursor: pointer;
}
textarea.control { height: auto; min-height: 118px; padding: 14px 16px; line-height: 26px; resize: vertical; }
.control:focus { outline: 0; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(63, 141, 142, .15); }
.control[aria-invalid="true"] { border-color: #c0564f; }

.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 20px; }
.field-row .field { margin-top: 0; }

.slot-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.slot {
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}
.slot:hover { border-color: var(--teal); }
.slot[aria-pressed="true"] { background: var(--teal); border-color: var(--teal); color: var(--white); }

.slot-note { margin-top: 12px; font-size: 14.3px; line-height: 26px; color: var(--body); }

.booking-card .rule { margin: 28px 0; }
.booking-card__subhead { font-size: 30px; line-height: 1.1; color: var(--ink); }

.field-error { margin-top: 6px; font-size: 14px; color: #c0564f; }

.submit { width: 100%; margin-top: 28px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1240px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) 46%; column-gap: 8%; }
  .hero-figure { width: 100%; }
  .hero-wave { left: -30%; }
  .services-wave { left: auto; right: -80px; }
  .cta-wave { left: auto; right: 0; }
}

@media (max-width: 1040px) {
  :root { --section-pad: 88px; }

  .shell--inset { padding-inline: var(--gutter); }

  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .header-inner { justify-content: space-between; }
  .mobile-nav { display: block; }
  .mobile-nav[hidden] { display: none; }

  .hero { padding-top: 64px; }
  .hero-grid { grid-template-columns: 1fr; row-gap: 56px; }
  .hero-figure { width: 100%; max-width: 542px; margin-inline: auto; }
  .hero-wave { display: none; }

  .about-grid { grid-template-columns: 1fr; row-gap: 40px; }
  .services-wave { display: none; }

  .cta { padding: 56px 40px; }
  .cta-wave { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 48px; }
  .footer-tagline { grid-column: 1 / -1; margin-top: 0; }
}

@media (max-width: 760px) {
  :root { --section-pad: 72px; --gutter: 24px; }

  .section-title, .hero-title, .cta-title { font-size: 36px; }
  .hero-title { line-height: 1.25; }
  .section-title br, .cta-title br { display: none; }
  .lede { font-size: 19px; line-height: 1.5; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; padding: 28px; }
  .service-title { font-size: 26px; margin-top: 24px; }

  .step-grid { grid-template-columns: 1fr; row-gap: 40px; }

  .cta { padding: 44px 28px; }
  .cta-text { font-size: 17px; line-height: 1.7; }

  .footer-grid { grid-template-columns: 1fr; row-gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .cookie-actions { width: 100%; }
  .btn-cookie { flex: 1; }

  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn--sm { width: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ==========================================================================
   Responsive — inner pages
   ========================================================================== */
@media (max-width: 1240px) {
  .page-hero__ring { right: -140px; }
}

@media (max-width: 1040px) {
  .page-hero__ring { display: none; }
  .page-title { font-size: 54px; }
  .page-hero--blush .page-title,
  .booking-head .page-title { font-size: 48px; }

  .faq-grid { grid-template-columns: 1fr; row-gap: 40px; }
  .cta--plain { padding: 44px 40px 48px; }

  .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .booking-grid { grid-template-columns: 1fr; row-gap: 32px; margin-top: 48px; }
}

@media (max-width: 760px) {
  .page-hero { padding-block: 72px; }
  .page-title,
  .page-hero--blush .page-title,
  .booking-head .page-title { font-size: 36px; }
  .page-hero__text { font-size: 19px; line-height: 1.5; }

  .detail-card { min-height: 0; padding: 28px; }
  .detail-card__title { margin-top: 24px; font-size: 26px; }
  .detail-card__text { margin-top: 18px; font-size: 17px; line-height: 1.7; }
  .detail-list { grid-template-columns: 1fr; margin-top: 22px; }
  .detail-card__rule { margin-top: 26px; }

  .faq-q { font-size: 17px; }
  .faq-a { padding-left: 32px; font-size: 16px; line-height: 1.7; }

  .library { padding-block: 40px 72px; }
  .library__inner { padding-inline: 0; }
  .post-grid { grid-template-columns: 1fr; gap: 24px; }
  .post-card__body { padding: 24px; }
  .post-card__title { font-size: 22px; line-height: 1.3; }
  .filter-select { width: 100%; }

  .booking { padding-bottom: 64px; }
  .booking-head { padding-top: 36px; }
  .booking-head__text { font-size: 17px; line-height: 1.7; }
  .booking-aside, .booking-card { padding: 24px; }
  .booking-card__subhead, .booking-aside__title { font-size: 26px; }
  .field-row { grid-template-columns: 1fr; }
  .cta--plain { padding: 36px 24px 40px; }
}
