:root {
  --ink: #193d3a;
  --deep: #113431;
  --mint: #dcefe7;
  --pale: #f3f8f4;
  --coral: #eb785d;
  --cream: #fbfaf5;
  --muted: #6e817b;
  --line: #d7e4dc;
  --serif: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.container {
  max-width: 1180px;
  margin: auto;
  padding-left: 32px;
  padding-right: 32px;
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.nav-wrap {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.04em;
}
.brand > span:last-child span {
  color: var(--coral);
}
.brand-mark {
  display: grid;
  place-items: center;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  height: 33px;
  width: 33px;
  font-size: 16px;
  letter-spacing: -0.1em;
}
.brand-mark span {
  font-size: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 13px;
  font-weight: 600;
}
.main-nav a {
  opacity: 0.88;
  transition: opacity 0.2s;
}
.main-nav a:hover {
  opacity: 1;
}
.nav-button {
  background: #fff;
  color: var(--ink);
  padding: 11px 17px;
  border-radius: 2px;
}
.nav-button span {
  color: var(--coral);
  margin-left: 8px;
}
.nav-button i,
.button > i,
.text-link i,
.service-card a i,
.blog-card > i {
  color: var(--coral);
  font-size: 17px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font: inherit;
}
.menu-toggle i {
  font-size: 18px;
  vertical-align: middle;
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 740px;
  background: var(--deep);
  color: #fff;
  padding-top: 154px;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 80% 33%,
      rgba(65, 126, 107, 0.25),
      transparent 33%
    ),
    linear-gradient(135deg, #113431 0%, #174a42 72%, #245c4e 100%);
}
.hero-shape {
  position: absolute;
  border: 1px solid rgba(220, 239, 231, 0.16);
  border-radius: 50%;
  width: 540px;
  height: 540px;
  right: -170px;
  top: 85px;
}
.hero-shape-two {
  width: 760px;
  height: 760px;
  right: -280px;
  top: -25px;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 23px;
}
.eyebrow span {
  height: 1px;
  width: 28px;
  background: currentColor;
}
.eyebrow.light {
  color: #a8d4c4;
}
.hero h1,
.section-heading h2,
.team-copy h2,
.testimonial-intro h2,
.booking-copy h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.1vw, 70px);
  line-height: 1.03;
  letter-spacing: -0.07em;
  margin: 0 0 25px;
  font-weight: 800;
}
.hero h1 em,
.section-heading h2 em,
.team-copy h2 em,
.testimonial-intro h2 em,
.booking-copy h2 em {
  font-style: normal;
  color: var(--coral);
}
.hero-text {
  color: #c0d8cd;
  max-width: 440px;
  font-size: 17px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 33px 0 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 0;
  cursor: pointer;
  padding: 15px 21px;
  font: 600 13px var(--body);
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(15, 152, 194, 0.22);
}
.button-primary {
  background: var(--coral);
  color: #fff;
}
.button-primary:hover {
  background: #f1866c;
}
.button-quiet:hover {
  color: var(--coral);
  box-shadow: none;
}
.nav-button:hover {
  background: var(--coral);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(149, 192, 14, 0.28);
}
.button-quiet {
  color: #fff;
  padding-left: 0;
}
.button-quiet .phone-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}
.hero-note {
  display: flex;
  gap: 13px;
  align-items: center;
  color: #a8c5bb;
  font-size: 12px;
}
.avatar-stack {
  display: flex;
}
.avatar-stack i {
  width: 23px;
  height: 23px;
  background: #cb8e7f;
  border: 2px solid var(--deep);
  border-radius: 50%;
  margin-right: -7px;
}
.avatar-stack i:nth-child(2) {
  background: #e1c0a5;
}
.avatar-stack i:nth-child(3) {
  background: #7ca898;
}
.hero-visual {
  position: relative;
  height: 540px;
}
.image-frame {
  height: 540px;
  margin-left: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 100px 0 100px 0;
}
.image-frame:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(17, 52, 49, 0.5));
}
.image-frame img {
  height: 100%;
  filter: saturate(0.78);
}
.floating-card {
  position: absolute;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  padding: 17px;
}
.floating-card small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 4px;
}
.recovery-card {
  left: -4px;
  bottom: 64px;
  width: 142px;
}
.recovery-card strong {
  font: 700 15px/1.2 var(--serif);
  display: block;
}
.mini-icon {
  color: var(--coral);
  font-size: 26px;
  display: block;
  margin-bottom: 16px;
}
.rating-card {
  right: -18px;
  top: 75px;
  width: 120px;
  text-align: center;
}
.rating-card strong {
  font: 800 29px var(--serif);
  display: block;
}
.stars {
  color: var(--coral);
  letter-spacing: 2px;
  font-size: 11px;
}
.rating-card small {
  margin-top: 5px;
}
.scroll-cue {
  position: absolute;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: #8fb1a6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue i {
  height: 32px;
  width: 1px;
  background: #8fb1a6;
}
.trust-bar {
  background: #e5f1eb;
  padding: 30px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.trust-grid > div {
  border-right: 1px solid #c8ddd3;
}
.trust-grid > div:last-child {
  border: 0;
}
.trust-grid strong {
  font: 800 28px var(--serif);
  letter-spacing: -0.04em;
}
.trust-grid strong span {
  color: var(--coral);
}
.trust-grid p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.section {
  padding: 120px 0;
}
.section-heading h2 {
  font-size: clamp(40px, 4.4vw, 59px);
}
.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
}
.heading-note {
  max-width: 320px;
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 6px;
}
.condition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.condition-item {
  min-height: 142px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 23px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.25s;
}
.condition-item:hover {
  background: #e6f2ec;
}
.condition-item span {
  font-size: 11px;
  color: var(--coral);
}
.condition-item strong {
  font: 700 20px var(--serif);
  letter-spacing: -0.04em;
}
.condition-item i {
  font-style: normal;
  align-self: end;
  color: var(--coral);
  font-size: 20px;
}
.services-section {
  background: var(--pale);
}
.text-link {
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid var(--coral);
  padding-bottom: 7px;
  display: inline-flex;
  gap: 16px;
  align-items: center;
}
.text-link span {
  color: var(--coral);
  font-size: 18px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.service-card {
  background: #fff;
  min-height: 310px;
  padding: 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-card.featured {
  background: #e0eee7;
}
.card-number {
  font-size: 11px;
  color: var(--coral);
}
.service-symbol {
  color: var(--coral);
  font-size: 33px;
  margin: 24px 0 12px;
}
.service-symbol i {
  font-size: inherit;
}
.service-card h3 {
  font: 700 20px var(--serif);
  letter-spacing: -0.04em;
  margin: 0 0 9px;
}
.service-card p {
  font-size: 13px;
  color: var(--muted);
  max-width: 240px;
  margin: 0;
}
.service-card a {
  font-size: 11px;
  margin-top: auto;
  color: var(--coral);
  font-weight: 700;
}
.service-card a span {
  font-size: 16px;
  margin-left: 8px;
}
.service-card a i {
  margin-left: 8px;
}
.rehab-strip {
  background: #fff;
  padding: 105px 0;
}
.rehab-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.rehab-links a {
  min-height: 180px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.2s;
}
.rehab-links a:hover {
  background: var(--mint);
}
.rehab-links span {
  color: var(--coral);
  font-size: 11px;
}
.rehab-links strong {
  font: 700 16px/1.25 var(--serif);
  letter-spacing: -0.04em;
}
.rehab-links i {
  align-self: flex-end;
  color: var(--coral);
  font-size: 19px;
}
.about-band {
  background: var(--deep);
  color: #fff;
  padding: 120px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-image {
  position: relative;
  padding: 0 25px 25px 0;
}
.about-image:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 75%;
  height: 76%;
  border: 1px solid var(--coral);
  z-index: 0;
}
.about-image img {
  position: relative;
  z-index: 1;
  height: 500px;
  object-position: center;
}
.image-caption {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 38px;
  background: var(--coral);
  color: #fff;
  padding: 14px 18px;
  min-width: 190px;
}
.image-caption strong,
.image-caption span {
  display: block;
}
.image-caption strong {
  font: 700 14px var(--serif);
}
.image-caption span {
  font-size: 11px;
}
.about-copy h2 {
  font: 800 clamp(36px, 4vw, 53px)/1.08 var(--serif);
  letter-spacing: -0.07em;
  max-width: 550px;
  margin: 0 0 23px;
}
.about-copy h2 em {
  font-style: normal;
  color: var(--coral);
}
.about-copy > p:not(.eyebrow) {
  color: #a8c5bb;
  max-width: 490px;
  font-size: 15px;
}
.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 25px;
  color: #d4e7de;
  font-size: 13px;
  margin: 30px 0;
}
.benefit-list span {
  color: var(--coral);
  margin-right: 8px;
  font-size: 18px;
}
.button-light {
  background: #fff;
  color: var(--ink);
}
.team-section {
  background: #f7f6f0;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 95px;
}
.team-copy h2 {
  font-size: clamp(40px, 4.3vw, 58px);
}
.team-copy > p:not(.eyebrow) {
  max-width: 410px;
  color: var(--muted);
  font-size: 15px;
}
.credentials {
  border-left: 2px solid var(--coral);
  padding-left: 17px;
  margin: 30px 0 35px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.credentials strong {
  font: 700 18px var(--serif);
}
.credentials span {
  font-size: 12px;
  color: var(--muted);
}
.team-photo {
  position: relative;
  max-width: 410px;
  justify-self: end;
}
.team-photo img {
  height: 490px;
  filter: saturate(0.75);
}
.team-tag {
  position: absolute;
  left: -30px;
  bottom: 25px;
  background: #fff;
  padding: 13px 18px;
  font-size: 11px;
  color: var(--muted);
  box-shadow: 0 8px 25px #193d3a20;
}
.team-tag strong {
  font: 700 15px var(--serif);
  color: var(--ink);
}
.process-section {
  background: #dcefe7;
  padding: 100px 0;
}
.process-section .section-heading {
  text-align: center;
}
.process-section .eyebrow {
  justify-content: center;
}
.process-section h2 {
  font-size: clamp(38px, 4vw, 54px);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 50px;
}
.process-step {
  padding: 0 28px;
  border-left: 1px solid #b8d5c9;
  min-height: 155px;
}
.process-step:first-child {
  border-left: 0;
}
.process-step span {
  color: var(--coral);
  font-size: 12px;
}
.process-step h3 {
  font: 700 20px var(--serif);
  margin: 22px 0 8px;
  letter-spacing: -0.04em;
}
.process-step p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  max-width: 190px;
}
.testimonials-section {
  background: var(--mint);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.testimonial-intro p:not(.eyebrow) {
  color: var(--muted);
  max-width: 330px;
  font-size: 14px;
}
.testimonial-card {
  background: var(--deep);
  color: #fff;
  padding: 50px;
  min-height: 350px;
  position: relative;
}
.testimonial-card .stars {
  font-size: 14px;
  margin-bottom: 32px;
}
.stars i {
  font-style: normal;
  margin-right: 2px;
}
.testimonial-card blockquote {
  font: 700 25px/1.35 var(--serif);
  letter-spacing: -0.04em;
  margin: 0;
  max-width: 440px;
}
.reviewer {
  position: absolute;
  bottom: 44px;
  left: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  background: var(--coral);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
}
.reviewer strong,
.reviewer small {
  display: block;
}
.reviewer strong {
  font-size: 13px;
}
.reviewer small {
  font-size: 10px;
  color: #9bb9ad;
}
.review-count {
  position: absolute;
  right: 50px;
  bottom: 48px;
  font-size: 12px;
  color: var(--coral);
}
.review-count span {
  color: #7f9d93;
}
.faq-section {
  padding-top: 80px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
summary {
  list-style: none;
  cursor: pointer;
  font: 700 16px var(--serif);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font: 400 22px var(--body);
  color: var(--coral);
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  color: var(--muted);
  font-size: 13px;
  max-width: 480px;
  margin: 12px 0 0;
}
.booking-section {
  background: var(--deep);
  color: #fff;
  padding: 100px 0;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
}
.booking-copy h2 {
  font-size: clamp(40px, 4.2vw, 57px);
}
.booking-copy > p:not(.eyebrow) {
  color: #fff;
  max-width: 390px;
  font-size: 14px;
}
.contact-detail {
  margin-top: 35px;
  border-top: 1px solid #fff;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
}
.contact-detail span {
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.contact-detail a {
  font: 700 20px var(--serif);
  color: #fff;
}
.booking-form {
  background: #f7f6f0;
  color: var(--ink);
  padding: 32px;
}
.booking-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 18px;
}
.booking-form input,
.booking-form select {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cddbd4;
  background: transparent;
  padding: 10px 0 11px;
  font: 14px var(--body);
  color: var(--ink);
  outline: 0;
}
.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--coral);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.booking-form .button {
  margin-top: 5px;
}
.form-message {
  color: var(--coral);
  font-size: 12px;
  margin: 12px 0 0;
}
.site-footer {
  background: #0d2927;
  color: #98b6ab;
  padding: 55px 0 25px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 4fr 1fr;
  gap: 30px;
  align-items: start;
  padding-bottom: 55px;
}
.brand-footer {
  color: #fff;
}
.footer-top > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  font-size: 16px;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links strong {
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-links a:hover,
.footer-bottom a:hover {
  color: #fff;
}
.blog-section {
  background: var(--pale);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-card {
  position: relative;
  background: #fff;
  padding-bottom: 25px;
  transition: transform 0.2s;
}
.blog-card:hover {
  transform: translateY(-4px);
}
.blog-card img {
  height: 220px;
  margin-bottom: 20px;
}
.blog-card > span,
.blog-card h3 {
  margin-left: 22px;
  margin-right: 45px;
}
.blog-card > span {
  color: var(--coral);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.blog-card h3 {
  font: 700 19px/1.3 var(--serif);
  letter-spacing: -0.04em;
  margin-top: 9px;
  margin-bottom: 0;
}
.blog-card > i {
  position: absolute;
  right: 20px;
  bottom: 24px;
}
.footer-bottom {
  border-top: 1px solid #294943;
  padding-top: 20px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}
.footer-bottom a {
  color: #98b6ab;
}
@media (max-width: 800px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-header {
    position: absolute;
  }
  .nav-wrap {
    height: 72px;
  }
  .menu-toggle {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 7px 11px;
    font-size: 12px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    background: var(--deep);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 17px;
  }
  .main-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }
  .nav-button {
    text-align: center;
  }
  .hero {
    padding-top: 120px;
    min-height: auto;
    padding-bottom: 90px;
  }
  .hero-grid,
  .about-grid,
  .team-grid,
  .testimonial-grid,
  .faq-grid,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero h1 {
    font-size: 51px;
  }
  .hero-visual {
    height: 420px;
  }
  .image-frame {
    height: 420px;
    margin: 0 16px;
  }
  .recovery-card {
    left: 0;
    bottom: 30px;
  }
  .rating-card {
    right: 0;
    top: 25px;
  }
  .scroll-cue {
    display: none;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .trust-grid > div:nth-child(2) {
    border: 0;
  }
  .trust-grid > div:nth-child(-n + 2) {
    padding-bottom: 18px;
    border-bottom: 1px solid #c8ddd3;
  }
  .section {
    padding: 75px 0;
  }
  .split-heading {
    display: block;
  }
  .heading-note {
    margin-top: 20px;
  }
  .condition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .condition-item {
    min-height: 125px;
    padding: 15px;
  }
  .condition-item strong {
    font-size: 17px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rehab-links,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card {
    min-height: 285px;
    padding: 18px;
  }
  .service-card h3 {
    font-size: 17px;
  }
  .about-band {
    padding: 75px 0;
  }
  .about-image img {
    height: 390px;
  }
  .team-photo {
    justify-self: stretch;
    max-width: none;
  }
  .team-photo img {
    height: 420px;
  }
  .team-tag {
    left: 10px;
  }
  .process-section {
    padding: 75px 0;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .process-step {
    padding: 0 15px;
    min-height: 165px;
  }
  .process-step:nth-child(3) {
    border-left: 0;
  }
  .testimonial-card {
    padding: 35px 27px;
    min-height: 390px;
  }
  .reviewer {
    left: 27px;
    bottom: 35px;
  }
  .review-count {
    right: 27px;
    bottom: 40px;
  }
  .faq-grid {
    gap: 30px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top > p {
    grid-column: 2;
  }
  .footer-links {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin-bottom: 8px;
  }
  .form-row {
    gap: 15px;
  }
}
@media (max-width: 460px) {
  .hero h1 {
    font-size: 44px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .rehab-links,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 245px;
  }
  .condition-item {
    min-height: 118px;
  }
  .condition-item strong {
    font-size: 15px;
  }
  .benefit-list {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-step,
  .process-step:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #b8d5c9;
    padding: 22px 0;
    min-height: auto;
  }
  .process-step:first-child {
    border-top: 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-top > p {
    grid-column: auto;
  }
  .footer-links {
    grid-column: auto;
  }
}

/* Updated brand, fixed navigation, carousel and appointment modal */
:root {
  --ink: #40535e;
  --deep: #0f98c2;
  --mint: #dcefe7;
  --pale: #f3f8f4;
  --coral: #95c00e;
  --cream: #ffffff;
  --muted: #717a83;
  --line: #d9e5e8;
  --serif: "Poppins", sans-serif;
  --body: "Poppins", sans-serif;
}
body {
  color: var(--ink);
  font-family: "Poppins", sans-serif;
}
.site-header {
  position: fixed;
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 3px 18px rgba(64, 83, 94, 0.08);
}
.brand-mark {
  background: var(--deep);
}
.brand-mark span,
.brand > span:last-child span,
.nav-button span {
  color: var(--coral);
}
.main-nav a {
  color: var(--ink);
}
.nav-button {
  background: var(--deep);
  color: #fff !important;
}
.menu-toggle {
  color: var(--ink);
  border: 1px solid var(--line);
}
.hero {
  min-height: 690px;
  padding: 0;
  background: var(--deep);
}
.hero:before,
.hero-shape,
.scroll-cue {
  display: none;
}
.hero-slider,
.hero-slide {
  min-height: 690px;
}
.hero-slide {
  position: relative;
  display: flex !important;
  align-items: center;
  background-image:
    linear-gradient(
      90deg,
      rgba(9, 49, 63, 0.87) 0%,
      rgba(9, 49, 63, 0.56) 48%,
      rgba(9, 49, 63, 0.18) 100%
    ),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}
.hero-slide-content {
  width: 100%;
  padding-top: 90px;
}
.hero-slide h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: -0.06em;
}
.hero-slide h1 em,
.hero-slide .eyebrow {
  color: var(--coral);
}
.hero-slide .hero-text {
  color: #eaf8fb;
  max-width: 540px;
}
.hero-dots {
  position: absolute;
  z-index: 2;
  bottom: 38px;
  left: 0;
  right: 0;
}
.hero-dots .slick-dots {
  position: static;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.hero-dots .slick-dots li button:before {
  color: #fff;
  opacity: 0.55;
}
.hero-dots .slick-dots li.slick-active button:before {
  color: var(--coral);
  opacity: 1;
}
.hero-review {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 68px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 10px;
  align-items: center;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(5, 38, 50, 0.18);
}
.hero-review-stars {
  grid-column: 1 / -1;
  color: var(--coral);
  font-size: 12px;
  letter-spacing: 2px;
}
.hero-review strong {
  font-size: 18px;
  line-height: 1.2;
}
.hero-review > span:last-child {
  color: var(--muted);
  font-size: 10px;
}
.button-primary {
  background: var(--coral);
  color: #fff;
}
.button-primary:hover {
  background: #a8d51b;
}
.trust-bar,
.process-section {
  background: var(--mint);
}
.trust-grid strong,
.section-heading h2,
.team-copy h2,
.testimonial-intro h2,
.booking-copy h2,
.about-copy h2,
.testimonial-card blockquote,
.service-card h3,
.process-step h3,
.blog-card h3,
.rehab-links strong,
.team-tag strong,
.credentials strong,
.hero-slide h1 {
  font-family: "Poppins", sans-serif;
}
.about-band,
.booking-section,
.testimonial-card {
  background: var(--deep);
}
.review-slider {
  position: relative;
  padding: 0 45px;
}
.review-slider .slick-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--deep);
  z-index: 1;
}
.review-slider .slick-arrow:before {
  display: none;
}
.review-slider .slick-prev {
  left: 0;
}
.review-slider .slick-next {
  right: 0;
}
.review-slider .slick-dots {
  bottom: 8px;
}
.review-slider .slick-dots li button:before {
  color: var(--deep);
}
.review-slider .slick-dots li.slick-active button:before {
  color: var(--coral);
}
.review-slider .testimonial-card {
  margin: 0;
}
.booking-cta-card {
  display: block;
  background: #fff;
  color: var(--ink);
}
.booking-cta-card > i {
  color: var(--coral);
  font-size: 44px;
}
.booking-cta-card h3 {
  font:
    700 24px/1.25 "Poppins",
    sans-serif;
  margin: 18px 0 8px;
}
.booking-cta-card p {
  color: var(--muted);
  font-size: 14px;
}
.modal-form {
  display: none;
}
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(18, 43, 54, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.booking-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.booking-modal-panel {
  position: relative;
  width: min(100%, 620px);
  max-height: 92vh;
  overflow: auto;
  padding: 36px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
}
.booking-modal-panel h2 {
  font:
    700 36px/1.1 "Poppins",
    sans-serif;
  margin: 0 0 10px;
}
.booking-modal-panel h2 em {
  color: var(--coral);
  font-style: normal;
}
.modal-intro {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 20px;
}
.modal-booking-form {
  padding: 0;
  background: transparent;
}
.modal-booking-form .button {
  margin-top: 5px;
}
.modal-open {
  overflow: hidden;
}
.site-footer {
  background: #40535e;
}
.legal-page {
  padding-top: 86px;
}
.legal-content {
  padding: 90px 0 120px;
}
.legal-content h1 {
  font:
    700 clamp(42px, 6vw, 72px)/1.1 "Poppins",
    sans-serif;
  color: var(--ink);
  margin: 0 0 10px;
}
.legal-content h1 em {
  color: var(--coral);
  font-style: normal;
}
.legal-updated {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 55px;
}
.legal-content section {
  max-width: 760px;
  border-top: 1px solid var(--line);
  padding: 25px 0;
}
.legal-content h2 {
  font:
    600 22px "Poppins",
    sans-serif;
  margin: 0 0 8px;
}
.legal-content p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.legal-content a {
  color: var(--deep);
  font-weight: 600;
}
@media (max-width: 800px) {
  .hero,
  .hero-slider,
  .hero-slide {
    min-height: 650px;
  }
  .hero-slide-content {
    padding-top: 90px;
  }
  .hero-slide h1 {
    font-size: 45px;
  }
  .review-slider {
    padding: 0 28px;
  }
  .booking-grid {
    gap: 32px;
  }
  .booking-modal-panel {
    padding: 28px 22px;
  }
  .main-nav.open {
    background: #fff;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-top > p,
  .footer-links {
    grid-column: auto;
  }
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .hero-review {
    right: 20px;
    bottom: 55px;
  }
}
@media (max-width: 460px) {
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .footer-links div:last-child {
    grid-column: 1 / -1;
  }
  .hero-review {
    right: 20px;
    left: 20px;
    bottom: 38px;
    justify-content: center;
  }
}
