:root {
  --ink: #071725;
  --muted: #51606a;
  --blue: #12324a;
  --line: #dcebea;
  --teal: #178a7d;
  --teal-dark: #0d756c;
  --teal-soft: #eef8f7;
  --white: #fff;
  --shadow: 0 18px 45px rgba(26, 70, 74, .08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

/* Keep anchor navigation from hiding behind the sticky header */
section[id],
footer[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { width: 1.25em; height: 1.25em; }
.sprite { display: none; }

.site-header {
  height: 78px;
  display: flex;
  align-items: center;
  padding: 0 max(32px, calc((100vw - 1280px) / 2 + 32px));
  gap: 20px;
  border-bottom: 1px solid #edf2f2;
  background: rgba(255,255,255,.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
}

.brand svg {
  color: var(--teal);
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 14px;
  font-weight: 650;
}

.header-panel {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 38px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: 0;
}

.mobile-menu-toggle {
  display: none;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid var(--teal);
  font-weight: 750;
  font-size: 14px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #189782, #0d756c);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 9px 18px rgba(23, 138, 125, .18);
}

.btn-outline {
  color: var(--teal-dark);
  background: rgba(255,255,255,.72);
}

.btn-soft {
  color: var(--blue);
  background: #eef8f7;
  border-color: #d8ebea;
}

main {
  width: 100%;
  margin: 0;
}

main > :not(.hero) {
  width: min(1180px, calc(100% - 64px));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  width: 100%;
  margin: 0 0 56px;
  min-height: calc(100vh - 78px);
  min-height: calc(100svh - 78px);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  background: #f7faf9;
  display: flex;
  align-items: center;
  box-shadow: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #fff 0%, #fff 31%, rgba(255,255,255,.86) 45%, rgba(255,255,255,.18) 66%, rgba(255,255,255,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,0) 20%);
}

.hero-copy {
  width: min(680px, 58%);
  max-width: 680px;
  margin-left: max(64px, calc((100% - 1180px) / 2));
  padding: 54px 0 48px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 820;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero h1,
.practice h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0 0 16px;
  max-width: 500px;
  font-size: clamp(44px, 4.4vw, 54px);
  line-height: 1.09;
  font-weight: 700;
  color: var(--blue);
}

.hero p {
  margin: 0;
  color: #263c48;
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
  margin-top: 24px;
}

.hero-actions .btn {
  height: 52px;
  min-width: 0;
  width: 100%;
  padding: 0 14px;
  font-size: 15px;
  line-height: 1;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 18px;
}

.hero-meta p {
  min-height: 52px;
  padding: 10px 14px;
  border: 1px solid #dcebea;
  border-radius: 12px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 30px rgba(18, 50, 74, .06);
}

.hero-meta strong,
.hero-meta span {
  display: block;
  font-size: 14px;
}

.hero-meta strong {
  color: var(--ink);
  line-height: 1.1;
}

.hero-meta span {
  color: var(--teal-dark);
  font-weight: 780;
}

.hero-image {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  height: 100%;
  min-height: calc(100vh - 78px);
  min-height: calc(100svh - 78px);
  width: min(68%, 980px);
  object-fit: cover;
  object-position: center right;
}

/* Prevent the hero from overflowing on shorter laptop/Windows viewports */
@media (max-height: 820px) {
  .hero-copy {
    padding: 40px 0 34px;
  }
  .hero h1 {
    font-size: clamp(40px, 4.2vw, 50px);
  }
  .hero-actions .btn,
  .hero-meta p {
    min-height: 48px;
  }
}

.trust-strip {
  margin: 72px 0 92px;
  min-height: 132px;
  border-radius: 16px;
  background: linear-gradient(90deg, #eef8f6, #f5fbfa);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-strip div {
  height: 82px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--teal-dark);
  border-left: 1px solid #d9e7e6;
  text-align: center;
}

.trust-strip div:first-child { border-left: 0; }
.trust-strip svg { width: 31px; height: 31px; }
.trust-strip strong { color: var(--ink); font-size: 15px; line-height: 1.25; }

.section { margin-top: 0; margin-bottom: 96px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 34px;
}

h2 {
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 790;
}

.section-head p,
.team > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  margin: 42px 0 42px;
}

.service-grid article {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.service-grid span {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #edf8f7;
  border: 1px solid #e0eeee;
  font-size: 30px;
}

.service-grid svg { width: 40px; height: 40px; }
.service-grid h3 { margin: 0; font-size: 15px; font-weight: 780; }
/* legacy helper (kept harmless for existing markup) */
.aligner { font-size: 46px !important; line-height: 1; }

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 0;
}

.service-detail-grid article,
.why-grid article,
.credentials article {
  border: 1px solid #e4eeee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(26, 70, 74, .06);
}

.service-detail-grid article {
  min-height: 270px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.service-detail-grid h3,
.why-grid h3,
.anxiety-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.25;
}

.service-detail-grid p,
.why-grid p,
.philosophy p,
.anxiety-card p,
.faq p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.service-detail-grid ul {
  padding: 0;
  margin: 14px 0 18px;
  list-style: none;
  color: #334752;
  font-size: 15px;
}

.service-detail-grid li {
  margin: 5px 0;
}

.service-detail-grid li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--teal-dark);
  font-weight: 800;
}

.service-detail-grid .link {
  margin-top: auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 34px;
}

.why-grid article {
  padding: 34px 30px;
}

.why-grid svg {
  width: 40px;
  height: 40px;
  color: var(--teal-dark);
  margin-bottom: 14px;
}

.card,
.panel {
  border-radius: 9px;
  border: 1px solid #edf2f2;
  background: #fff;
  box-shadow: var(--shadow);
}

.practice {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  overflow: hidden;
  min-height: 460px;
  margin-bottom: 96px;
  background: linear-gradient(90deg, #fff, #fbfdfd);
}

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  margin: 0 0 96px;
}

.philosophy > div:first-child,
.anxiety-card {
  padding: 42px;
  border-radius: 18px;
  background: #f7fbfb;
  border: 1px solid #e3eeee;
}

.philosophy h2 {
  color: var(--blue);
  margin-bottom: 10px;
}

.anxiety-card {
  background: linear-gradient(135deg, #eef8f7, #fff);
}

.anxiety-card .link {
  margin-top: 18px;
}

.practice img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.practice > div {
  padding: 72px 78px;
}

.practice h2 {
  font-size: 40px;
  margin-bottom: 14px;
}

.practice p {
  margin: 0 0 10px;
  color: #122633;
  font-size: 17px;
}

.practice ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 20px;
  color: var(--muted);
  font-size: 15px;
}

.practice li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 7px 0;
}

.practice li svg { color: var(--teal); width: 14px; height: 14px; }
.practice .btn { height: 31px; min-height: 31px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-bottom: 96px;
}

.panel {
  min-height: 280px;
  border: 0;
}

.reviews {
  padding: 42px;
  background: linear-gradient(135deg, #fff 0%, #fff 56%, #f7fbfb 100%);
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 30px;
}

.rating strong { font-size: 20px; }
.rating span { color: #f3b01b; letter-spacing: 1px; }
.rating small { color: var(--muted); font-size: 13px; }
.rating b { color: #4285f4; font-size: 16px; margin-left: 14px; }

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.review-cards article {
  min-height: 170px;
  padding: 24px 20px;
  border: 1px solid #e9eeee;
  border-radius: 5px;
  background: #fff;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-cards p { margin: 0; color: #334752; }
.review-cards strong { font-size: 13px; }

.team { padding: 28px 0 0; box-shadow: none; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 28px 0 24px;
}

.team-grid article {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #e5ecec;
  background: #fff;
}

.team-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top center;
}

.team-grid h3 {
  margin: 16px 16px 0;
  font-size: 16px;
  line-height: 1.2;
}

.team-grid p {
  margin: 4px 16px 18px;
  color: var(--muted);
  font-size: 14px;
}

.team-grid small {
  display: none;
}

.stats {
  min-height: 118px;
  border-radius: 16px;
  background: linear-gradient(90deg, #eef8f6, #f6fbfa);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-bottom: 96px;
  box-shadow: var(--shadow);
}

.credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 96px;
}

.credentials article {
  padding: 28px;
}

.credentials strong,
.credentials span {
  display: block;
}

.credentials strong {
  color: var(--blue);
  font-size: 20px;
  margin-bottom: 4px;
}

.credentials span {
  color: var(--muted);
  font-size: 15px;
}

.stats div {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  padding: 0 36px;
  border-left: 1px solid #dcebea;
}

.stats div:first-child { border-left: 0; }
.stats span, .stats svg {
  grid-row: span 2;
  color: var(--teal-dark);
  font-size: 36px;
  width: 36px;
  height: 36px;
}

.stats strong {
  color: var(--teal-dark);
  font-size: 28px;
  line-height: 1.1;
}

.stats small { color: #334752; font-size: 15px; }

.cta {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px;
  margin-bottom: 96px;
  background: linear-gradient(90deg, #fbfdfd, #f3fafa);
}

.cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  margin-bottom: 5px;
}

.cta p {
  max-width: 520px;
  margin: 0;
  color: #263c48;
  font-size: 16px;
}

.faq {
  margin-bottom: 96px;
}

.faq .section-head {
  margin-bottom: 28px;
}

.faq details {
  border-top: 1px solid #e4eeee;
  padding: 24px 0;
}

.faq details:last-child {
  border-bottom: 1px solid #e4eeee;
}

.faq summary {
  cursor: pointer;
  color: var(--blue);
  font-weight: 820;
  font-size: 20px;
}

.faq p {
  max-width: 660px;
  margin-top: 9px;
}

.cta-actions { display: flex; gap: 31px; }
.cta-actions .btn { width: 190px; height: 54px; }

.content-grid-2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  border: 1px solid #e4eeee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(26, 70, 74, .06);
  padding: 22px;
}

.info-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.info-card a {
  color: var(--teal-dark);
  font-weight: 800;
}

.contact-form {
  border: 1px solid #e4eeee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(26, 70, 74, .06);
  padding: 22px;
}

.contact-form .row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 760;
  color: #334752;
  margin-bottom: 6px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #dcebea;
  border-radius: 10px;
  padding: 12px 12px;
  font: inherit;
  font-size: 15px;
  background: #fff;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e4eeee;
  box-shadow: 0 14px 32px rgba(26, 70, 74, .06);
}

.team-grid.detailed small {
  display: block;
  margin: 0 16px 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

footer {
  border-top: 1px solid #eef3f3;
  background: #fff;
}

.footer-grid {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr 1.22fr;
  gap: 44px;
  padding: 34px 0 42px;
}

.footer-grid > div {
  min-height: 119px;
  padding-top: 13px;
  border-left: 1px solid #edf2f2;
}

.footer-grid > div:first-child {
  border-left: 0;
  padding-right: 15px;
}

.footer-brand {
  min-width: 0;
  margin-bottom: 15px;
}

.footer-grid h3 {
  margin: 0 0 15px;
  font-size: 15px;
}

.footer-grid p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid b {
  display: inline-block;
  width: 59px;
  color: #334752;
  font-weight: 500;
}

.footer-grid p svg {
  color: var(--teal);
  width: 15px;
  height: 15px;
  margin-right: 12px;
  vertical-align: middle;
}

.socials { display: flex; gap: 16px; color: var(--teal); }
.socials span {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.map {
  width: 280px;
  height: 140px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #dde8e8;
}

.footer-bottom {
  height: 48px;
  background: linear-gradient(90deg, #178a7d, #0d756c);
  color: #fff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 calc((100vw - min(1180px, calc(100% - 64px))) / 2);
}

.footer-bottom nav { display: flex; gap: 30px; }

.mobile-sticky {
  display: none;
}

.scroll-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 34;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #189782, #0d756c);
  color: #fff;
  font: inherit;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 35px rgba(18, 50, 74, .24);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-note {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  width: min(330px, calc(100vw - 40px));
  padding: 14px 14px 14px 16px;
  border: 1px solid #d9e8e7;
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 45px rgba(18, 50, 74, .16);
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-note p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.cookie-note button {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--teal-dark);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

@media (min-width: 761px) and (max-width: 1080px) {
  main > :not(.hero) {
    width: min(100% - 48px, 980px);
  }

  .hero {
    min-height: calc(100svh - 78px);
  }

  .hero-copy {
    width: min(620px, 64%);
    max-width: 640px;
    margin-left: 48px;
    padding: 44px 0 40px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    max-width: 430px;
    font-size: 16px;
  }

  .hero-actions,
  .hero-meta {
    max-width: 610px;
  }

  .hero-actions .btn {
    font-size: 14px;
    height: 50px;
  }

  .hero-image {
    min-height: calc(100svh - 78px);
    width: 66%;
  }

  .main-nav {
    gap: 18px;
  }

  .header-panel {
    gap: 18px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand {
    min-width: 170px;
  }

  .header-actions .btn-outline {
    display: none;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    padding-bottom: 0;
  }

  .site-header {
    width: 100%;
    min-height: 72px;
    height: auto;
    margin: 0;
    padding: 12px 16px;
    position: relative;
    z-index: 40;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .brand {
    min-width: 0;
    font-size: 14px;
  }

  .brand svg {
    width: 34px;
    height: 34px;
  }

  .mobile-menu-toggle {
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    border: 1px solid #d5e8e6;
    border-radius: 12px;
    color: var(--teal-dark);
    background: #fff;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-open .mobile-menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .mobile-menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-panel {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    z-index: 45;
    display: none;
    margin-left: 0;
    padding: 14px;
    border: 1px solid #dbe9e8;
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 50px rgba(18, 50, 74, .16);
  }

  .menu-open .header-panel {
    display: grid;
    gap: 14px;
  }

  .main-nav {
    display: grid;
    width: 100%;
    gap: 4px;
    font-size: 16px;
  }

  .main-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 12px;
  }

  .main-nav a:active,
  .main-nav a:hover {
    background: #eef8f7;
    color: var(--teal-dark);
  }

  .header-actions {
    margin-left: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .header-panel .header-actions {
    display: none;
  }
  .header-actions .btn {
    width: 100%;
    min-height: 46px;
  }
  main { width: 100%; padding-bottom: 104px; }
  main > :not(.hero),
  .footer-grid {
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }
  .hero {
    width: 100%;
    margin-left: 0;
    margin-bottom: 28px;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0 0 20px;
    background: #f8fbfb;
  }
  .hero::before { display: none; }
  .hero-copy {
    order: 2;
    width: calc(100% - 32px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 0 32px;
  }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 15px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; min-height: 50px; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-image {
    order: 1;
    position: static;
    width: 100%;
    max-width: none;
    height: 46vh;
    margin: 0;
    max-height: 330px;
    min-height: 0;
    border-radius: 0;
    object-fit: cover;
    object-position: center;
  }
  .trust-strip {
    margin: 48px 0 64px;
  }
  .trust-strip, .service-detail-grid, .why-grid, .philosophy, .split, .stats, .credentials, .footer-grid { grid-template-columns: 1fr; }
  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }
  .trust-strip div {
    min-height: 76px;
    height: auto;
    padding: 16px 18px;
    border: 1px solid #dcebea;
    border-radius: 18px;
    background: linear-gradient(180deg, #f3fbfa 0%, #fff 100%);
    box-shadow: 0 14px 30px rgba(18, 50, 74, .06);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }
  .trust-strip div:first-child {
    border-top: 1px solid #dcebea;
  }
  .trust-strip div:last-child {
    grid-column: auto;
    min-height: 76px;
  }
  .trust-strip svg {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
  }
  .trust-strip strong {
    font-size: 16px;
  }
  .section-head {
    display: grid;
    gap: 14px;
    margin-bottom: 22px;
  }
  h2 {
    font-size: 38px;
  }
  .section-head p,
  .team > p {
    font-size: 16px;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 28px;
  }
  .service-grid article {
    min-height: 128px;
    padding: 16px 10px;
    border: 1px solid #dcebea;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(18, 50, 74, .06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }
  .service-grid span {
    width: 56px;
    height: 56px;
    font-size: 24px;
    flex: 0 0 auto;
  }
  .service-grid svg {
    width: 28px;
    height: 28px;
  }
  .service-grid h3 {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.25;
  }
  .practice { grid-template-columns: 1fr; }
  .practice > div { padding: 28px 24px; }
  .practice img { height: auto; }
  .review-cards, .team-grid { grid-template-columns: 1fr; }
  .team {
    padding-top: 8px;
  }
  .team-grid {
    gap: 16px;
  }
  .team-grid article {
    display: grid;
    grid-template-columns: 108px 1fr;
    align-items: center;
    min-height: 154px;
    padding: 14px;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(18, 50, 74, .08);
  }
  .team-grid img {
    width: 108px;
    height: 126px;
    margin-left: 0;
    border-radius: 14px;
    object-fit: cover;
    object-position: top center;
  }
  .team-grid h3 {
    margin: 0 0 3px 18px;
    font-size: 18px;
  }
  .team-grid p {
    margin: 0 0 8px 18px;
    font-size: 15px;
    color: var(--teal-dark);
    font-weight: 750;
  }
  .team-grid small {
    display: block;
    margin-left: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
  }
  .stats div { border-left: 0; border-top: 1px solid #dcebea; min-height: 78px; }
  .stats div:first-child { border-top: 0; }
  .cta {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    padding: 28px 22px;
    margin-bottom: 64px;
    border-radius: 18px;
  }
  .cta h2 {
    font-size: 30px;
    line-height: 1.15;
  }
  .cta p {
    max-width: none;
    font-size: 16px;
    line-height: 1.55;
  }
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cta-actions .btn { width: 100%; min-height: 52px; }
  .footer-grid {
    width: 100%;
    gap: 0;
    padding: 26px 22px 110px;
  }
  .footer-grid > div {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid #edf2f2;
    padding: 24px 0;
  }
  .footer-grid > div:first-child {
    border-top: 0;
    padding-right: 0;
  }
  .footer-grid h3 {
    margin-bottom: 12px;
    font-size: 20px;
  }
  .footer-grid p {
    font-size: 16px;
    line-height: 1.6;
  }
  .footer-grid b {
    width: 86px;
  }
  .footer-brand {
    margin-bottom: 16px;
    font-size: 18px;
  }
  .footer-brand svg {
    width: 40px;
    height: 40px;
  }
  .socials span {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .map {
    width: 100%;
    height: 180px;
  }
  .footer-bottom {
    height: auto;
    padding: 18px 22px 104px;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
    text-align: center;
    padding-bottom: max(104px, calc(env(safe-area-inset-bottom) + 84px));
  }
  .footer-bottom nav { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .content-grid-2 { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img { height: 160px; }
  .mobile-sticky {
    position: fixed;
    left: 50%;
    bottom: 12px;
    width: calc(100% - 24px);
    transform: translateX(-50%);
    z-index: 30;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.8fr);
    gap: 9px;
    padding: 9px;
    border-radius: 18px;
    background: rgba(255,255,255,.94);
    border: 1px solid #d9e8e7;
    box-shadow: 0 16px 45px rgba(18, 50, 74, .2);
  }
  .scroll-top {
    left: 12px;
    bottom: 96px;
    transform: translateY(12px);
  }
  .scroll-top.is-visible {
    transform: translateY(0);
  }
  .mobile-sticky a {
    min-width: 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    color: var(--teal-dark);
    background: #eef8f7;
    font-weight: 850;
    white-space: nowrap;
  }
  .mobile-sticky a:last-child {
    color: #fff;
    background: linear-gradient(135deg, #189782, #0d756c);
  }
  .cookie-note {
    left: 50%;
    bottom: 92px;
    width: calc(100% - 24px);
    transform: translateX(-50%);
    display: flex;
    padding: 10px 12px;
    gap: 10px;
  }
  .cookie-note p {
    font-size: 11px;
    line-height: 1.35;
  }
  .cookie-note button {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    margin-top: 0;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 11px 14px;
  }

  .brand {
    gap: 8px;
    font-size: 13px;
  }

  .brand svg {
    width: 32px;
    height: 32px;
  }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
  }

  main { width: 100%; }
  .footer-grid,
  main > :not(.hero) {
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy {
    padding: 26px 12px 30px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-image {
    max-height: 300px;
  }

  .hero-actions .btn {
    min-height: 48px;
  }

  .hero-meta p {
    min-height: 58px;
  }

  .team-grid article {
    grid-template-columns: 88px 1fr;
    min-height: 138px;
    padding: 12px;
  }

  .team-grid img {
    width: 88px;
    height: 108px;
    margin-left: 0;
  }

  .team-grid h3 {
    margin-left: 14px;
    font-size: 16px;
  }

  .team-grid p {
    margin-left: 14px;
    font-size: 14px;
  }

  .team-grid small {
    margin-left: 14px;
    font-size: 12.5px;
  }

  .cta {
    padding: 24px 18px;
  }

  .cta h2 {
    font-size: 28px;
  }

  .footer-grid {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-grid p {
    font-size: 15px;
  }

  .mobile-sticky {
    width: calc(100% - 20px);
  }

  .scroll-top {
    bottom: 92px;
    left: 10px;
  }

  .mobile-sticky a {
    font-size: 14px;
  }

  .cookie-note {
    width: calc(100% - 20px);
    display: block;
  }

  .cookie-note button {
    margin-top: 8px;
  }
}
