:root {
  --page: #FAF7F4;
  --paper: #fbf7f2;
  --cream: #eee4d9;
  --sand: #e4d4c2;
  --line: #eaded2;
  --brown: #765c50;
  --brown-dark: #4f362e;
  --ink: #111111;
  --muted: #6f625c;
  --shadow: 0 16px 36px rgba(93, 66, 52, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Alex Brush", cursive;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--page);
  font-family: var(--sans);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

section {
  scroll-margin-top: 74px;
}

#top {
  scroll-margin-top: 74px;
}

.rise-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--rise-delay, 0ms);
  will-change: opacity, transform;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 66px;
  padding: 11px 18px;
  background: rgba(250, 247, 244, 0.88);
  border-bottom: 1px solid rgba(234, 222, 210, 0.72);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 122px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(118, 92, 80, 0.24);
  border-radius: 999px;
  color: var(--brown);
  background: rgba(255, 253, 250, 0.72);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.menu-toggle span[aria-hidden="true"] {
  position: relative;
  width: 12px;
  height: 8px;
  margin-right: 6px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.menu-toggle span[aria-hidden="true"]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 2px solid currentColor;
  transform: translateY(-50%);
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.site-header.menu-open .menu-toggle {
  color: #fff;
  background: var(--brown);
  box-shadow: 0 10px 22px rgba(79, 54, 46, 0.16);
  transform: translateY(-1px) scale(1.04);
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(118, 92, 80, 0.3);
  border-radius: 999px;
  color: var(--brown);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.header-whatsapp:hover,
.header-whatsapp:focus-visible {
  color: #fff;
  background: var(--brown);
  box-shadow: 0 10px 22px rgba(79, 54, 46, 0.16);
  transform: translateY(-1px) scale(1.04);
}

.site-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 14px;
  display: grid;
  width: min(286px, calc(100vw - 28px));
  padding: 10px;
  border: 1px solid rgba(203, 161, 126, 0.55);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.96);
  box-shadow: 0 18px 44px rgba(79, 54, 46, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 190ms ease,
    transform 190ms ease;
}

.site-header.menu-open .site-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.site-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--brown-dark);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: transform 170ms ease, background-color 170ms ease, color 170ms ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--brown);
  background: #f2e8dc;
  transform: translateX(3px);
}

.welcome-hero {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 34px;
  overflow: hidden;
  color: var(--brown-dark);
  background: var(--page);
  text-align: center;
}

.welcome-logo {
  position: absolute;
  top: clamp(2px, 1.8vw, 12px);
  right: 0;
  left: 0;
  z-index: 2;
  display: grid;
  justify-items: center;
  pointer-events: auto;
}

.welcome-logo img {
  width: min(82px, 21vw);
  height: auto;
  object-fit: contain;
  transition:
    filter 260ms ease,
    transform 260ms ease;
  will-change: transform;
}

.welcome-logo:hover img {
  filter: drop-shadow(0 12px 18px rgba(93, 66, 52, 0.14));
  transform: translateY(-3px) scale(1.035);
}

.welcome-image-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  margin: 0 auto;
  overflow: hidden;
  background: #f3e7da;
  transition:
    box-shadow 280ms ease,
    filter 280ms ease,
    transform 280ms ease;
  will-change: transform;
}

.welcome-image-wrap:hover {
  box-shadow: 0 18px 30px rgba(93, 66, 52, 0.1);
  filter: saturate(1.02) brightness(1.02);
  transform: translateY(-4px) scale(1.008);
}

.welcome-image {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.96) brightness(1.03);
  transition: transform 320ms ease;
  will-change: transform;
}

.welcome-image-wrap:hover .welcome-image {
  transform: scale(1.018);
}

.welcome-hero h1 {
  position: relative;
  z-index: 2;
  margin: 16px 16px 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(22px, 5.75vw, 32px);
  font-weight: 500;
  line-height: 1.1;
}

.founder-page {
  position: relative;
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 44px 14px 78px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(244, 236, 229, 0.6), transparent 210px),
    var(--page);
}

.founder-page::after {
  content: "";
  position: absolute;
  right: -16%;
  bottom: -32px;
  left: -10%;
  height: 80px;
  pointer-events: none;
  background:
    radial-gradient(140% 84px at 50% 90%, transparent 55%, var(--cream) 56% 68%, transparent 69%),
    linear-gradient(176deg, transparent 41%, rgba(228, 212, 194, 0.68) 42% 68%, transparent 69%);
}

.intro {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  text-align: center;
}

.intro-line {
  margin: 0 0 2px;
  color: var(--brown-dark);
  font-size: clamp(18px, 5.2vw, 27px);
  font-weight: 400;
  line-height: 1.16;
}

.intro h1 {
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--script);
  font-size: clamp(40px, 12vw, 72px);
  font-weight: 400;
  line-height: 1;
}

.tagline {
  margin: 13px 0 0;
  font-size: clamp(11px, 3.1vw, 15px);
  font-style: italic;
  line-height: 1.3;
}

.photo-collage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.97fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 13px;
  margin: 16px auto 24px;
}

.photo-frame {
  margin: 0;
  overflow: hidden;
  border: 8px solid var(--cream);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.photo-frame:hover,
.photo-frame:focus-within {
  border-color: #e8d8c6;
  box-shadow: 0 18px 34px rgba(93, 66, 52, 0.14);
  transform: translateY(-2px) scale(1.018);
}

.photo-frame:hover img,
.photo-frame:focus-within img {
  transform: scale(1.045);
}

.photo-large {
  grid-row: 1 / 3;
  min-height: 326px;
}

.photo-large img {
  object-position: center center;
}

.photo-top,
.photo-bottom {
  min-height: 153px;
}

.photo-top img {
  object-position: center center;
}

.photo-bottom img {
  object-position: center 42%;
}

.center-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--cream);
  box-shadow: 0 0 0 7px rgba(250, 247, 244, 0.95);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.center-mark:hover {
  box-shadow: 0 0 0 7px rgba(250, 247, 244, 0.95), 0 14px 24px rgba(93, 66, 52, 0.16);
  transform: translate(-50%, -50%) scale(1.08);
}

.center-mark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.doctor-section {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 44px 27px 48px;
  background: var(--page);
  overflow: visible;
}

.doctor-heading {
  margin-bottom: 18px;
  text-align: center;
}

.doctor-heading h2 {
  margin: 0;
  color: var(--brown);
  font-family: var(--script);
  font-size: clamp(32px, 8.6vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  white-space: nowrap;
}

.doctor-heading p {
  margin: 0;
  color: var(--brown);
  font-size: clamp(16px, 4.25vw, 32px);
  font-weight: 500;
  line-height: 1.05;
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
  isolation: isolate;
  transition: gap 260ms ease;
}

.doctor-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 8px 8px 12px;
  border: 1px solid rgba(203, 161, 126, 0.78);
  border-radius: 7px;
  color: var(--brown-dark);
  background: #fffdfa;
  cursor: pointer;
  outline: 0;
  transform-origin: center top;
  z-index: 1;
  transition:
    opacity 260ms ease,
    filter 260ms ease,
    transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.doctor-card:hover,
.doctor-card:focus-visible {
  border-color: rgba(185, 134, 80, 0.92);
  box-shadow: 0 18px 34px rgba(93, 66, 52, 0.13);
  transform: translateY(-3px) scale(1.018);
}

.doctor-grid.has-active-doctor {
  gap: 10px;
  margin-bottom: 84px;
}

.doctor-grid.has-active-doctor.doctor-focus-first {
  grid-template-columns: 1.18fr 0.72fr;
}

.doctor-grid.has-active-doctor.doctor-focus-second {
  grid-template-columns: 0.72fr 1.18fr;
}

.doctor-grid.has-active-doctor .doctor-card {
  opacity: 0.62;
  filter: saturate(0.86);
  transform: translateY(14px) scale(0.88);
}

.doctor-grid.has-active-doctor .doctor-card.is-focused {
  opacity: 1;
  filter: none;
  border-color: rgba(185, 134, 80, 0.96);
  box-shadow: 0 24px 54px rgba(93, 66, 52, 0.22);
  transform: translateY(-6px) scale(1.08);
  z-index: 5;
}

.doctor-grid.has-active-doctor .doctor-card.is-focused:hover,
.doctor-grid.has-active-doctor .doctor-card.is-focused:focus-visible {
  box-shadow: 0 28px 58px rgba(93, 66, 52, 0.25);
  transform: translateY(-8px) scale(1.1);
}

.doctor-grid.has-active-doctor .doctor-card.is-dimmed:hover,
.doctor-grid.has-active-doctor .doctor-card.is-dimmed:focus-visible {
  opacity: 0.84;
  filter: saturate(0.95);
  transform: translateY(10px) scale(0.92);
}

.doctor-photo {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
  object-position: 50% 38%;
  border: 7px solid var(--cream);
  border-radius: 20px;
  background: #f8f6f3;
  transition: transform 360ms ease, border-color 220ms ease;
}

.doctor-card:hover .doctor-photo,
.doctor-card:focus-visible .doctor-photo,
.doctor-card.is-focused .doctor-photo {
  border-color: #ead9c8;
  transform: scale(1.025);
}

.doctor-card:nth-child(2) .doctor-photo {
  object-position: 50% 5%;
}

.doctor-name {
  min-height: 59px;
  padding: 10px 2px 0;
  text-align: center;
}

.doctor-name h3 {
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--serif);
  font-size: clamp(12px, 3.45vw, 18px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 0.86;
}

.doctor-card.is-focused .doctor-name h3 {
  font-size: clamp(16px, 4.55vw, 24px);
  line-height: 0.88;
}

.doctor-card:nth-child(2) .doctor-name h3 {
  font-size: clamp(11px, 3.05vw, 17px);
  line-height: 1;
  white-space: nowrap;
}

.doctor-card:nth-child(2).is-focused .doctor-name h3 {
  font-size: clamp(15px, 4.1vw, 22px);
}

.doctor-name p {
  margin: 5px 0 0;
  color: #c9942e;
  font-family: var(--serif);
  font-size: clamp(9px, 2.55vw, 13px);
  font-weight: 700;
  line-height: 1;
}

.doctor-card.is-focused .doctor-name p {
  font-size: clamp(11px, 3.15vw, 16px);
}

.doctor-line {
  height: 1px;
  margin: 4px 20px 10px;
  background: #c99c6f;
}

.doctor-credentials {
  min-height: 58px;
  margin: 0 4px;
  font-size: clamp(6px, 1.8vw, 9px);
  font-weight: 500;
  line-height: 1.16;
}

.doctor-card.is-focused .doctor-credentials {
  font-size: clamp(8px, 2.3vw, 12px);
  line-height: 1.18;
}

.doctor-card blockquote {
  position: relative;
  margin: 10px 4px 0;
  padding-top: 15px;
  color: var(--muted);
  font-size: clamp(7px, 1.95vw, 10px);
  font-style: italic;
  line-height: 1.25;
}

.doctor-card.is-focused blockquote {
  font-size: clamp(9px, 2.45vw, 13px);
  line-height: 1.3;
}

.doctor-card blockquote::before {
  content: "\201C";
  position: absolute;
  top: -5px;
  left: 0;
  color: var(--brown);
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1;
}

.doctor-card blockquote::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  left: 25px;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    rgba(118, 92, 80, 0.7) 0 4px,
    transparent 4px 7px
  );
}

.care-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 16px auto 13px;
  padding: 8px 6px;
  border: 1px solid rgba(203, 161, 126, 0.78);
  border-radius: 15px;
  background: #fffdfa;
}

.care-icons article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 58px;
  padding: 0 4px;
  border-right: 1px solid rgba(203, 161, 126, 0.36);
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease;
}

.care-icons article:last-child {
  border-right: 0;
}

.care-icons img {
  width: 39px;
  height: 39px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.care-icons article:hover {
  background: rgba(238, 228, 217, 0.42);
  transform: translateY(-2px) scale(1.04);
}

.care-icons article:hover img {
  transform: scale(1.08);
}

.care-icons span {
  margin-top: 4px;
  color: var(--brown-dark);
  font-family: var(--serif);
  font-size: clamp(5.8px, 1.65vw, 8px);
  font-weight: 700;
  line-height: 0.95;
}

.partners-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  margin: 7px 0 12px;
}

.partners-heading span {
  height: 1px;
  background: #c99c6f;
}

.partners-heading h3 {
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--serif);
  font-size: clamp(13px, 3.8vw, 18px);
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.clinic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.clinic-card {
  overflow: hidden;
  border: 1px solid rgba(203, 161, 126, 0.52);
  border-radius: 6px;
  background: #e5d7c8;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.clinic-card img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
  transition: transform 420ms ease;
}

.clinic-card:hover,
.clinic-card:focus-within {
  border-color: rgba(185, 134, 80, 0.85);
  box-shadow: 0 16px 30px rgba(93, 66, 52, 0.14);
  transform: translateY(-3px) scale(1.02);
}

.clinic-card:hover img,
.clinic-card:focus-within img {
  transform: scale(1.045);
}

.clinic-card p {
  display: grid;
  align-items: center;
  min-height: 42px;
  margin: 0;
  padding: 9px 13px 10px;
  color: var(--brown-dark);
  font-family: var(--serif);
  font-size: clamp(9px, 2.55vw, 12px);
  font-weight: 600;
  line-height: 1.12;
  text-align: center;
}

.doctor-closing {
  max-width: 390px;
  margin: 15px auto 0;
  color: var(--brown);
  font-size: clamp(11.2px, 2.9vw, 14px);
  font-style: italic;
  line-height: 1.25;
  text-align: center;
}

.care-philosophy-section {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 44px 16px 52px;
  background: #f9f0e8;
}

.care-heading {
  margin-bottom: 31px;
  color: var(--brown);
  text-align: center;
}

.care-heading h2 {
  margin: 0;
  font-family: var(--script);
  font-size: clamp(33px, 9.7vw, 58px);
  font-weight: 400;
  line-height: 0.9;
}

.care-heading h2 span {
  margin-right: 6px;
  font-family: var(--sans);
  font-size: 0.48em;
  font-weight: 400;
  vertical-align: 0.28em;
}

.care-heading p {
  margin: 22px 0 0;
  color: #141414;
  font-size: clamp(11px, 3.15vw, 16px);
  font-style: italic;
  line-height: 1.1;
}

.care-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 13px;
  align-items: center;
}

.care-card {
  overflow: visible;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  transition: transform 220ms ease, filter 220ms ease;
}

.care-card:hover,
.care-card:focus-within {
  filter: drop-shadow(0 16px 22px rgba(93, 66, 52, 0.12));
  transform: translateY(-3px) scale(1.014);
}

.image-care-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.service-overview-section {
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 42px 20px 46px;
  background:
    radial-gradient(circle at 92% 8%, rgba(228, 212, 194, 0.45), rgba(250, 247, 244, 0) 34%),
    var(--page);
  color: var(--brown-dark);
}

.service-overview-heading {
  margin: 0 0 24px;
  text-align: center;
}

.service-overview-heading p {
  margin: 0 0 3px;
  font-size: clamp(16px, 4vw, 22px);
  line-height: 1.12;
}

.service-overview-heading h2 {
  margin: 0 0 8px;
  color: var(--brown);
  font-family: var(--script);
  font-size: clamp(44px, 11.2vw, 66px);
  font-weight: 400;
  line-height: 0.96;
}

.service-overview-heading span {
  display: block;
  color: #111;
  font-size: clamp(11px, 2.8vw, 14px);
  font-style: italic;
  line-height: 1.25;
}

.service-overview-grid {
  display: grid;
  gap: 11px;
}

.service-overview-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(203, 174, 146, 0.62);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 10px 24px rgba(93, 66, 52, 0.06);
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.service-overview-card:hover,
.service-overview-card:focus-visible,
.service-overview-card.is-active {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 30px rgba(93, 66, 52, 0.12);
  transform: translateY(-3px) scale(1.012);
}

.service-overview-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.service-overview-card:hover img,
.service-overview-card:focus-visible img,
.service-overview-card.is-active img {
  transform: scale(1.08) rotate(-2deg);
}

.service-detail-panel {
  grid-column: 1 / -1;
  position: absolute !important;
  visibility: hidden;
  max-height: 0;
  min-height: 0 !important;
  width: 100%;
  margin: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(-18px) scale(0.985);
  transform-origin: top center;
  transition:
    max-height 780ms cubic-bezier(0.18, 0.82, 0.24, 1),
    opacity 420ms ease,
    padding 520ms ease,
    transform 620ms cubic-bezier(0.18, 0.82, 0.24, 1);
}

.service-detail-panel.is-open {
  position: relative !important;
  visibility: visible;
  margin: 3px 0 13px;
  max-height: var(--service-panel-height, 2200px);
  opacity: 1;
  overflow: hidden;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mother-care-section.service-detail-panel.is-open {
  min-height: 680px !important;
  padding-top: 54px !important;
  padding-bottom: 34px !important;
}

.newborn-care-section.service-detail-panel.is-open {
  min-height: 808px !important;
  padding-top: 54px !important;
  padding-bottom: 46px !important;
}

.cuisine-section.service-detail-panel.is-open {
  min-height: 768px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.facilities-section.service-detail-panel.is-open {
  min-height: 728px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.service-overview-card h3 {
  margin: 0 0 3px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(19px, 4.2vw, 24px);
  font-weight: 700;
  line-height: 1;
}

.service-overview-card p {
  margin: 0;
  color: #111;
  font-size: clamp(10.5px, 2.55vw, 13px);
  font-weight: 500;
  line-height: 1.25;
}

.mother-care-section {
  position: relative;
  width: min(100%, 560px);
  min-height: 680px;
  margin: 0 auto;
  padding: 54px 0 34px;
  overflow: hidden;
  background: var(--page);
  color: #000;
}

.mother-care-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 58% center;
  pointer-events: none;
}

.mother-care-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(250, 247, 244, 0.96) 0%,
    rgba(250, 247, 244, 0.9) 30%,
    rgba(250, 247, 244, 0.48) 47%,
    rgba(250, 247, 244, 0.03) 70%
  );
}

.mother-care-content {
  position: relative;
  z-index: 2;
  width: 276px;
  padding-left: 47px;
}

.mother-care-heading {
  color: var(--brown-dark);
}

.mother-care-heading p {
  margin: 0 0 -4px;
  font-size: clamp(18px, 4.8vw, 24px);
  font-weight: 400;
  line-height: 1;
}

.mother-care-heading h2 {
  margin: 0 0 0 68px;
  color: var(--brown);
  font-family: var(--script);
  font-size: clamp(32px, 8vw, 43px);
  font-weight: 400;
  line-height: 0.86;
  white-space: nowrap;
}

.mother-care-subtitle {
  margin: 27px 0 18px;
  font-size: clamp(9px, 2.65vw, 12px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
}

.mother-care-list {
  display: grid;
  gap: 11px;
}

.mother-care-item {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  align-items: start;
  padding-bottom: 11px;
  transition: transform 220ms ease;
}

.mother-care-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 122px;
  height: 1px;
  background: #ddc6af;
}

.mother-care-item:hover {
  transform: translateX(2px) scale(1.015);
}

.mother-care-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.mother-care-item:hover img {
  transform: scale(1.08);
}

.mother-care-item h3 {
  margin: 0;
  color: #000;
  font-family: var(--serif);
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 700;
  line-height: 0.94;
}

.mother-care-item p {
  width: 142px;
  margin: 6px 0 0;
  color: #000;
  font-size: clamp(7px, 1.95vw, 9px);
  font-weight: 600;
  line-height: 1.18;
}

.newborn-care-section {
  position: relative;
  width: min(100%, 560px);
  min-height: 808px;
  margin: 0 auto;
  padding: 54px 0 46px;
  overflow: hidden;
  background: var(--page);
  color: #000;
}

.newborn-care-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 57% center;
  pointer-events: none;
}

.newborn-care-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(250, 247, 244, 0.98) 0%,
    rgba(250, 247, 244, 0.94) 25%,
    rgba(250, 247, 244, 0.68) 41%,
    rgba(250, 247, 244, 0.16) 61%,
    rgba(250, 247, 244, 0) 76%
  );
}

.newborn-care-content {
  position: relative;
  z-index: 2;
  width: 292px;
  padding-left: 53px;
}

.newborn-care-heading {
  color: var(--brown-dark);
}

.newborn-care-heading h2 {
  margin: 0;
  color: var(--brown);
  font-family: var(--script);
  font-size: clamp(38px, 9vw, 49px);
  font-weight: 400;
  line-height: 0.82;
  white-space: nowrap;
}

.newborn-care-heading p {
  margin: -2px 0 0 96px;
  color: var(--brown);
  font-size: clamp(17px, 4.1vw, 22px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.newborn-care-subtitle {
  margin: 40px 0 25px;
  font-size: clamp(10px, 2.6vw, 13px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
}

.newborn-care-list {
  display: grid;
  gap: 13px;
}

.newborn-care-item {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: start;
  padding-bottom: 16px;
  transition: transform 220ms ease;
}

.newborn-care-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 146px;
  height: 1px;
  background: #ddc6af;
}

.newborn-care-item:hover {
  transform: translateX(2px) scale(1.015);
}

.newborn-care-item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.newborn-care-item:hover img {
  transform: scale(1.08);
}

.newborn-care-item h3 {
  margin: 0;
  color: #000;
  font-family: var(--serif);
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 700;
  line-height: 0.98;
}

.newborn-care-item p {
  width: 168px;
  margin: 8px 0 0;
  color: #000;
  font-size: clamp(7px, 1.95vw, 9px);
  font-weight: 600;
  line-height: 1.2;
}

.cuisine-section {
  position: relative;
  width: min(100%, 560px);
  min-height: 768px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background: var(--page);
  color: #000;
}

.cuisine-heading {
  position: absolute;
  top: 43px;
  left: 50px;
  z-index: 3;
  width: 440px;
  margin: 0;
  color: var(--brown);
}

.cuisine-heading h2 {
  margin: 0;
  font-weight: 400;
  line-height: 0.92;
}

.cuisine-script {
  font-family: var(--script);
  font-size: clamp(35px, 7.5vw, 47px);
  font-weight: 400;
}

.cuisine-title-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 0 68px;
  font-family: var(--sans);
  font-size: clamp(18px, 4vw, 23px);
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.cuisine-block {
  position: static;
  z-index: 1;
}

.cuisine-soup {
  height: auto;
  margin: 0;
}

.cuisine-meals {
  height: auto;
}

.cuisine-nutrition {
  height: auto;
}

.cuisine-visual {
  position: absolute;
  z-index: 1;
  max-width: none;
  transition:
    transform 260ms ease,
    filter 260ms ease;
  will-change: transform;
}

.cuisine-visual:hover {
  filter: drop-shadow(0 16px 22px rgba(93, 66, 52, 0.12));
  transform: translateY(-3px) scale(1.025);
}

.cuisine-section:has(.cuisine-soup-image:hover) .cuisine-copy-left,
.cuisine-section:has(.cuisine-meals-image:hover) .cuisine-copy-right,
.cuisine-section:has(.cuisine-product-wrap:hover) .cuisine-copy-bottom {
  filter: drop-shadow(0 10px 16px rgba(93, 66, 52, 0.08));
  transform: translateY(-2px);
}

.cuisine-soup-image {
  top: 116px;
  right: 0;
  width: min(78vw, 405px);
}

.cuisine-meals-image {
  top: 340px;
  left: -3px;
  width: min(62vw, 350px);
}

.cuisine-product-wrap {
  position: absolute;
  top: 506px;
  right: 0;
  z-index: 2;
  width: min(53vw, 280px);
  min-height: 180px;
  transition:
    filter 260ms ease,
    transform 260ms ease;
  will-change: transform;
}

.cuisine-product-wrap:hover {
  filter: drop-shadow(0 18px 24px rgba(93, 66, 52, 0.13));
  transform: translateY(-4px) scale(1.022);
}

.cuisine-product-image {
  position: relative;
  width: min(61vw, 310px);
  margin-top: 35px;
}

.sws-brand {
  position: absolute;
  top: 0;
  left: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #c83436;
}

.sws-brand > span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 40px;
  color: #fff;
  background: #c83436;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.02;
  writing-mode: vertical-rl;
}

.sws-brand strong {
  font-family: Georgia, var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.sws-brand strong span {
  font-size: 30px;
}

.cuisine-copy {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 10px;
  align-items: start;
  color: #000;
  transition:
    filter 220ms ease,
    transform 220ms ease;
  will-change: transform;
}

.cuisine-copy img {
  width: 43px;
  height: 43px;
  object-fit: contain;
  transition: transform 240ms ease;
}

.cuisine-copy:hover img {
  transform: rotate(-4deg) scale(1.08);
}

.cuisine-copy:hover {
  filter: drop-shadow(0 10px 16px rgba(93, 66, 52, 0.1));
  transform: translateY(-3px) scale(1.014);
}

.cuisine-copy:hover h3 {
  color: var(--brown-dark);
}

.cuisine-copy h3 {
  margin: 5px 0 10px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(16px, 3.8vw, 20px);
  font-weight: 700;
  line-height: 0.94;
}

.cuisine-copy p {
  margin: 0;
  font-size: clamp(9px, 2.15vw, 11px);
  font-weight: 500;
  line-height: 1.22;
}

.cuisine-copy-left {
  position: absolute;
  top: 155px;
  left: 22px;
  width: min(42vw, 205px);
  margin: 0;
  padding: 0;
}

.cuisine-copy-right {
  position: absolute;
  top: 374px;
  right: 20px;
  width: min(42vw, 190px);
}

.cuisine-copy-bottom {
  position: absolute;
  top: 580px;
  left: 22px;
  width: min(45vw, 236px);
  margin: 0;
  padding: 0;
}

.cuisine-copy-bottom h3 {
  margin-top: 5px;
}

.cuisine-copy-bottom p {
  width: min(38vw, 190px);
}

.cuisine-copy ul {
  display: grid;
  gap: 3px;
  margin: 17px 0 0;
  padding: 0;
  list-style: none;
  font-size: clamp(8px, 2vw, 10px);
  font-weight: 500;
  line-height: 1.1;
}

.cuisine-copy li {
  position: relative;
  padding-left: 18px;
}

.cuisine-copy li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--brown);
  border-radius: 50%;
}

.cuisine-copy li::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border: solid var(--brown);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

@media (max-width: 560px) {
  .cuisine-section {
    min-height: 690px;
    display: block;
    padding: 0 0 84px;
  }

  .cuisine-section.service-detail-panel.is-open {
    min-height: 690px !important;
    margin-bottom: -18px;
    padding: 0 0 84px !important;
  }

  .cuisine-heading {
    position: absolute;
    top: 30px;
    right: 12px;
    left: 12px;
    width: auto;
    margin: 0;
    text-align: center;
  }

  .cuisine-script {
    font-size: clamp(38px, 11.2vw, 48px);
  }

  .cuisine-title-line {
    justify-content: center;
    margin-left: 0;
    gap: 6px;
    font-size: clamp(19px, 5.35vw, 23px);
    white-space: nowrap;
  }

  .cuisine-title-line .cuisine-script {
    font-size: clamp(36px, 10.4vw, 45px);
  }

  .cuisine-block {
    position: static;
    display: block;
  }

  .cuisine-soup,
  .cuisine-meals,
  .cuisine-nutrition {
    margin: 0;
  }

  .cuisine-visual,
  .cuisine-copy,
  .cuisine-product-wrap {
    position: absolute;
  }

  .cuisine-soup-image {
    top: 132px;
    right: 0;
    width: min(62vw, 232px);
  }

  .cuisine-copy-left {
    top: 158px;
    left: 16px;
    width: min(42vw, 150px);
  }

  .cuisine-meals-image {
    top: 308px;
    left: 0;
    width: min(53vw, 205px);
  }

  .cuisine-copy-right {
    top: 315px;
    right: 18px;
    width: min(42vw, 162px);
    padding-left: 0;
  }

  .cuisine-copy-bottom {
    top: 492px;
    left: 17px;
    width: min(42vw, 160px);
  }

  .cuisine-product-wrap {
    top: 465px;
    right: 3px;
    width: min(54vw, 220px);
    min-height: 205px;
  }

  .cuisine-product-image {
    width: 100%;
    margin-top: 0;
  }

  .sws-brand {
    display: none;
  }

  .cuisine-copy {
    grid-template-columns: 33px 1fr;
    gap: 7px;
  }

  .cuisine-copy img {
    width: 33px;
    height: 33px;
  }

  .cuisine-copy h3 {
    margin: 0 0 5px;
    font-size: clamp(11px, 3vw, 13px);
    line-height: 1.05;
  }

  .cuisine-copy p {
    font-size: clamp(6.8px, 1.9vw, 8px);
    line-height: 1.14;
  }

  .cuisine-copy-left p {
    max-width: 108px;
  }

  .cuisine-copy-left h3 {
    max-width: none;
    white-space: nowrap;
  }

  .cuisine-copy-bottom p {
    width: min(34vw, 130px);
  }

  .cuisine-copy ul {
    margin-top: 14px;
    font-size: clamp(7px, 1.95vw, 8.2px);
    gap: 4px;
  }
}

.facilities-section {
  position: relative;
  width: min(100%, 560px);
  min-height: 728px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--page);
  color: #000;
}

.facilities-heading {
  position: absolute;
  top: 42px;
  left: 50px;
  z-index: 3;
  width: 370px;
  color: var(--brown);
}

.facilities-heading h2 {
  margin: 0;
  font-weight: 400;
  line-height: 0.86;
}

.facilities-script {
  display: block;
  margin: 0 0 -4px;
  font-family: var(--script);
  font-size: clamp(37px, 8vw, 49px);
  font-weight: 400;
}

.facilities-heading h2 span:not(.facilities-script) {
  display: block;
  margin-left: 59px;
  color: var(--brown);
  font-family: var(--sans);
  font-size: clamp(20px, 4.6vw, 24px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.facilities-heading p {
  width: 332px;
  margin: 18px 0 0;
  color: #000;
  font-size: clamp(11px, 2.8vw, 13px);
  font-weight: 400;
  line-height: 1.28;
}

.facility-image-card {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 5px solid var(--cream);
  border-radius: 4px;
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

.facility-image-card:hover,
.facility-image-card:focus-within {
  filter: saturate(1.02);
  box-shadow: 0 17px 30px rgba(93, 66, 52, 0.14);
  transform: translateY(-3px) scale(1.018);
}

.facility-image-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 420ms ease;
}

.facility-image-card:hover img,
.facility-image-card:focus-within img {
  transform: scale(1.045);
}

.facility-image-card figcaption {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: var(--brown-dark);
  background: rgba(219, 190, 158, 0.92);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 0.92;
  text-align: center;
}

.facility-main {
  top: 156px;
  right: 76px;
  left: 76px;
  height: 212px;
}

.facility-main img {
  object-position: center center;
}

.facility-main figcaption {
  bottom: 10px;
  left: 17px;
  min-width: 103px;
  height: 31px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: clamp(10px, 2.7vw, 13px);
}

.facility-gallery {
  position: absolute;
  top: 383px;
  right: 86px;
  left: 86px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.facility-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 0.86 / 1;
}

.facility-thumb:nth-child(2) img {
  object-position: 38% center;
}

.facility-thumb:nth-child(3) img {
  object-position: 52% center;
}

.facility-thumb figcaption {
  right: 9px;
  bottom: 8px;
  left: 9px;
  min-height: 23px;
  border-radius: 999px 999px 4px 4px;
  font-size: clamp(5px, 1.25vw, 7px);
}

.facility-icons {
  position: absolute;
  top: 540px;
  right: 18px;
  left: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  color: #000;
  text-align: center;
}

.facility-icons article {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 112px;
  padding: 0 5px;
  transition: transform 220ms ease;
}

.facility-icons article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -1px;
  width: 1px;
  height: 95px;
  background: #dfcbb7;
}

.facility-icons article:hover {
  transform: translateY(-3px) scale(1.04);
}

.facility-icons img {
  width: 39px;
  height: 39px;
  margin-bottom: 13px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.facility-icons article:hover img {
  transform: scale(1.09);
}

.facility-icons h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(10.5px, 2.35vw, 13px);
  font-weight: 700;
  line-height: 1.15;
}

.facilities-closing {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
  z-index: 2;
  margin: 0;
  color: #000;
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 400;
  line-height: 1.28;
  text-align: center;
}

@media (max-width: 560px) {
  .facilities-section {
    min-height: 940px;
  }

  .facilities-section.service-detail-panel.is-open {
    min-height: 940px !important;
  }

  .facilities-heading {
    top: 42px;
    left: 47px;
    width: calc(100% - 94px);
  }

  .facilities-script {
    font-size: clamp(40px, 12vw, 50px);
  }

  .facilities-heading h2 span:not(.facilities-script) {
    margin-left: 58px;
    font-size: clamp(21px, 6vw, 27px);
    line-height: 1.06;
  }

  .facilities-heading p {
    width: min(100%, 312px);
    margin-top: 22px;
    font-size: clamp(12.5px, 3.55vw, 15px);
    line-height: 1.35;
  }

  .facility-main {
    top: 238px;
    right: 34px;
    left: 34px;
    height: 238px;
  }

  .facility-gallery {
    top: 506px;
    right: 36px;
    left: 36px;
    gap: 34px;
  }

  .facility-thumb figcaption {
    right: 6px;
    bottom: 7px;
    left: 6px;
    min-height: 26px;
    font-size: clamp(6px, 1.7vw, 8px);
    line-height: 1.05;
  }

  .facility-icons {
    top: 690px;
    right: 8px;
    left: 8px;
  }

  .facility-icons article {
    min-height: 122px;
    padding: 0 4px;
  }

  .facility-icons article:not(:last-child)::after {
    height: 116px;
  }

  .facility-icons img {
    width: 38px;
    height: 38px;
    margin-bottom: 11px;
  }

  .facility-icons h3 {
    font-size: clamp(9.2px, 2.75vw, 11.5px);
    line-height: 1.18;
  }

  .facilities-closing {
    bottom: 48px;
    font-size: clamp(13px, 3.45vw, 15px);
    line-height: 1.3;
  }
}

.suites-section {
  position: relative;
  width: min(100%, 560px);
  min-height: 790px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--page);
  color: #000;
}

.suites-heading {
  position: absolute;
  top: 64px;
  left: 52px;
  z-index: 3;
  width: calc(100% - 92px);
}

.suites-heading h2 {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0;
  color: var(--brown-dark);
  font-size: clamp(19px, 4.4vw, 24px);
  font-weight: 400;
  line-height: 1;
}

.suites-script {
  color: var(--brown);
  font-family: var(--script);
  font-size: clamp(39px, 8.5vw, 50px);
  font-weight: 400;
  line-height: 0.82;
}

.suites-heading p {
  margin: 25px 0 0;
  color: #000;
  font-size: clamp(9.5px, 2.05vw, 11.5px);
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .suites-heading p {
    width: min(100%, 310px);
    max-width: 100%;
    font-size: clamp(8.8px, 2.35vw, 10.5px);
    line-height: 1.3;
    white-space: normal;
  }
}

.suite-info {
  position: absolute;
  z-index: 3;
  min-height: 56px;
  padding: 7px 15px 6px 22px;
  color: #000;
  background: var(--cream);
}

.suite-info h3 {
  margin: 0 0 3px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(12.5px, 2.8vw, 15.5px);
  font-weight: 700;
  line-height: 1;
}

.suite-info p {
  margin: 0;
  font-size: clamp(8.4px, 1.85vw, 10.5px);
  font-weight: 500;
  line-height: 1.12;
}

.suite-classic-info,
.suite-grand-info {
  left: 0;
  width: 50.4%;
  border-radius: 0 24px 24px 0;
}

.suite-deluxe-info,
.suite-royal-info {
  right: 0;
  width: 47.3%;
  border-radius: 24px 0 0 24px;
}

.suite-classic-info {
  top: 157px;
}

.suite-deluxe-info {
  top: 306px;
}

.suite-grand-info {
  top: 453px;
}

.suite-royal-info {
  top: 597px;
}

.suite-photo {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 5px solid var(--cream);
  border-radius: 3px;
  background: var(--cream);
  box-shadow: 0 7px 14px rgba(93, 66, 52, 0.09);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

.suite-photo:hover,
.suite-photo:focus-within {
  filter: saturate(1.03);
  box-shadow: 0 18px 34px rgba(93, 66, 52, 0.16);
  transform: translateY(-3px) scale(1.018);
}

.suite-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 420ms ease;
}

.suite-photo:hover img,
.suite-photo:focus-within img {
  transform: scale(1.045);
}

.suite-classic-photo {
  top: 160px;
  right: 3.6%;
  width: 43.6%;
  height: 115px;
}

.suite-classic-photo img {
  object-position: 45% center;
}

.suite-deluxe-photo {
  top: 306px;
  left: 5.6%;
  width: 43.6%;
  height: 115px;
}

.suite-deluxe-photo img {
  object-position: center center;
}

.suite-grand-photo {
  top: 596px;
  left: 5.6%;
  width: 43.6%;
  height: 115px;
}

.suite-grand-photo img {
  object-position: 45% center;
}

.suite-royal-photo {
  top: 451px;
  right: 3.6%;
  width: 43.6%;
  height: 115px;
}

.suite-royal-photo img {
  object-position: 43% center;
}

.suite-features {
  position: absolute;
  z-index: 3;
  display: grid;
  color: #000;
  text-align: center;
}

.suite-features div {
  display: grid;
  justify-items: center;
  align-content: start;
  min-width: 0;
  transition: transform 220ms ease;
}

.suite-features div:hover {
  transform: translateY(-2px) scale(1.04);
}

.suite-features img {
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
  object-fit: contain;
  transition: transform 220ms ease;
}

.suite-features div:hover img {
  transform: scale(1.08);
}

.suite-features span {
  display: block;
  font-size: clamp(4.8px, 1.08vw, 6px);
  font-weight: 500;
  line-height: 1.12;
}

.suite-classic-features {
  top: 236px;
  left: 5.7%;
  width: 38%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.suite-deluxe-features,
.suite-royal-features {
  right: 3.2%;
  width: 42%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3px;
}

.suite-deluxe-features {
  top: 384px;
}

.suite-royal-features {
  top: 674px;
}

.suite-grand-features {
  top: 530px;
  left: 5.6%;
  width: 42%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3px;
}

.royal-note {
  position: absolute;
  right: 80px;
  bottom: 44px;
  z-index: 3;
  margin: 0;
  color: #000;
  font-size: clamp(7px, 1.8vw, 9px);
  font-weight: 500;
  line-height: 1;
}

.royal-note::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 5px;
  border: 1.4px solid var(--brown);
  border-radius: 50%;
  vertical-align: -3px;
}

.royal-note::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid var(--brown);
  border-width: 0 1.4px 1.4px 0;
  transform: rotate(45deg);
}

.programmes-section {
  position: relative;
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 48px 18px 54px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(250, 247, 244, 1), rgba(249, 240, 232, 0.72) 48%, rgba(250, 247, 244, 1)),
    var(--page);
  color: #111;
}

.programmes-section::before {
  content: "";
  position: absolute;
  top: 90px;
  right: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(228, 212, 194, 0.42);
  filter: blur(2px);
  pointer-events: none;
}

.programmes-heading {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
  color: var(--brown);
  text-align: center;
}

.programmes-heading p {
  margin: 0;
  color: var(--brown-dark);
  font-size: clamp(16px, 4vw, 22px);
  line-height: 1;
}

.programmes-heading h2 {
  margin: -3px 0 10px;
  font-family: var(--script);
  font-size: clamp(52px, 13vw, 76px);
  font-weight: 400;
  line-height: 0.76;
}

.programmes-heading span {
  display: block;
  color: #111;
  font-size: clamp(11px, 2.8vw, 14px);
  font-style: italic;
  line-height: 1.25;
}

.programme-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.programme-card {
  display: grid;
  grid-template-columns: minmax(112px, 38%) 1fr;
  min-height: 184px;
  overflow: hidden;
  border: 1px solid rgba(203, 174, 146, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 30px rgba(93, 66, 52, 0.09);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.programme-card:hover,
.programme-card:focus-visible {
  border-color: rgba(118, 92, 80, 0.5);
  box-shadow: 0 20px 42px rgba(93, 66, 52, 0.16);
  transform: translateY(-4px) scale(1.01);
}

.programme-card figure {
  position: relative;
  min-height: 184px;
  margin: 0;
  overflow: hidden;
  background: var(--cream);
}

.programme-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.18));
  pointer-events: none;
}

.programme-card figure img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  transition: transform 420ms ease;
}

.programme-card:hover figure img,
.programme-card:focus-visible figure img {
  transform: scale(1.055);
}

.programme-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 14px 14px;
}

.programme-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #b98b2d;
  font-size: clamp(8.5px, 2vw, 10.5px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.programme-copy h3 {
  margin: 0 0 7px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(20px, 4.6vw, 27px);
  font-weight: 700;
  line-height: 0.95;
}

.programme-copy p {
  margin: 0;
  font-size: clamp(10px, 2.35vw, 12.5px);
  font-weight: 500;
  line-height: 1.28;
}

.programme-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 11px;
}

.programme-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--brown);
  background: rgba(228, 212, 194, 0.72);
  font-size: clamp(8px, 1.9vw, 10px);
  font-weight: 700;
  line-height: 1;
}

.programme-copy strong {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 12px;
  color: var(--brown-dark);
  font-size: clamp(9px, 2.1vw, 11px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.programme-tour-link {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 22px auto 0;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--brown);
  box-shadow: 0 14px 28px rgba(93, 66, 52, 0.16);
  font-size: clamp(10px, 2.55vw, 13px);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.programme-tour-link:hover,
.programme-tour-link:focus-visible {
  box-shadow: 0 18px 34px rgba(93, 66, 52, 0.22);
  transform: translateY(-2px) scale(1.025);
}

.parent-education-section {
  position: relative;
  width: min(100%, 560px);
  min-height: 790px;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(250, 247, 244, 1) 0%,
      rgba(250, 247, 244, 0.58) 12%,
      rgba(250, 247, 244, 0) 30%,
      rgba(250, 247, 244, 0) 70%,
      rgba(250, 247, 244, 0.72) 88%,
      rgba(250, 247, 244, 1) 100%
    ),
    radial-gradient(circle at 70% 42%, rgba(228, 212, 194, 0.24), rgba(250, 247, 244, 0) 42%),
    var(--page);
  color: #000;
}

.parent-education-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(250, 247, 244, 0.78) 0%, rgba(250, 247, 244, 0) 22%),
    linear-gradient(180deg, rgba(250, 247, 244, 0.9) 0%, rgba(250, 247, 244, 0) 14%, rgba(250, 247, 244, 0) 82%, rgba(250, 247, 244, 0.82) 100%);
}

.parent-education-heading {
  position: absolute;
  top: 54px;
  left: 56px;
  z-index: 6;
  width: 242px;
}

.parent-education-heading h2 {
  margin: 0;
  color: var(--brown);
  font-weight: 400;
  line-height: 0.9;
}

.education-script {
  display: block;
  font-family: var(--script);
  font-size: clamp(39px, 8.5vw, 50px);
  line-height: 0.8;
  white-space: nowrap;
}

.education-program {
  display: block;
  margin-top: -3px;
  color: var(--brown-dark);
  font-family: var(--sans);
  font-size: clamp(19px, 4.1vw, 23px);
  font-weight: 500;
  line-height: 1;
}

.parent-education-heading p {
  margin: 18px 0 0;
  max-width: 236px;
  font-size: clamp(10.5px, 2.35vw, 12px);
  font-weight: 500;
  line-height: 1.34;
}

.program-pill {
  position: absolute;
  top: 208px;
  left: 46px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 27px;
  padding: 3px 14px 5px;
  color: #ffffff;
  background: #92786d;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: clamp(17px, 3.7vw, 20px);
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 7px 18px rgba(93, 66, 52, 0.12);
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.program-pill:hover {
  background: var(--brown);
  box-shadow: 0 12px 24px rgba(93, 66, 52, 0.18);
  transform: translateY(-2px) scale(1.03);
}

.program-list {
  position: absolute;
  top: 246px;
  left: 37px;
  z-index: 6;
  width: 265px;
  min-height: 416px;
  padding: 0 24px 0 16px;
  background: rgba(250, 247, 244, 0.72);
  border: 1px solid #e3d3c3;
  border-radius: 5px;
  backdrop-filter: blur(2px);
  box-shadow: 0 14px 26px rgba(93, 66, 52, 0.04);
}

.program-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 78px;
  padding: 10px 0 11px;
  border-bottom: 1px solid #dcc8b5;
  transition:
    transform 230ms ease,
    background-color 230ms ease,
    filter 230ms ease;
}

.program-item:last-child {
  border-bottom: 0;
}

.program-item:hover {
  filter: saturate(1.04);
  transform: translateX(3px) scale(1.01);
}

.program-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 240ms ease;
}

.program-item:hover img {
  transform: scale(1.1) rotate(-2deg);
}

.program-item h3 {
  margin: 0 0 4px;
  color: var(--brown-dark);
  font-family: var(--serif);
  font-size: clamp(12px, 2.55vw, 14px);
  font-weight: 700;
  line-height: 1;
}

.program-item p {
  margin: 0;
  font-size: clamp(8.8px, 1.95vw, 10px);
  font-weight: 500;
  line-height: 1.18;
}

.education-quote {
  position: absolute;
  top: 20px;
  right: -79px;
  z-index: 2;
  width: 300px;
  height: 630px;
  max-width: none;
  object-fit: contain;
  transform-origin: 58% 52%;
  filter: drop-shadow(-8px 16px 24px rgba(93, 66, 52, 0.08));
  transition:
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 420ms ease;
}

.education-quote:hover {
  filter: drop-shadow(-12px 24px 32px rgba(93, 66, 52, 0.14));
  transform: translate(-5px, -4px) scale(1.016);
}

.education-people {
  position: absolute;
  right: -66px;
  bottom: 22px;
  z-index: 5;
  width: 322px;
  max-width: none;
  transform-origin: 52% 86%;
  filter: drop-shadow(0 20px 28px rgba(93, 66, 52, 0.08));
  transition:
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 420ms ease;
}

.education-people:hover {
  filter: drop-shadow(0 28px 34px rgba(93, 66, 52, 0.13));
  transform: translateY(-8px) scale(1.018);
}

.education-wave {
  position: absolute;
  bottom: -12px;
  left: -18px;
  z-index: 3;
  width: 620px;
  max-width: none;
  pointer-events: none;
}

.beyond-stay-section {
  position: relative;
  width: min(100%, 560px);
  min-height: 716px;
  margin: 0 auto;
  padding: 56px 26px 44px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(250, 247, 244, 1) 0%, rgba(250, 247, 244, 0.74) 12%, rgba(250, 247, 244, 1) 100%),
    var(--page);
  color: #000000;
}

.beyond-heading h2 {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--sans);
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

.beyond-script {
  color: var(--brown);
  font-family: var(--script);
  font-size: clamp(36px, 8.2vw, 48px);
  line-height: 0.8;
  white-space: nowrap;
}

.beyond-heading p {
  max-width: 360px;
  margin: 20px 0 17px;
  font-size: clamp(10.8px, 2.35vw, 12.5px);
  font-weight: 500;
  line-height: 1.35;
}

.beyond-cards {
  display: grid;
  gap: 11px;
}

.beyond-card {
  display: grid;
  grid-template-columns: 51% 49%;
  min-height: 118px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid #dec8b6;
  border-radius: 5px;
  box-shadow: 0 10px 22px rgba(93, 66, 52, 0.045);
  transform-origin: center;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease;
}

.beyond-card:hover {
  background: rgba(255, 255, 255, 0.54);
  border-color: #d5bba5;
  box-shadow: 0 16px 28px rgba(93, 66, 52, 0.1);
  transform: translateY(-3px) scale(1.012);
}

.beyond-copy {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 7px;
  align-items: start;
  padding: 10px 8px 9px 10px;
}

.beyond-copy img {
  width: 39px;
  height: 39px;
  object-fit: contain;
  transition:
    filter 240ms ease,
    transform 240ms ease;
}

.beyond-card:hover .beyond-copy img {
  filter: drop-shadow(0 6px 9px rgba(93, 66, 52, 0.14));
  transform: scale(1.08) rotate(-2deg);
}

.beyond-copy h3 {
  margin: 0 0 8px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(14px, 3.2vw, 17px);
  font-weight: 700;
  line-height: 1.02;
}

.beyond-copy h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 6px;
  background: #dfc9b6;
}

.beyond-copy p {
  max-width: 134px;
  margin: 0;
  font-size: clamp(8.5px, 1.92vw, 10.2px);
  font-weight: 500;
  line-height: 1.18;
}

.beyond-photo {
  width: 100%;
  height: 100%;
  min-height: 118px;
  object-fit: cover;
  object-position: center;
  transition:
    filter 320ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.beyond-card:hover .beyond-photo {
  filter: saturate(1.04) contrast(1.01);
  transform: scale(1.045);
}

.beyond-closing {
  margin: 12px 0 0;
  color: var(--brown);
  font-size: clamp(11px, 2.45vw, 13px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 560px) {
  .beyond-stay-section {
    padding-inline: 24px;
    padding-bottom: 22px;
  }

  .beyond-card {
    grid-template-columns: 52% 48%;
    min-height: 112px;
  }

  .beyond-copy {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 7px;
    padding: 9px 7px 8px 9px;
  }

  .beyond-copy img {
    width: 34px;
    height: 34px;
  }

  .beyond-copy h3 {
    margin-bottom: 6px;
    font-size: clamp(13.2px, 3.6vw, 16px);
    line-height: 1;
  }

  .beyond-copy h3::after {
    margin-top: 5px;
  }

  .beyond-copy p {
    max-width: 126px;
    font-size: clamp(8.6px, 2.25vw, 10px);
    line-height: 1.18;
  }

  .beyond-photo {
    min-height: 112px;
  }

  .difference-section {
    margin-top: -24px;
  }

  .difference-page {
    padding-top: 28px;
  }
}

.difference-section {
  width: min(100%, 560px);
  margin: -10px auto 0;
  background: var(--page);
}

.difference-page {
  position: relative;
  min-height: 760px;
  padding: 36px 38px 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at 59% 54%, rgba(118, 92, 80, 0.035) 0 23%, rgba(118, 92, 80, 0) 48%),
    var(--page);
  color: #000000;
}

.difference-page:not(.difference-page-final) {
  min-height: auto;
  padding-bottom: 4px;
}

.difference-page::before {
  content: none;
  display: none;
}

.difference-page-final {
  min-height: auto;
  padding-top: 0;
}

.difference-page-final::before {
  top: 128px;
  left: 160px;
  width: 330px;
  height: 330px;
  opacity: 0.06;
}

.difference-page-final .difference-content {
  margin-top: 0;
}

.difference-heading {
  position: relative;
  z-index: 1;
  color: var(--brown);
}

.difference-heading h2 {
  margin: 0;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.difference-heading h2 span:first-child {
  display: block;
  font-family: var(--sans);
  font-size: clamp(18px, 4.1vw, 23px);
  font-weight: 400;
  line-height: 1.05;
}

.difference-heading h2 span:last-child {
  display: block;
  margin-top: -2px;
  padding-left: 0;
  font-family: var(--script);
  font-size: clamp(27px, 6.8vw, 39px);
  line-height: 0.95;
  text-align: center;
  white-space: normal;
}

.difference-content {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  font-size: clamp(11.5px, 2.35vw, 13px);
  font-weight: 500;
  line-height: 1.45;
}

.difference-kicker {
  margin: 0 0 13px;
  font-size: clamp(11px, 2.3vw, 12px);
  line-height: 1.38;
}

.difference-block {
  margin-top: 19px;
  transform-origin: left center;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.difference-block:hover {
  transform: translateX(3px);
}

.difference-block h3 {
  margin: 0 0 18px;
  color: #000000;
  font-family: var(--serif);
  font-size: clamp(12.3px, 2.65vw, 14px);
  font-weight: 700;
  line-height: 1.18;
}

.difference-block p {
  margin: 0 0 17px;
  text-align: justify;
}

.difference-block ul {
  display: grid;
  gap: 2px;
  margin: 18px 0 0 14px;
  padding: 0;
  list-style: none;
  font-style: italic;
  line-height: 1.15;
}

.difference-block li {
  position: relative;
  padding-left: 15px;
}

.difference-block li::before {
  content: "";
  position: absolute;
  top: 0.12em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 1.6px solid #d9a33a;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}

.difference-block li::after {
  content: "";
  position: absolute;
  top: 0.18em;
  left: 3px;
  width: 4px;
  height: 7px;
  border: solid var(--brown);
  border-width: 0 1.4px 1.4px 0;
  transform: rotate(45deg);
}

.difference-block li {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.difference-block li:hover {
  color: var(--brown);
  transform: translateX(2px);
}

.difference-note {
  margin-top: 20px;
  font-style: italic;
}

.difference-ending {
  margin: 36px auto 0;
  max-width: 465px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(14px, 3vw, 17px);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.contact-section {
  position: relative;
  width: min(100%, 560px);
  margin: 0 auto;
  padding: 42px 34px 88px;
  overflow: hidden;
  background: var(--page);
}

.footer-brand {
  display: grid;
  justify-items: center;
}

.footer-brand img {
  width: min(315px, 78vw);
  height: auto;
  object-fit: contain;
  object-position: center;
}

.footer-rule {
  width: 100%;
  height: 1px;
  margin: 21px 0 22px;
  background: linear-gradient(90deg, transparent, #dfcbb7 10% 90%, transparent);
}

.footer-rule.short {
  width: 68%;
  margin: 17px auto 15px;
}

.journey-contact {
  display: grid;
  justify-items: center;
  color: var(--brown-dark);
  text-align: center;
}

.journey-contact p {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.journey-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brown);
  font-size: 17px;
  font-weight: 500;
  transition: transform 180ms ease, color 180ms ease;
}

.journey-contact a:hover,
.journey-contact a:focus-visible {
  color: var(--brown-dark);
  transform: scale(1.04);
}

.journey-contact img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(21px, 7vw, 34px);
  margin-top: 22px;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  opacity: 0.86;
  transform: translateY(-2px) scale(1.12);
}

.social-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-location {
  display: grid;
  grid-template-columns: 1.18fr 0.95fr;
  gap: 17px;
  align-items: start;
}

.address-block {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: start;
}

.address-block img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.address-block address {
  margin: 0;
  color: var(--brown);
  font-size: clamp(10px, 3vw, 13px);
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
}

.footer-map {
  display: block;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 8px 18px rgba(79, 54, 46, 0.18);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.footer-map:hover,
.footer-map:focus-visible {
  box-shadow: 0 14px 26px rgba(79, 54, 46, 0.23);
  transform: translateY(-2px) scale(1.04);
}

.footer-map img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.footer-wave {
  position: absolute;
  right: -5%;
  bottom: -2px;
  left: -10%;
  width: 115%;
  max-width: none;
  height: 64px;
  object-fit: fill;
  pointer-events: none;
}

.floating-actions {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  pointer-events: none;
}

.float-button {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(62, 45, 37, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.float-button:hover,
.float-button:focus-visible {
  box-shadow: 0 22px 44px rgba(62, 45, 37, 0.3);
  transform: translateY(-2px) scale(1.045);
}

.header-whatsapp:active,
.menu-toggle:active,
.doctor-card:active,
.clinic-card:active,
.map-card:active,
.float-button:active {
  transform: scale(0.985);
}

.doctor-grid.has-active-doctor .doctor-card.is-focused:active {
  transform: translateY(-7px) scale(1.08);
}

.doctor-grid.has-active-doctor .doctor-card.is-dimmed:active {
  transform: translateY(12px) scale(0.88);
}

.whatsapp-button {
  color: #fff;
  background: var(--brown);
  letter-spacing: 0.03em;
}

.map-button {
  min-width: 92px;
  padding: 0 16px;
  color: var(--brown);
  background: var(--page);
  border: 1px solid rgba(118, 92, 80, 0.2);
}

@media (min-width: 720px) {
  body {
    background: var(--page);
  }

  .site-header {
    padding-inline: calc((100vw - 560px) / 2 + 18px);
  }
}

@media (min-width: 980px) {
  .site-header {
    min-height: 72px;
    padding-inline: 56px;
  }

  .brand img {
    width: 148px;
    height: 50px;
  }

  .header-actions {
    order: 3;
    margin-left: 16px;
  }

  .menu-toggle {
    display: none;
  }

  .site-menu {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-menu a {
    min-height: 34px;
    padding: 0 11px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
  }

  .site-menu a:hover,
  .site-menu a:focus-visible {
    background: rgba(238, 228, 217, 0.74);
    transform: translateY(-1px);
  }

  .header-whatsapp {
    min-height: 38px;
    padding-inline: 18px;
    font-size: 12px;
  }

  .founder-page,
  .doctor-section,
  .care-philosophy-section,
  .service-overview-section,
  .mother-care-section,
  .newborn-care-section,
  .cuisine-section,
  .facilities-section,
  .suites-section,
  .programmes-section,
  .parent-education-section,
  .beyond-stay-section,
  .difference-section,
  .contact-section {
    width: min(100% - 80px, 1120px);
  }

  .welcome-hero {
    width: 100%;
    padding: 0 0 48px;
  }

  .welcome-logo {
    top: clamp(0px, 0.25vw, 6px);
  }

  .welcome-logo img {
    width: clamp(126px, 8.6vw, 160px);
  }

  .welcome-image-wrap {
    width: 100%;
    aspect-ratio: 2.71 / 1;
  }

  .welcome-hero h1 {
    margin-top: 26px;
    font-size: clamp(34px, 2.7vw, 46px);
  }

  .founder-page {
    display: block;
    width: min(100% - 80px, 1280px);
    padding: 82px 42px 122px;
  }

  .intro {
    max-width: 980px;
    margin: 0 auto 52px;
  }

  .intro-line {
    font-size: clamp(31px, 2.15vw, 40px);
  }

  .intro h1 {
    font-size: clamp(76px, 5.4vw, 106px);
  }

  .tagline {
    font-size: 18px;
  }

  .photo-collage {
    width: min(760px, 100%);
    grid-template-columns: 0.95fr 1fr;
    gap: 20px;
    margin: 0 auto 24px;
  }

  .photo-frame {
    border-width: 10px;
    border-radius: 20px;
  }

  .photo-large {
    height: 520px;
    min-height: 0;
  }

  .photo-top,
  .photo-bottom {
    height: 250px;
    min-height: 0;
  }

  .center-mark {
    width: 104px;
    height: 104px;
    box-shadow: 0 0 0 9px rgba(250, 247, 244, 0.95);
  }

  .center-mark:hover {
    box-shadow: 0 0 0 9px rgba(250, 247, 244, 0.95), 0 14px 24px rgba(93, 66, 52, 0.16);
  }

  .center-mark img {
    width: 70px;
    height: 70px;
  }

  .contact-section {
    padding: 54px 46px 120px;
  }

  .care-philosophy-section {
    padding: 70px 52px 72px;
  }

  .service-overview-section {
    padding: 66px 76px 70px;
  }

  .service-detail-panel.is-open {
    width: min(100% - 80px, 1120px);
    margin: 24px auto 30px;
  }

  .service-overview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .service-overview-card {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: start;
    min-height: 210px;
    padding: 26px 18px 22px;
    text-align: center;
  }

  .service-overview-card img {
    width: 62px;
    height: 62px;
  }

  .mother-care-section {
    min-height: 800px;
    padding-top: 78px;
  }

  .mother-care-section.service-detail-panel.is-open {
    min-height: 800px !important;
    padding-top: 78px !important;
  }

  .mother-care-content {
    width: 470px;
    padding-left: 80px;
  }

  .mother-care-heading h2 {
    margin-left: 96px;
  }

  .mother-care-subtitle {
    margin-top: 38px;
    font-size: 15px;
  }

  .mother-care-list {
    gap: 14px;
  }

  .mother-care-item {
    grid-template-columns: 46px 1fr;
    gap: 15px;
    padding-bottom: 14px;
  }

  .mother-care-item:not(:last-child)::after {
    width: 205px;
  }

  .mother-care-item img {
    width: 46px;
    height: 46px;
  }

  .mother-care-item h3 {
    font-size: 20px;
    line-height: 1;
  }

  .mother-care-item p {
    width: 255px;
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.22;
  }

  .newborn-care-section {
    min-height: 900px;
    padding-top: 78px;
  }

  .newborn-care-section.service-detail-panel.is-open {
    min-height: 900px !important;
    padding-top: 78px !important;
  }

  .newborn-care-content {
    width: 485px;
    padding-left: 86px;
  }

  .newborn-care-heading p {
    margin-left: 106px;
  }

  .newborn-care-subtitle {
    margin-top: 44px;
    font-size: 15px;
  }

  .newborn-care-list {
    gap: 15px;
  }

  .newborn-care-item {
    grid-template-columns: 46px 1fr;
    gap: 15px;
    padding-bottom: 16px;
  }

  .newborn-care-item:not(:last-child)::after {
    width: 220px;
  }

  .newborn-care-item img {
    width: 46px;
    height: 46px;
  }

  .newborn-care-item h3 {
    font-size: 20px;
    line-height: 1.02;
  }

  .newborn-care-item p {
    width: 280px;
    margin-top: 7px;
    font-size: 13px;
    line-height: 1.24;
  }

  .cuisine-section {
    min-height: 980px;
    padding-top: 0;
  }

  .cuisine-section.service-detail-panel.is-open {
    min-height: 980px !important;
  }

  .cuisine-heading {
    top: 66px;
    left: 82px;
    margin-left: 0;
  }

  .cuisine-script {
    font-size: 58px;
  }

  .cuisine-title-line {
    font-size: 28px;
  }

  .cuisine-soup {
    height: 300px;
  }

  .cuisine-soup-image {
    top: 136px;
    right: 36px;
    width: 660px;
  }

  .cuisine-copy-left {
    top: 178px;
    left: 62px;
    width: 300px;
    margin-left: 0;
    padding-top: 0;
  }

  .cuisine-meals {
    height: 245px;
  }

  .cuisine-meals-image {
    top: 408px;
    left: 0;
    width: 610px;
  }

  .cuisine-copy-right {
    top: 438px;
    right: 60px;
    width: 330px;
  }

  .cuisine-nutrition {
    height: 320px;
  }

  .cuisine-copy-bottom {
    top: 680px;
    left: 62px;
    width: 340px;
    margin-left: 0;
  }

  .cuisine-product-wrap {
    top: 658px;
    right: 82px;
    width: 430px;
  }

  .cuisine-product-image {
    width: 420px;
  }

  .cuisine-copy {
    grid-template-columns: 54px 1fr;
    gap: 16px;
  }

  .cuisine-copy img {
    width: 50px;
    height: 50px;
  }

  .cuisine-copy h3 {
    font-size: 25px;
    line-height: 1.02;
  }

  .cuisine-copy p {
    font-size: 14px;
    line-height: 1.24;
  }

  .cuisine-copy-bottom p {
    width: 270px;
  }

  .cuisine-copy ul {
    font-size: 12.5px;
    gap: 5px;
  }

  .facilities-section {
    min-height: 1220px;
  }

  .facilities-section.service-detail-panel.is-open {
    min-height: 1220px !important;
  }

  .facilities-heading {
    top: 82px;
    left: 120px;
    width: 620px;
  }

  .facilities-script {
    font-size: 68px;
  }

  .facilities-heading h2 span:not(.facilities-script) {
    margin-left: 104px;
    font-size: 36px;
  }

  .facilities-heading p {
    width: 560px;
    margin-top: 30px;
    font-size: 17px;
    line-height: 1.35;
  }

  .facility-main {
    top: 250px;
    right: 132px;
    left: 132px;
    height: 380px;
  }

  .facility-main figcaption {
    left: 30px;
    bottom: 18px;
    min-width: 154px;
    padding: 11px 22px;
    font-size: 16px;
  }

  .facility-gallery {
    top: 672px;
    right: 132px;
    left: 132px;
    gap: 64px;
  }

  .facility-thumb {
    aspect-ratio: 0.88 / 1;
  }

  .facility-thumb figcaption {
    min-width: 112px;
    padding: 8px 14px;
    font-size: 11px;
  }

  .facility-icons {
    top: 936px;
    right: 48px;
    left: 48px;
  }

  .facility-icons article {
    min-height: 158px;
    padding: 0 14px;
  }

  .facility-icons article:not(:last-child)::after {
    height: 150px;
  }

  .facility-icons img {
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
  }

  .facility-icons h3 {
    font-size: 21px;
    line-height: 1.18;
  }

  .facilities-closing {
    bottom: 54px;
    font-size: 18px;
  }

  .suites-section {
    min-height: 1120px;
  }

  .programmes-section {
    padding: 72px 72px 78px;
  }

  .programmes-section::before {
    top: 100px;
    right: -80px;
    width: 380px;
    height: 380px;
  }

  .programme-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .programme-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .programme-card figure {
    min-height: 310px;
  }

  .programme-copy {
    min-height: 244px;
    justify-content: flex-start;
    padding: 24px 22px 22px;
  }

  .suites-heading {
    top: 88px;
    left: 104px;
  }

  .suite-info {
    min-height: 70px;
    padding: 14px 30px 13px 28px;
  }

  .suite-info h3 {
    margin-bottom: 6px;
    font-size: 22px;
    line-height: 0.98;
  }

  .suite-info p {
    max-width: 360px;
    font-size: 15px;
    line-height: 1.16;
  }

  .suite-classic-info,
  .suite-grand-info {
    left: 0;
    width: 49%;
    border-radius: 0 28px 28px 0;
  }

  .suite-deluxe-info,
  .suite-royal-info {
    right: 0;
    width: 47%;
    border-radius: 28px 0 0 28px;
  }

  .suite-classic-info {
    top: 182px;
  }

  .suite-classic-photo {
    top: 182px;
    right: 4%;
    width: 43.5%;
    height: 184px;
  }

  .suite-classic-features {
    top: 288px;
    left: 8.2%;
    width: 36%;
    gap: 26px;
  }

  .suite-deluxe-photo {
    top: 420px;
    left: 6%;
    width: 43.5%;
    height: 184px;
  }

  .suite-deluxe-info {
    top: 420px;
  }

  .suite-deluxe-features {
    top: 536px;
    width: 40.5%;
    gap: 18px;
  }

  .suite-grand-info {
    top: 650px;
  }

  .suite-grand-features {
    top: 770px;
    left: 7.2%;
    width: 40.5%;
    gap: 18px;
  }

  .suite-grand-photo {
    top: 878px;
    left: 6%;
    width: 43.5%;
    height: 166px;
  }

  .suite-royal-photo {
    top: 650px;
    right: 4%;
    width: 43.5%;
    height: 184px;
  }

  .suite-royal-info {
    top: 850px;
  }

  .suite-royal-features {
    top: 966px;
    width: 40.5%;
    gap: 18px;
  }

  .suite-features img {
    width: 54px;
    height: 54px;
    margin-bottom: 9px;
  }

  .suite-features span {
    max-width: 78px;
    font-size: 10.5px;
    font-weight: 600;
    line-height: 1.14;
  }

  .royal-note {
    right: 136px;
    bottom: 18px;
    font-size: 10px;
  }

  .parent-education-section {
    min-height: 940px;
  }

  .parent-education-heading {
    top: 86px;
    left: 104px;
    width: 310px;
  }

  .education-script {
    font-size: clamp(55px, 5.4vw, 70px);
  }

  .education-program {
    margin-top: -6px;
    font-size: clamp(28px, 2.7vw, 35px);
  }

  .parent-education-heading p {
    margin-top: 30px;
    max-width: 315px;
    font-size: 15px;
    line-height: 1.38;
  }

  .program-pill {
    top: 292px;
    left: 94px;
    min-width: 172px;
    min-height: 34px;
    font-size: 24px;
  }

  .program-list {
    top: 344px;
    left: 72px;
    width: 520px;
    min-height: 470px;
    padding: 0 38px 0 30px;
  }

  .program-item {
    grid-template-columns: 54px minmax(0, 1fr);
    min-height: 88px;
    gap: 18px;
  }

  .program-item img {
    width: 54px;
    height: 54px;
  }

  .program-item h3 {
    font-size: 19px;
  }

  .program-item p {
    max-width: 330px;
    font-size: 13px;
    line-height: 1.24;
  }

  .education-quote {
    top: 26px;
    right: -80px;
    width: 600px;
    height: 820px;
  }

  .education-people {
    right: -54px;
    bottom: 20px;
    width: 610px;
  }

  .education-wave {
    bottom: -18px;
    left: -16px;
    width: 1160px;
  }

  .beyond-stay-section {
    min-height: 900px;
    padding: 82px 72px 78px;
  }

  .beyond-heading h2 {
    font-size: 34px;
  }

  .beyond-script {
    font-size: 70px;
  }

  .beyond-heading p {
    max-width: 480px;
    margin-top: 40px;
    margin-bottom: 28px;
    font-size: 16px;
  }

  .beyond-cards {
    gap: 18px;
  }

  .beyond-card {
    min-height: 152px;
    grid-template-columns: 49% 51%;
  }

  .beyond-copy {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 18px 16px 28px;
  }

  .beyond-copy img {
    width: 62px;
    height: 62px;
  }

  .beyond-copy h3 {
    margin-bottom: 10px;
    font-size: 25px;
  }

  .beyond-copy p {
    max-width: 248px;
    font-size: 14px;
    line-height: 1.25;
  }

  .beyond-photo {
    min-height: 152px;
  }

  .beyond-closing {
    margin-top: 22px;
    font-size: 17px;
  }

  .difference-page {
    min-height: 860px;
    padding: 76px 92px 76px;
  }

  .difference-page:not(.difference-page-final) {
    min-height: auto;
    padding-bottom: 14px;
  }

  .difference-page::before {
    top: 292px;
    left: 430px;
    width: 420px;
    height: 420px;
  }

  .difference-page-final {
    min-height: auto;
    padding-top: 0;
  }

  .difference-page-final::before {
    top: 165px;
    left: 398px;
    width: 470px;
    height: 470px;
  }

  .difference-heading h2 span:first-child {
    font-size: 33px;
  }

  .difference-heading h2 span:last-child {
    max-width: 760px;
    margin-top: 0;
    padding-left: 0;
    font-size: 56px;
    line-height: 0.95;
    text-align: center;
  }

  .difference-content {
    max-width: 760px;
    margin-top: 52px;
    font-size: 18px;
    line-height: 1.48;
  }

  .difference-kicker {
    font-size: 16px;
  }

  .difference-block {
    margin-top: 30px;
  }

  .difference-block h3 {
    margin-bottom: 22px;
    font-size: 18px;
  }

  .difference-block p {
    margin-bottom: 22px;
  }

  .difference-block ul {
    margin-top: 24px;
    margin-left: 28px;
    font-size: 17px;
  }

  .difference-block li {
    padding-left: 22px;
  }

  .difference-block li::before {
    top: 0.08em;
    width: 13px;
    height: 13px;
  }

  .difference-block li::after {
    top: 0.13em;
    left: 4px;
    width: 5px;
    height: 9px;
  }

  .difference-ending {
    margin-top: 60px;
    max-width: 720px;
    font-size: 24px;
  }

  .care-cards {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
  }

  .floating-actions {
    right: 28px;
    bottom: 24px;
    left: auto;
    grid-template-columns: auto auto;
  }

  .whatsapp-button {
    padding: 0 22px;
  }
}

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

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

  .rise-up {
    opacity: 1;
    transform: none;
  }
}
