:root {
  --bg: #faf8f6;
  --card: #ffffff;
  --text: #222222;
  --muted: #666666;
  --line: #e8e4df;
  --green: #8fa68e;
  --green-dark: #3e5a4d;
  --graphite: #242421;
  --gold: #b89b62;
  --shadow: 0 24px 70px rgba(34, 34, 34, 0.1);
  --soft-shadow: 0 12px 34px rgba(34, 34, 34, 0.08);
  --radius: 24px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(143, 166, 142, 0.16), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  border-radius: 999px;
  background: var(--graphite);
  color: #fff;
  padding: 12px 18px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: var(--container);
  margin: 16px auto 0;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(232, 228, 223, 0.82);
  border-radius: 999px;
  background: rgba(250, 248, 246, 0.9);
  box-shadow: 0 18px 50px rgba(34, 34, 34, 0.07);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand img {
  width: 44px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.96rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border-radius: 999px;
  color: #47443f;
  font-size: 0.92rem;
  padding: 10px 13px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.site-nav a:hover {
  background: #fff;
  color: var(--text);
}

.site-nav a.is-active {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 8px 20px rgba(34, 34, 34, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.text-link {
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: linear-gradient(135deg, #2c2c28, var(--graphite));
  color: #fff;
  box-shadow: 0 14px 30px rgba(36, 36, 33, 0.22);
}

.button-dark:hover {
  box-shadow: 0 18px 38px rgba(36, 36, 33, 0.28);
}

.button-light {
  border-color: var(--line);
  background: #fff;
  color: var(--graphite);
  box-shadow: 0 10px 24px rgba(34, 34, 34, 0.06);
}

.button-ghost {
  border-color: rgba(62, 90, 77, 0.22);
  background: rgba(143, 166, 142, 0.1);
  color: var(--green-dark);
}

.button-small {
  min-height: 42px;
  padding: 12px 17px;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--graphite);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
  width: var(--container);
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px) 0 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: var(--gold);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 5.1vw, 4.5rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.72rem, 3vw, 3.15rem);
  font-weight: 830;
  letter-spacing: 0;
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.18;
}

p {
  color: var(--muted);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1.45vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 750px;
  margin: 0;
}

.hero-proof div {
  min-height: 108px;
  border: 1px solid rgba(232, 228, 223, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(34, 34, 34, 0.04);
}

.hero-proof dt {
  margin-bottom: 6px;
  color: var(--graphite);
  font-size: 1.04rem;
  font-weight: 900;
}

.hero-proof dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.hero-media {
  position: relative;
  min-height: 640px;
  z-index: 0;
  overflow: visible;
}

.hero-image-container {
  display: block;
  position: relative;
  z-index: 1;
  height: min(720px, 74vh);
  min-height: 600px;
  overflow: hidden;
  border: 1px solid rgba(184, 155, 98, 0.28);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center 35%;
}

.hero-note {
  position: absolute;
  right: -20px;
  bottom: 38px;
  z-index: 3;
  width: min(310px, 78%);
  border: 1px solid rgba(232, 228, 223, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.hero-note span {
  display: block;
  margin-bottom: 4px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.2;
}

.trust-band,
.section,
.final-cta,
.site-footer {
  width: var(--container);
  margin-inline: auto;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--soft-shadow);
}

.trust-band div {
  background: rgba(255, 255, 255, 0.84);
  padding: 22px;
}

.trust-band span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.trust-band strong {
  display: block;
  margin-top: 4px;
  font-size: 1rem;
}

.section {
  padding: clamp(70px, 10vw, 124px) 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading p,
.split-heading p {
  max-width: 680px;
  font-size: 1.05rem;
}

.compact {
  max-width: 720px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 36px;
}

.split-heading > div {
  max-width: 850px;
}

.split-heading > p {
  max-width: 360px;
  margin-bottom: 8px;
}

.problem-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.problem-grid article,
.service-grid article,
.team-grid article,
.about-card,
.location-card {
  border: 1px solid rgba(232, 228, 223, 0.9);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.problem-grid article {
  padding: 24px;
}

.problem-grid article:hover,
.team-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 166, 142, 0.3);
  box-shadow: var(--shadow);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: rgba(143, 166, 142, 0.16);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-grid article {
  display: flex;
  flex-direction: column;
  min-height: 178px;
  padding: 24px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 166, 142, 0.35);
  box-shadow: var(--shadow);
}

.service-price {
  display: inline-flex;
  width: max-content;
  margin-top: auto;
  border: 1px solid rgba(184, 155, 98, 0.26);
  border-radius: 999px;
  background: rgba(184, 155, 98, 0.08);
  color: var(--green-dark);
  padding: 7px 11px;
  font-size: 0.86rem;
  font-weight: 900;
}

.why {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.why-media img {
  width: 100%;
  height: 720px;
  border-radius: 34px;
  object-fit: cover;
  object-position: center 40%;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 28px;
}

.feature-list article {
  border-left: 3px solid var(--green);
  padding-left: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr 0.95fr;
  gap: 16px;
  align-items: stretch;
}

.about-grid > img {
  width: 100%;
  height: 651px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.about-grid > img:first-child {
  object-position: center 34%;
}

.about-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 54px);
}

.about-card h3 {
  font-size: clamp(1.7rem, 2.7vw, 2.7rem);
}

.text-cta {
  display: inline-flex;
  width: max-content;
  margin-top: 16px;
  border-bottom: 1px solid var(--gold);
  color: var(--green-dark);
  font-weight: 900;
}

.visit-steps {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: #47443f;
}

.visit-steps li {
  padding-left: 4px;
}

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

.team-grid article {
  overflow: hidden;
  padding: 12px 12px 24px;
}

.team-grid img {
  width: 100%;
  height: 560px;
  margin-bottom: 22px;
  border-radius: 18px;
  object-fit: cover;
}

.team-grid h3,
.team-grid p {
  padding-inline: 12px;
}

.therapist-badge {
  display: inline-flex;
  width: max-content;
  margin: -8px 12px 14px;
  border: 1px solid rgba(143, 166, 142, 0.24);
  border-radius: 999px;
  background: rgba(143, 166, 142, 0.09);
  color: var(--green-dark);
  padding: 6px 10px;
  font-size: 0.82rem;
  font-weight: 900;
}

.certificates {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.certificate-copy {
  position: sticky;
  top: 120px;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #47443f;
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 14px;
  height: 2px;
  background: var(--gold);
  content: "";
}

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

.certificate-card {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1.18;
  border: 1px solid rgba(232, 228, 223, 0.95);
  border-radius: 24px;
  background: #fffdfb;
  cursor: zoom-in;
  padding: 12px;
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.certificate-card:hover {
  transform: scale(1.02);
  border-color: rgba(184, 155, 98, 0.34);
  box-shadow: var(--shadow);
}

.certificate-card:focus-visible {
  outline: 3px solid rgba(143, 166, 142, 0.42);
  outline-offset: 4px;
}

.certificate-card img {
  width: 98%;
  height: 98%;
  border-radius: 14px;
  object-fit: contain;
}

.certificate-card:first-child img {
  width: 100%;
  height: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 210px;
  gap: 12px;
}

.gallery-grid button {
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: #ddd;
  cursor: zoom-in;
  padding: 0;
  box-shadow: var(--soft-shadow);
}

.gallery-grid button:nth-child(1),
.gallery-grid button:nth-child(4) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid button:nth-child(2),
.gallery-grid button:nth-child(3),
.gallery-grid button:nth-child(5),
.gallery-grid button:nth-child(6) {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-grid button:nth-child(1) img {
  object-position: 50% 34%;
}

.gallery-grid button:nth-child(2) img {
  object-position: 50% 42%;
}

.gallery-grid button:nth-child(3) img {
  object-position: 50% 34%;
}

.gallery-grid button:nth-child(4) img {
  object-position: 50% 44%;
}

.gallery-grid button:nth-child(5) img {
  object-position: 50% 20%;
}

.gallery-grid button:nth-child(6) img {
  object-position: center top;
}

@media (min-width: 721px) {
  .gallery-grid button:nth-child(5),
  .gallery-grid button:nth-child(6) {
    min-height: 250px;
  }

  .gallery-grid button:nth-child(6) img {
    object-position: 50% 70%;
  }
}

.gallery-grid button:hover img {
  transform: scale(1.03);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.review-grid article {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 390px;
  border: 1px solid rgba(232, 228, 223, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(143, 166, 142, 0.08), transparent 62%),
    #fff;
  padding: 30px;
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.review-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 166, 142, 0.3);
  box-shadow: var(--shadow);
}

.review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.stars {
  color: #c49a45;
  font-size: 1.28rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.source {
  border: 1px solid rgba(184, 155, 98, 0.28);
  border-radius: 999px;
  background: rgba(184, 155, 98, 0.08);
  color: var(--green-dark);
  padding: 6px 10px;
  font-size: 0.76rem;
  font-weight: 900;
}

.review-grid p {
  margin: 0 0 30px;
  color: #4d4a45;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.64;
}

.review-grid footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.review-grid strong {
  color: var(--graphite);
  font-size: 0.98rem;
}

.review-grid time {
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

.review-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.review-action .button {
  min-width: 270px;
  min-height: 58px;
  padding: 17px 28px;
  border-color: rgba(184, 155, 98, 0.3);
  font-size: 1rem;
  box-shadow: 0 16px 38px rgba(34, 34, 34, 0.1);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid rgba(232, 228, 223, 0.95);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(34, 34, 34, 0.04);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--graphite);
  font-weight: 900;
}

details p {
  max-width: 850px;
  margin: -4px 24px 24px;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 60px);
  background:
    linear-gradient(135deg, rgba(143, 166, 142, 0.12), transparent 45%),
    #fff;
}

.contact-actions {
  display: grid;
  min-width: 280px;
  gap: 10px;
}

.business-info {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  color: var(--muted);
  font-style: normal;
}

.business-info strong {
  color: var(--graphite);
}

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

.opening-hours {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  color: var(--muted);
}

.opening-hours strong {
  color: var(--graphite);
}

.map-placeholder {
  display: grid;
  gap: 24px;
  margin-top: 16px;
  border: 1px solid rgba(232, 228, 223, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(143, 166, 142, 0.12), transparent 55%),
    #fffdfb;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--soft-shadow);
}

.map-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.map-info-row div {
  display: grid;
  gap: 6px;
}

.map-placeholder strong {
  font-size: 1.16rem;
}

.map-placeholder span {
  color: var(--muted);
}

.map-hours-label {
  margin-top: 8px;
  color: var(--graphite) !important;
  font-weight: 900;
}

.map-placeholder iframe {
  display: block;
  width: 100%;
  height: 340px;
  overflow: hidden;
  border-radius: 18px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(76px, 10vw, 126px);
  border-radius: 34px;
  background: var(--graphite);
  padding: clamp(34px, 6vw, 68px);
  color: #fff;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: #fff;
}

.final-cta .button {
  min-width: 285px;
  min-height: 66px;
  padding: 20px 34px;
  font-size: 1.08rem;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.final-cta .eyebrow {
  color: #dce6da;
}

.final-cta p,
.final-cta .eyebrow::before {
  color: #dce6da;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 30px;
  padding: 44px 0 92px;
}

.site-footer p {
  max-width: 520px;
  margin-bottom: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.site-footer a {
  color: var(--green-dark);
  font-weight: 800;
}

.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.mobile-booking {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  background: rgba(17, 17, 15, 0.82);
  padding: 22px;
}

.lightbox[aria-hidden="false"] {
  display: grid;
}

.lightbox img {
  max-height: 88vh;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.lightbox button {
  position: fixed;
  right: 22px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  :root {
    --container: min(100vw - 28px, 920px);
  }

  .site-header {
    border-radius: 28px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    padding: 12px;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .header-actions .text-link {
    display: none;
  }

  .hero,
  .why,
  .certificates,
  .location-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 56px;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-image-container {
    height: 680px;
  }

  .hero-note {
    right: 0;
  }

  .hero-proof,
  .trust-band,
  .problem-grid,
  .service-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-heading,
  .final-cta,
  .site-footer {
    align-items: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .final-cta {
    flex-direction: column;
  }

  .split-heading {
    display: grid;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-grid > img {
    height: 567px;
  }

  .why-media img,
  .team-grid img {
    height: 540px;
  }

  .certificate-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100vw - 24px);
    --radius: 20px;
  }

  body {
    padding-bottom: 96px;
  }

  .site-header {
    margin-top: 10px;
    padding: 8px 8px 8px 12px;
  }

  .brand small,
  .header-actions {
    display: none;
  }

  .hero {
    gap: 28px;
    padding: 42px 0 50px;
  }

  h1 {
    font-size: clamp(2.2rem, 10.5vw, 3.15rem);
  }

  h2 {
    font-size: clamp(1.82rem, 8vw, 2.42rem);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof,
  .trust-band,
  .problem-grid,
  .service-grid,
  .review-grid,
  .team-grid,
  .certificate-media {
    grid-template-columns: 1fr;
  }

  .certificates {
    align-items: stretch;
    overflow: visible;
  }

  .certificate-media {
    grid-auto-rows: auto;
    align-items: start;
    overflow: visible;
  }

  .certificate-card {
    aspect-ratio: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .certificate-card img,
  .certificate-card:first-child img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .certificates + .reviews {
    margin-top: 18px;
  }

  .hero-proof div {
    min-height: auto;
  }

  .trust-band {
    gap: 0;
  }

  .hero-image-container {
    height: 560px;
    min-height: 0;
    border-radius: 28px;
  }

  .hero-note {
    right: 14px;
    bottom: 16px;
  }

  .section {
    padding-top: 72px;
  }

  .about-grid > img {
    height: 483px;
  }

  .why-media img,
  .team-grid img {
    height: 460px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }

  .gallery-grid button,
  .gallery-grid button:nth-child(1),
  .gallery-grid button:nth-child(2),
  .gallery-grid button:nth-child(3),
  .gallery-grid button:nth-child(4),
  .gallery-grid button:nth-child(5),
  .gallery-grid button:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4 / 5;
  }

  .gallery-grid button:nth-child(2),
  .gallery-grid button:nth-child(4) {
    aspect-ratio: 4 / 3;
  }

  .gallery-grid button:nth-child(5),
  .gallery-grid button:nth-child(6) {
    aspect-ratio: 4 / 5;
  }

  .location-card,
  .final-cta {
    padding: 26px;
  }

  .contact-actions {
    width: 100%;
    min-width: 0;
  }

  .map-info-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-placeholder iframe {
    height: 280px;
  }

  .site-footer {
    padding-bottom: 104px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .mobile-booking {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    border: 1px solid rgba(232, 228, 223, 0.85);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    padding: 8px;
    box-shadow: 0 16px 48px rgba(34, 34, 34, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-booking a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 900;
  }

  .mobile-booking a:first-child {
    background: var(--graphite);
    color: #fff;
  }

  .mobile-booking a:last-child {
    padding: 0 14px;
    color: var(--green-dark);
  }
}

@media (max-width: 430px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-grid > img {
    height: 441px;
  }

  .hero-image-container,
  .why-media img,
  .team-grid img {
    height: 420px;
  }

  .problem-grid article,
  .service-grid article {
    padding: 20px;
  }

  .final-cta .button {
    min-width: 0;
  }
}

@media (min-width: 769px) {
  .hero-note {
    right: 16px;
    bottom: 24px;
    display: block;
    width: 230px;
    max-width: calc(100% - 32px);
    padding: 16px 18px;
    box-sizing: border-box;
    z-index: 5;
  }

  .hero-note span,
  .hero-note strong {
    display: block;
    white-space: normal;
  }

  .hero-note span {
    margin: 0 0 6px;
  }

  .hero-note strong {
    margin: 0;
    line-height: 1.2;
  }
}
