/* ================================================================
   00. SELF-HOSTED FONTS
   ================================================================ */

/* Prata — serif, used for all headings */
@font-face {
  font-family: 'Prata';
  src: url("../fonts/prata-v22-latin-regular.362177e0cdab.woff2") format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

/* Manrope — sans-serif, used for body text */
@font-face {
  font-family: 'Manrope';
  src: url("../fonts/manrope-v20-latin-regular.1589a53d0b0e.woff2") format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

/* Manrope 500 / 600 / 700 */
@font-face {
  font-family: 'Manrope';
  src: url("../fonts/manrope-v20-latin-500.f95b8f975304.woff2") format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Manrope';
  src: url("../fonts/manrope-v20-latin-600.58d382c3e448.woff2") format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'Manrope';
  src: url("../fonts/manrope-v20-latin-700.ed9e261b92db.woff2") format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

/* ================================================================
   01. DESIGN TOKENS & CSS VARIABLES
   ================================================================ */
:root {
  --ink: #18352b;
  --deep: #0f2b22;
  --forest: #245743;
  --sage: #dfe8dc;
  --mist: #dce5d8;
  --sand: #e7ddcd;
  --cream: #fbfaf5;
  --white: #ffffff;
  --line: rgba(24, 53, 43, 0.16);
  --serif: 'Prata', serif;
  --sans: 'Manrope', sans-serif;
  --radius: 3px;
}

/* ================================================================
   02. BASE & RESET
   ================================================================ */
* {
  box-sizing: border-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

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

a:hover,
a:focus,
a:active {
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
}

h1 {
  font-size: clamp(50px, 7vw, 96px);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(36px, 4.2vw, 62px);
  letter-spacing: -0.025em;
}

h3 {
  line-height: 1.25;
}

/* Word wrapping safety for content */
.detail-header h1,
.detail-header>p,
.detail-prose,
.detail-prose p,
.article-card h2,
.article-card h2 a,
.article-card p,
.news-card h2,
.news-card h3,
.news-card p {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

/* ================================================================
   03. LAYOUT & COMMON COMPONENTS
   ================================================================ */
.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.compact-section {
  padding: 48px 0;
}

.soft-section {
  background: var(--mist);
}

.eyebrow {
  margin: 0 0 26px;
  color: #6a776f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.7);
}

.section-heading {
  margin-bottom: 68px;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 9vw;
  align-items: end;
}

.split-heading > p {
  max-width: 470px;
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: #627168;
}

.centered-action {
  text-align: center;
  margin-top: 48px;
}

/* Buttons */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 1px solid transparent;
  background: var(--forest);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(15, 43, 34, 0);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.button:after {
  position: absolute;
  right: 24px;
  bottom: 10px;
  left: 24px;
  height: 1px;
  background: currentColor;
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  will-change: transform;
}

.button:hover:after,
.button:focus-visible:after {
  transform: scaleX(1);
}

.button:hover,
.button:focus-visible {
  background: var(--deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 43, 34, 0.16);
}

.button:active {
  transform: translateY(1px) scale(0.985);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 11px;
}

.button-light {
  background: #fff;
  color: var(--deep);
}

.button-light:hover {
  background: var(--sage);
  color: var(--deep);
}

.button-dark {
  background: var(--deep);
}

.button-outline {
  border-color: var(--forest);
  background: transparent;
  color: var(--forest);
}

/* Text Links */
.text-link {
  position: relative;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 0;
}

.text-link span {
  font-size: 18px;
}

.text-link:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  will-change: transform;
}

.text-link:hover:after,
.text-link:focus-visible:after {
  transform: scaleX(1);
}

.light-link {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

/* ================================================================
   04. HEADER & NAVIGATION
   ================================================================ */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: 0.2s;
}

.site-header.scrolled {
  border-color: var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 82px;
  gap: 34px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand img {
  width: 56px;
  height: 45px;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand b {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.brand small {
  margin-top: 4px;
  color: #758179;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.main-nav a:hover {
  color: #6f886f;
}

.main-nav a:after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover:after,
.main-nav a:focus-visible:after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.preview-banner {
  position: sticky;
  z-index: 45;
  top: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 24px;
  background: #e7ddcd;
  color: #18352b;
  font-size: 13px;
}

.preview-banner a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ================================================================
   05. HOMEPAGE SECTIONS
   ================================================================ */

/* Hero */
.hero {
  position: relative;
  min-height: max(616px, calc(100vh - 146px));
  overflow: hidden;
  color: #fff;
}

.hero-picture,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(7, 30, 22, 0.76), rgba(7, 30, 22, 0.12) 70%),
    linear-gradient(0deg, rgba(7, 30, 22, 0.55), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 7vh;
  padding-bottom: 150px;
}

.hero-content h1 {
  margin-bottom: 25px;
  max-width: 800px;
}

.hero-lead {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.hero-facts {
  position: absolute;
  z-index: 2;
  right: auto;
  bottom: 0;
  left: 50%;
  display: grid;
  width: min(1180px, calc(100% - 48px));
  grid-template-columns: repeat(3, 180px);
  justify-content: end;
  margin: 0;
  transform: translateX(-50%);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-facts div {
  display: flex;
  flex-direction: column;
  width: auto;
  padding: 23px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-facts div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-facts strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.hero-facts span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Intro & Triptych */
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 9vw;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-copy {
  padding-top: 46px;
}

.intro-copy p {
  margin-bottom: 32px;
  color: #53645b;
  font-size: 18px;
}

.visual-triptych {
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.62fr;
  align-items: end;
  gap: 24px;
  margin-top: 80px;
}

.visual-triptych>img:first-child {
  height: 530px;
  width: 100%;
  object-fit: cover;
}

.visual-triptych>img:nth-child(2) {
  height: 475px;
  width: 100%;
  object-fit: cover;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 390px;
  min-height: 390px;
  padding: 36px;
  background: var(--sand);
}

.quote-card span {
  font-family: var(--serif);
  font-size: 68px;
  line-height: 0.8;
}

.quote-card p {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.4;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 330px;
  padding: 40px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.service-card:hover {
  background: #fff;
  transform: translateY(-5px);
}

.service-card>span {
  color: #849087;
  font-size: 11px;
}

.service-card h3 {
  margin-top: 80px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.service-card p {
  color: #66736b;
  font-size: 14px;
}

/* Room Cards Grid */
.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-grid-wide {
  row-gap: 60px;
}

.room-card {
  min-width: 0;
}

.room-image {
  display: block;
  overflow: hidden;
  background: var(--sage);
  aspect-ratio: 1.2;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.room-card:hover .room-image img {
  transform: scale(1.035);
}

.room-image-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sage), var(--sand));
}

.room-image-placeholder span {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--forest);
}

.room-body {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 0;
}

.room-body>div {
  min-width: 0;
}

.room-body span {
  color: #7b877e;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-body h3 {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.room-body p {
  color: #69756e;
  font-size: 14px;
}

.room-body>a {
  font-size: 24px;
}

/* Programs Section */
.program-section {
  background: var(--deep);
  color: #fff;
}

.program-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 9vw;
}

.program-visual {
  position: relative;
}

.program-visual img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  right: -45px;
  bottom: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 180px;
  padding: 26px;
  background: var(--sand);
  color: var(--deep);
}

.floating-note strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.floating-note span {
  font-size: 10px;
  text-transform: uppercase;
}

.program-list {
  margin: 48px 0;
}

.program-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.program-list article>span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.program-list h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.program-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

/* News Cards Grid */
.home-news-section {
  padding-bottom: 48px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.news-grid-full {
  row-gap: 70px;
}

.news-card {
  min-width: 0;
}

.news-image {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1.25;
  margin-bottom: 23px;
  overflow: hidden;
  background: var(--sage);
}

.news-grid .news-image {
  height: clamp(220px, 22vw, 310px);
  aspect-ratio: auto;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s;
}

.news-card:hover img {
  transform: scale(1.035);
}

.news-image-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sage), var(--sand));
}

.news-image-placeholder span {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--forest);
}

.news-card time {
  color: #7b877e;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-card h3,
.news-card h2 {
  margin: 10px 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.news-card p {
  color: #68756d;
  font-size: 14px;
}

/* Video Section */
.video-section {
  background: var(--mist);
}

.location-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--forest);
  background: #fff;
  box-shadow: 0 6px 22px rgba(24, 53, 43, 0.09);
}

.location-card>span {
  color: #76837b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-card>strong {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.video-frame {
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 24px 70px rgba(15, 43, 34, 0.13);
  aspect-ratio: 16/9;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.room-video-section {
  background: var(--mist);
}

/* Reviews Section */
.reviews-section {
  background: var(--mist);
  padding-top: 40px;
}

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

.review-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 36px 34px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(24, 53, 43, 0.08);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 13px;
}

.review-head>div {
  display: flex;
  flex-direction: column;
}

.review-head strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.review-head>div span {
  color: #7a867f;
  font-size: 11px;
}

.google-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 45%, #fbbc05 0 67%, #ea4335 0 100%);
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 17px;
}

.review-rating span {
  color: #f6b800;
  letter-spacing: 2px;
}

.review-rating b {
  color: #627168;
  font-size: 11px;
}

.review-card p {
  color: #53645b;
  font-size: 14px;
}

.review-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

/* Booking Section & Form */
.booking-section {
  background: var(--forest);
  color: #fff;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 9vw;
}

.booking-copy {
  position: static;
}

.booking-copy h2 {
  margin-bottom: 24px;
}

.booking-copy>p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.booking-phones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-phones a {
  font-family: var(--serif);
  font-size: 24px;
  color: #fff;
  transition: opacity 0.2s ease;
}

.booking-phones a:hover {
  opacity: 0.72;
}

.booking-form {
  padding: 52px 56px;
  background: #fff;
  color: var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 18px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grid label>span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-grid label>span b {
  color: #a53d35;
}

.form-control {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid #bcc7bf;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
}

.form-control:focus {
  border-color: var(--forest);
}

.form-control[aria-invalid="true"] {
  border-color: #a53d35;
}

textarea.form-control {
  padding-top: 11px;
  resize: vertical;
}

.full-field {
  grid-column: 1 / -1;
}

.checkbox-field {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  flex-wrap: wrap;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--forest);
}

.checkbox-field .field-error {
  width: 100%;
}

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

.form-note {
  margin: 12px 0 0;
  text-align: center;
  color: #89928c;
  font-size: 11px;
}

.field-error {
  color: #a53d35;
}

.client-field-error[hidden] {
  display: none;
}

.form-error-banner {
  margin-bottom: 24px;
  padding: 14px 18px;
  border-left: 3px solid #a53d35;
  background: #fff1ef;
  color: #7e2923;
  font-size: 14px;
}

.messages {
  padding-top: 18px;
}

.message {
  padding: 14px 18px;
  background: #f7d9d4;
}

/* ================================================================
   06. DOCTORS CAROUSEL
   ================================================================ */
.doctors-section {
  background: var(--mist);
}

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

.doctors-heading .eyebrow {
  margin-bottom: 16px;
}

.doctors-heading h2 {
  margin: 0;
}

.doctors-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.doctors-carousel-controls {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.doctors-carousel-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.doctors-carousel-btn:hover {
  background: var(--forest);
  color: #fff;
  border-color: var(--forest);
}

.doctors-carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.doctors-carousel-btn svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.doctors-carousel {
  overflow: hidden;
  padding: 0 0 8px;
  outline: none;
}

.doctors-carousel:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 8px;
}

.doctors-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.doctor-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 53, 43, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(24, 53, 43, 0.1);
}

.doctor-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-photo img {
  transform: scale(1.04);
}

.doctor-photo-placeholder {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--forest);
  opacity: 0.5;
}

.doctor-info {
  display: flex;
  flex-direction: column;
  min-height: 150px;
  padding: 20px 20px 14px;
  background: rgba(237, 241, 233, 0.8);
}

.doctor-info h3 {
  margin: 0 0 7px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.28;
}

.doctor-info>p {
  margin: 0;
  color: #647269;
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.doctor-info .doctor-specialty {
  color: #3a4a41;
  font-weight: 700;
}

.doctor-info .doctor-specialties {
  margin-top: 10px;
  color: #748077;
  font-size: 11px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}

.doctor-experience {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 16px 20px 12px;
  background: rgba(255, 255, 255, 0.72);
}

.doctor-experience span,
.doctor-experience p {
  display: grid;
  place-items: center;
  min-height: 28px;
  margin: 0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.doctor-experience span {
  min-width: 32px;
  padding: 0 9px;
  background: var(--forest);
  color: #fff;
}

.doctor-experience p {
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--forest);
  white-space: nowrap;
}

/* ================================================================
   07. PRICES ACCORDION
   ================================================================ */
.prices-accordion {
  width: 100%;
}

.price-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--forest);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.price-category-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Level 1: Main Category */
.price-main {
  border-bottom: 1px solid var(--ink);
}

.price-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 28px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--ink);
}

.price-main-header:hover .price-main-title {
  color: var(--forest);
}

.price-main-title {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.25;
  transition: color 0.25s ease;
}

.price-main-header[aria-expanded="true"] .price-category-icon {
  transform: rotate(180deg);
}

.price-main-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.price-main-header[aria-expanded="true"]+.price-main-content {
  grid-template-rows: 1fr;
}

.price-main-inner {
  overflow: hidden;
}

.price-main-header[aria-expanded="true"]+.price-main-content .price-main-inner {
  padding-bottom: 24px;
}

/* Level 2: Subcategory */
.price-sub {
  border-top: 1px solid var(--line);
}

.price-sub:first-child {
  border-top: 0;
}

.price-sub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 18px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--ink);
}

.price-sub-header:hover .price-sub-title {
  color: var(--forest);
}

.price-sub-title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.25s ease;
}

.price-sub-icon {
  width: 22px;
  height: 22px;
}

.price-sub-icon svg {
  width: 18px;
  height: 18px;
}

.price-sub-header[aria-expanded="true"] .price-sub-icon {
  transform: rotate(180deg);
}

.price-sub-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.price-sub-header[aria-expanded="true"]+.price-sub-content {
  grid-template-rows: 1fr;
}

.price-sub-inner {
  overflow: hidden;
}

/* Price rows (leaf level) */
.price-list {
  list-style: none;
  margin: 0;
  padding: 0 0 18px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 11px 0;
}

.price-name {
  color: var(--ink);
  font-size: 15px;
}

.price-dots {
  flex: 1;
  min-width: 16px;
  border-bottom: 1px dotted rgba(24, 53, 43, 0.3);
  transform: translateY(-4px);
}

.price-value {
  color: var(--forest);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

/* Footer note under last category */
.prices-footer-text {
  max-width: 100%;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: #5e6b62;
  font-size: 14px;
  line-height: 1.7;
}

.prices-empty {
  color: #8a958d;
  font-size: 15px;
}

/* Client-side search hiding */
.price-sub.is-hidden,
.price-main.is-hidden,
.price-row.is-hidden {
  display: none;
}

/* ================================================================
   08. PAGE SPECIFIC & COMPONENT STYLES
   ================================================================ */

/* Page Hero */
.page-hero {
  padding: 7vh 0 95px;
  background: var(--sage);
}

.page-hero h1 {
  max-width: 1000px;
  margin-bottom: 25px;
  font-size: clamp(50px, 7vw, 88px);
}

.page-hero>div>p:last-child {
  max-width: 650px;
  color: #596a60;
  font-size: 18px;
}

/* Prose */
.prose {
  color: #4e6156;
  font-size: 17px;
}

.prose p {
  margin-bottom: 25px;
}

/* About Page Prose & Medallions */
.about-prose {
  max-width: 860px;
  margin: 0 auto;
  color: #4e6156;
  font-size: 17px;
  line-height: 1.78;
}

.about-prose p {
  margin-bottom: 26px;
}

.about-prose h2 {
  margin: 56px 0 22px;
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.history-medallion {
  float: right;
  margin: 6px 0 28px 36px;
  text-align: center;
}

.history-medallion--left {
  float: left;
  margin: 6px 36px 28px 0;
}

.history-medallion img {
  display: block;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid var(--sage);
  box-shadow: 0 10px 34px rgba(24, 53, 43, 0.16);
  filter: sepia(0.18) contrast(1.06);
}

.history-medallion figcaption {
  margin-top: 8px;
  color: #7d8a82;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Amenities Grid */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-grid div {
  padding: 28px;
  border-left: 1px solid var(--line);
}

.amenity-grid span {
  font-family: var(--serif);
  font-size: 22px;
}

.amenity-grid p {
  margin: 4px 0;
  color: #69776f;
  font-size: 13px;
}

/* Room Detail Page */
.room-detail-hero {
  padding: 7vh 0 85px;
}

.room-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 8vw;
}

.room-detail-grid h1 {
  font-size: clamp(46px, 6vw, 78px);
}

.room-detail-grid>div:first-child>p:not(.eyebrow) {
  color: #5d6c63;
  font-size: 17px;
}

.room-detail-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.room-meta {
  display: flex;
  gap: 12px;
  margin: 30px 0;
}

.room-meta span {
  padding: 8px 12px;
  background: var(--sage);
  font-size: 11px;
  text-transform: uppercase;
}

.detail-description {
  font-size: 18px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 14px 0 14px 22px;
  border-bottom: 1px solid var(--line);
}

.feature-list li:before {
  position: absolute;
  left: 0;
  content: '+';
  color: #809184;
}

.article-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 9vw;
}

/* Program Cards & Treatment */
.treatment-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 9vw;
}

.program-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(24, 53, 43, 0.08);
}

.program-card>div {
  display: flex;
  justify-content: space-between;
  color: #738077;
  font-size: 10px;
  text-transform: uppercase;
}

.program-card h3 {
  margin: 55px 0 16px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.program-card p {
  color: #68766e;
  font-size: 14px;
}

.program-card details {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.program-card summary {
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.procedure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 9vw;
}

.procedure-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

/* General Detail Pages (News/Article) */
.detail-page {
  padding: 7vh 0 100px;
}

.detail-header {
  max-width: 900px;
  text-align: center;
}

.back-link {
  display: block;
  margin-bottom: 55px;
  color: #718078;
  font-size: 12px;
}

.detail-header time,
.category-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #75827a;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-header h1 {
  font-size: clamp(46px, 6vw, 76px);
}

.detail-header>p {
  max-width: 720px;
  margin: 0 auto;
  color: #627168;
  font-size: 18px;
}

.detail-cover {
  margin-top: 72px;
  max-width: 1000px;
}

.detail-cover img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 900px;
  margin: 0 auto;
  object-fit: contain;
}

.detail-prose {
  max-width: 760px;
  margin-top: 72px;
}

.detail-prose h2 {
  font-size: 35px;
}

.article-detail .detail-prose {
  margin-top: 72px;
}

/* Call to Action Band */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 60px;
  background: var(--deep);
  color: #fff;
}

.cta-band h2 {
  max-width: 650px;
  margin: 0;
  font-size: 42px;
}

/* Note Band */
.note-band {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  padding: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.note-band p {
  margin: 0;
  color: #607067;
}

/* Search Form */
.search-form {
  display: flex;
  max-width: 650px;
  margin-bottom: 55px;
  border-bottom: 1px solid var(--ink);
}

.search-form input {
  flex: 1;
  padding: 16px 4px;
  border: 0;
  background: transparent;
  outline: 0;
}

.search-form button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

/* Article Cards Grid */
.article-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.article-card {
  min-width: 0;
  padding: 44px;
  border: 1px solid var(--line);
  background: #fff;
}

.article-card>span {
  color: #76837b;
  font-size: 10px;
  text-transform: uppercase;
}

.article-card h2 {
  margin: 55px 0 18px;
  font-size: 31px;
}

.article-card p {
  color: #65736b;
}

.article-card-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(220px, 22vw, 310px);
  margin: 14px 0 24px;
  overflow: hidden;
  background: var(--sage);
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.article-card:hover .article-card-image img {
  transform: scale(1.035);
}

/* Contacts Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8vw;
}

.contact-card {
  padding: 56px;
  background: var(--sage);
  box-shadow: 0 20px 50px rgba(24, 53, 43, 0.12);
  border: 1px solid var(--line);
}

.contact-card>span,
.contact-list span {
  font-size: 10px;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 40px 0;
  font-size: 40px;
}

.contact-list>div {
  display: flex;
  flex-direction: column;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  margin-bottom: 8px;
  color: #7d8881;
}

.contact-list a {
  font-family: var(--serif);
  font-size: 25px;
}

.contacts-page .compact-section {
  padding-top: 0 !important;
}

/* Booking Success Page */
.success-page {
  display: grid;
  place-items: center;
  min-height: 72vh;
  padding: 7vh 24px 80px;
}

.success-card {
  max-width: 680px;
  text-align: center;
}

.success-card>span {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--sage);
  font-size: 28px;
}

.success-card h1 {
  font-size: 65px;
}

.success-card>p:not(.eyebrow) {
  color: #647269;
  font-size: 18px;
}

.success-card .button {
  margin-top: 25px;
}

/* Post Carousel & Video Embeds */
.post-carousel {
  margin-top: 56px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--deep);
  color: #fff;
  outline: none;
}

.post-carousel:focus-visible {
  box-shadow: 0 0 0 3px rgba(64, 112, 87, 0.28);
}

.post-carousel-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.post-carousel-head>div:first-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.post-carousel-head span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.post-carousel-head strong {
  overflow: hidden;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-carousel-head>.post-carousel-counter {
  display: block;
  min-width: auto;
}

.post-carousel-counter {
  flex: none;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.post-carousel-counter b {
  color: #fff;
  font-size: 19px;
}

.post-carousel-window {
  position: relative;
  overflow: hidden;
  background: #071b15;
  touch-action: pan-y;
}

.post-carousel-track {
  display: flex;
  transition: transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.post-carousel-slide {
  position: relative;
  min-width: 100%;
  margin: 0;
}

.post-carousel-slide img {
  width: 100%;
  height: clamp(360px, 62vw, 720px);
  object-fit: contain;
  background: #071b15;
}

.post-carousel-slide figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px 84px;
  background: rgba(58, 61, 60, 0.72);
  color: #fff;
  font-size: 13px;
  backdrop-filter: blur(5px);
}

.post-carousel-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(7, 27, 21, 0.65);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: 0.2s;
}

.post-carousel-button svg {
  display: block;
  width: 22px;
  height: 22px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.post-carousel-button:hover,
.post-carousel-button:focus-visible {
  background: #fff;
  color: var(--deep);
}

.post-carousel-prev {
  left: 22px;
}

.post-carousel-next {
  right: 22px;
}

.post-carousel-button[hidden] {
  display: none;
}

.post-video {
  margin-top: 56px;
}

.post-video-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

.post-video-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
}

/* AJAX Load More Button */
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 54px;
}

.load-more-wrap button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.load-more-item {
  animation: content-in 0.45s ease both;
}

/* ================================================================
   09. SOCIAL LINKS & FOOTER
   ================================================================ */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.social-link:hover {
  opacity: 0.72;
}

.social-link img {
  display: block;
  flex-shrink: 0;
}

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  justify-content: flex-start;
}

.social-link-footer {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.social-link-footer img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 0;
  opacity: 1;
  filter: brightness(0) invert(1);
  transition: transform 0.25s ease;
}

.social-link-footer svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link-footer svg .social-icon-fill {
  fill: #fff;
  stroke: none;
}

.social-link-footer:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.social-link-footer:hover img,
.social-link-footer:hover svg {
  transform: scale(1.08);
}

/* Contacts page social links */
.contact-social {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.contact-social>span {
  font-size: 10px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
  color: #7d8881;
}

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

.contact-list .social-link-large {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  gap: 10px;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.contact-list .social-link-large span {
  color: inherit;
  margin-bottom: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1;
}

.contact-list .social-link-large img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 4px;
  opacity: 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-list .social-link-large:hover {
  background: var(--sage);
  border-color: var(--forest);
}

.contact-list .social-link-large:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Disable sliding underlines for social links */
.social-link:after,
.social-link-footer:after,
.social-link-large:after {
  display: none !important;
}

/* Site Footer */
.site-footer {
  padding: 75px 0 22px;
  background: #0c241c;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 9vw;
}

.brand-footer {
  margin-bottom: 24px;
}

.brand-footer img {
  filter: brightness(0) invert(1);
}

.footer-address {
  max-width: 217px;
  width: fit-content;
}

.footer-grid p {
  max-width: 400px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.footer-grid h3 {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  text-transform: uppercase;
}

.footer-grid>div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a,
.footer-grid span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-grid a:not(.brand) {
  position: relative;
  transition: color 0.25s ease;
}

.footer-grid a:not(.brand):after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.footer-grid a:not(.brand):hover:after,
.footer-grid a:not(.brand):focus-visible:after {
  transform: scaleX(1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.admin-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ================================================================
   10. RESPONSIVE MEDIA QUERIES
   ================================================================ */

/* Tablet Breakpoint (1100px) */
@media (max-width: 1100px) {
  .section {
    padding: 64px 0;
  }

  .compact-section {
    padding: 36px 0;
  }

  .section-heading {
    margin-bottom: 52px;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 35px 24px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
    animation: menu-in 0.25s ease both;
  }

  .main-nav a {
    font-family: var(--serif);
    font-size: 27px;
  }

  .nav-toggle {
    position: relative;
    display: block;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    position: absolute;
    top: 14px;
    left: 10px;
    display: block;
    width: 22px;
    height: 1px;
    margin: 0 !important;
    background: var(--ink);
    transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
  }

  .nav-toggle span:nth-child(2) {
    top: 20px;
  }

  .nav-toggle span:nth-child(3) {
    top: 26px;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    top: 20px;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 20px;
    transform: rotate(-45deg);
  }

  .intro-grid,
  .split-heading,
  .article-layout,
  .treatment-intro,
  .program-layout,
  .booking-layout,
  .room-detail-grid,
  .procedure-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .service-card {
    padding: 34px 28px;
  }

  .room-grid,
  .news-grid,
  .program-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .room-grid-wide {
    row-gap: 52px;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .review-card {
    min-height: 0;
    padding: 32px;
  }

  .booking-copy {
    position: static;
  }

  .booking-form {
    padding: 44px 40px;
  }

  .booking-section {
    background-attachment: scroll;
  }

  .doctor-card {
    flex: 0 0 calc(33.333% - 16px);
  }

  .program-visual img,
  .room-detail-image img {
    height: 520px;
  }

  .floating-note {
    right: 20px;
  }

  .visual-triptych {
    margin-top: 60px;
  }

  .program-list {
    margin: 40px 0;
  }

  .contact-card {
    padding: 44px;
  }

  .cta-band {
    padding: 52px;
  }

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

  .footer-grid>div:first-child {
    grid-column: 1 / -1;
  }
}

/* Medium Sub-breakpoint for Doctors Carousel (768px) */
@media (max-width: 768px) {
  .doctor-card {
    flex: 0 0 calc(50% - 12px);
  }

  .doctors-carousel-track {
    gap: 18px;
  }
}

/* Mobile Breakpoint (640px) */
@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 44px 0;
  }

  .compact-section {
    padding: 26px 0;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .intro-grid,
  .split-heading,
  .article-layout,
  .treatment-intro,
  .program-layout,
  .booking-layout,
  .room-detail-grid,
  .procedure-grid,
  .contact-grid {
    gap: 32px;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand img {
    width: 46px;
  }

  .main-nav {
    top: 70px;
  }

  .preview-banner {
    top: 70px;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 10px 15px;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    padding-top: 46px;
    padding-bottom: 22px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
  }

  .hero-actions .text-link {
    margin-left: 3px;
  }
  .hero-facts {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(100% - 30px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    margin: 0 auto;
    transform: none;
  }

  .hero-facts div {
    padding: 14px 8px;
    border-left: 0;
  }

  .hero-facts div+div {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
  }

  .hero-facts div:last-child {
    border-right: 0;
  }

  .hero-facts strong {
    font-size: 23px;
  }

  .hero-facts span {
    font-size: 7px;
    line-height: 1.4;
  }

  .intro-copy {
    padding-top: 0;
  }

  .intro-grid {
    gap: 24px !important;
  }

  .visual-triptych {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .visual-triptych>img:first-child {
    grid-column: 1 / -1;
    height: 350px;
  }

  .visual-triptych>img:nth-child(2),
  .quote-card {
    height: 260px;
    min-height: 260px;
  }

  .quote-card {
    padding: 22px;
  }

  .quote-card p {
    font-size: 19px;
    margin-bottom: 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
    border-top: 0;
  }

  .service-card {
    min-height: 0;
    padding: 26px 20px;
  }

  .service-card h3 {
    margin-top: 26px;
  }

  .room-grid,
  .news-grid,
  .program-card-grid,
  .article-card-grid,
  .amenity-grid,
  .review-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .room-grid-wide,
  .news-grid-full {
    row-gap: 36px;
  }

  .article-card-grid {
    gap: 18px;
  }

  .room-body {
    padding: 18px 0 8px;
  }

  .program-layout {
    gap: 36px;
  }

  .program-visual img,
  .room-detail-image img,
  .procedure-image img {
    height: auto;
    max-height: 440px;
    aspect-ratio: 4/3;
    object-fit: cover;
  }

  .floating-note {
    right: 12px;
    bottom: 12px;
    width: 150px;
    padding: 18px;
  }

  .program-list {
    margin: 28px 0;
  }

  .program-list article {
    padding: 17px 0;
  }

  .program-layout > div:nth-child(2) > a {
    display: flex;
    width: fit-content;
    margin: 0 auto;
  }

  .video-section .split-heading {
    gap: 22px;
  }

  .location-card {
    padding: 22px 18px;
  }

  .video-frame {
    width: 100%;
    aspect-ratio: 16/10;
  }

  .review-card {
    padding: 26px 20px;
  }

  .review-card p {
    font-size: 13px;
  }

  .booking-layout {
    gap: 28px;
  }

  .booking-form {
    padding: 26px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .full-field {
    grid-column: auto;
  }

  .booking-phones {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .booking-phones a {
    font-size: 20px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 52px 0 46px;
  }

  .page-hero h1 {
    font-size: 43px;
  }

  .about-prose {
    font-size: 15px;
  }

  .about-prose h2 {
    margin: 38px 0 18px;
  }

  .history-medallion {
    float: right !important;
    display: block !important;
    margin: 4px 0 12px 16px !important;
    text-align: center;
  }

  .history-medallion--left {
    float: left !important;
    display: block !important;
    margin: 4px 16px 12px 0 !important;
    text-align: center;
  }

  .history-medallion img {
    width: 120px !important;
    height: 120px !important;
    border-width: 3px !important;
  }

  .amenity-grid div {
    padding: 20px 16px;
  }

  .room-detail-hero,
  .detail-page {
    padding: 50px 0 52px;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .contact-card h2 {
    font-size: 31px;
  }

  .detail-header {
    text-align: left;
  }

  .detail-header h1 {
    font-size: 44px;
  }

  .detail-cover {
    width: 100%;
    margin-top: 30px;
    padding: 0;
  }

  .detail-cover img {
    max-height: none;
  }

  .detail-prose,
  .article-detail .detail-prose {
    margin-top: 32px;
  }

  .back-link {
    margin-bottom: 26px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px 20px;
  }

  .cta-band h2 {
    font-size: 32px;
  }

  .note-band {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .article-card {
    padding: 28px 22px;
  }

  .article-card h2 {
    margin: 32px 0 16px;
    font-size: 27px;
  }

  .article-card .article-card-image {
    height: auto;
    margin: 12px 0 22px;
    aspect-ratio: 16/10;
  }

  .news-grid .news-image {
    height: auto;
    aspect-ratio: 16/10;
  }

  .post-carousel {
    margin-top: 36px;
  }

  .post-carousel-head {
    padding: 14px 18px;
  }

  .post-carousel-head strong {
    font-size: 18px;
  }

  .post-carousel-slide img {
    height: min(72vw, 440px);
  }

  .post-carousel-button {
    width: 42px;
    height: 42px;
  }

  .post-carousel-button svg {
    width: 20px;
    height: 20px;
  }

  .post-carousel-prev {
    left: 12px;
  }

  .post-carousel-next {
    right: 12px;
  }

  .post-carousel-slide figcaption {
    padding: 14px 64px;
  }

  .post-video {
    margin-top: 36px;
  }

  .post-video-heading {
    margin-bottom: 18px;
  }

  .price-main-header {
    padding: 22px 0;
  }

  .price-main-title {
    font-size: 21px;
  }

  .price-sub-title {
    font-size: 16px;
  }

  .price-name,
  .price-value {
    font-size: 14px;
  }

  .success-page {
    padding: 50px 24px 60px;
  }

  .success-card h1 {
    font-size: 45px;
  }

  .site-footer {
    padding: 52px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid>div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
  }

  .centered-action {
    margin-top: 32px;
  }

  .load-more-wrap {
    margin-top: 32px;
  }

  .section.home-news-section {
    padding-bottom: 32px !important;
  }
}

/* Small Sub-breakpoint for Doctors Carousel (480px) */
@media (max-width: 480px) {
  .doctors-heading {
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 26px;
  }

  .doctors-carousel-btn {
    width: 40px;
    height: 40px;
  }

  .doctor-card {
    flex: 0 0 100%;
  }

  .doctors-carousel-track {
    gap: 14px;
  }

  .doctors-carousel {
    padding-bottom: 8px;
  }
}

/* ================================================================
   11. ANIMATIONS & ACCESSIBILITY
   ================================================================ */
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes content-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ================================================================
   IMAGE RENDERING & SCROLLING OPTIMIZATIONS
   ================================================================ */
.room-card,
.news-card,
.article-card,
.doctor-card,
.post-carousel-slide,
.procedure-image,
.history-medallion {
  content-visibility: auto;
  contain-intrinsic-size: 1px 350px;
}

.room-image,
.news-image,
.article-card-image,
.doctor-photo,
.room-detail-image,
.detail-cover,
.procedure-image {
  contain: layout paint;
}

.room-image img,
.news-image img,
.article-card-image img,
.doctor-photo img,
.room-detail-image img,
.detail-cover img,
.procedure-image img,
.program-visual img,
.visual-triptych img,
.hero-image {
  backface-visibility: hidden;
  transform: translateZ(0);
}

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

  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

  .price-category-icon,
  .price-main-content,
  .price-sub-content,
  .price-main-title,
  .price-sub-title,
  .doctors-carousel-track,
  .doctor-card,
  .doctor-photo img,
  .social-link-footer img,
  .social-link-footer svg,
  .social-link-large img {
    transition: none;
  }
}