:root {
  color-scheme: light;
  --bg: #f7f8f7;
  --bg-warm: #fbf7f1;
  --surface: #ffffff;
  --surface-soft: #eef4f3;
  --surface-glass: rgba(255, 255, 255, 0.72);
  --text: #10202b;
  --text-strong: #081922;
  --muted: #5d6b75;
  --accent: #2bc7be;
  --accent-deep: #157a75;
  --accent-soft: #dff7f5;
  --coral: #f28f7e;
  --gold: #d6a84f;
  --line: rgba(21, 122, 117, 0.16);
  --line-strong: rgba(43, 199, 190, 0.42);
  --glow: rgba(43, 199, 190, 0.24);
  --shadow: 0 26px 70px rgba(16, 32, 43, 0.14);
  --shadow-soft: 0 18px 46px rgba(16, 32, 43, 0.1);
  --radius: 8px;
  --media-radius: 16px;
  --container: 1160px;
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 10%, rgba(43, 199, 190, 0.12), transparent 34%),
    radial-gradient(circle at 82% 26%, rgba(242, 143, 126, 0.08), transparent 28%),
    linear-gradient(180deg, var(--bg), #f4faf8 46%, var(--bg-warm) 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0 auto;
  text-align: left;
}

.section-label,
.hero-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin: 0 0 14px;
  border: 1px solid rgba(43, 199, 190, 0.34);
  border-radius: 999px;
  background: rgba(223, 247, 245, 0.7);
  color: var(--accent-deep);
  padding: 8px 12px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--text-strong);
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.72rem, 5.2vw, 5.35rem);
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.5vw, 1.45rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--text-strong);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.12rem;
  line-height: 1.26;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.btn {
  --x: 0px;
  --y: 0px;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  color: var(--text-strong);
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transform: translate3d(var(--x), var(--y), 0);
  transition:
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
  will-change: transform;
}

.btn::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(43, 199, 190, 0.95), rgba(255, 255, 255, 0.65), rgba(242, 143, 126, 0.46));
  content: "";
  opacity: 0;
  transition: opacity 220ms var(--ease);
}

.btn:hover,
.btn:focus-visible {
  outline: 0;
  transform: translate3d(var(--x), calc(var(--y) - 2px), 0);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 0.45;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #77ebe3 48%, var(--accent-deep));
  box-shadow: 0 18px 44px rgba(43, 199, 190, 0.28);
  color: #062421;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 64px rgba(43, 199, 190, 0.36);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(16px);
}

.btn-ghost,
.btn-outline {
  border-color: rgba(43, 199, 190, 0.36);
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent-deep);
  backdrop-filter: blur(14px);
}

.btn-outline {
  width: 100%;
  margin-top: auto;
}

.glass-panel,
.glass-strip,
.service-card,
.package-card,
.testimonial-card,
.faq-panel,
.booking-panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(245, 252, 251, 0.64)),
    radial-gradient(circle at 15% 0%, rgba(43, 199, 190, 0.14), transparent 36%);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.clinic-preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(43, 199, 190, 0.18), transparent 32%),
    linear-gradient(180deg, #f9fffe, #edf8f6);
  transition: opacity 520ms var(--ease), visibility 520ms var(--ease);
}

.clinic-preloader[hidden] {
  display: none !important;
}

.clinic-preloader.is-exiting {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-panel {
  display: grid;
  width: min(330px, calc(100% - 40px));
  justify-items: center;
  border: 1px solid rgba(43, 199, 190, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  padding: 34px 28px;
  box-shadow: 0 30px 90px rgba(21, 122, 117, 0.18);
  backdrop-filter: blur(22px);
}

.preloader-symbol {
  position: relative;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(43, 199, 190, 0.24);
  background: radial-gradient(circle, rgba(43, 199, 190, 0.12), rgba(255, 255, 255, 0.72));
  box-shadow: 0 0 50px rgba(43, 199, 190, 0.26);
}

.tooth-atom {
  width: 72px;
  height: 72px;
}

.tooth-line,
.atom-line {
  fill: none;
  stroke: var(--accent-deep);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  animation: drawClinicMark 1.5s var(--ease) forwards;
}

.atom-line {
  stroke: var(--accent);
  stroke-width: 2.3;
  animation-delay: 0.16s;
}

.atom-core {
  fill: var(--accent);
  filter: drop-shadow(0 0 10px rgba(43, 199, 190, 0.82));
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(43, 199, 190, 0.85);
}

.particle-one {
  animation: orbitOne 1.8s linear infinite;
}

.particle-two {
  animation: orbitTwo 2.2s linear infinite;
}

.particle-three {
  animation: orbitThree 2.6s linear infinite;
}

.loader-brand {
  margin: 20px 0 4px;
  color: var(--text-strong);
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 800;
}

.loader-copy {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.progress-ring {
  width: 100%;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(21, 122, 117, 0.1);
}

.progress-ring span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #8bf4ed, var(--coral));
  box-shadow: 0 0 24px rgba(43, 199, 190, 0.55);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 16px 0;
  transition: background 240ms var(--ease), padding 240ms var(--ease), box-shadow 240ms var(--ease), color 240ms var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(21, 122, 117, 0.12), 0 16px 42px rgba(16, 32, 43, 0.1);
  backdrop-filter: blur(22px);
}

.site-header.is-scrolled {
  padding: 10px 0;
}

.nav-shell {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-strong);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: color 220ms var(--ease), text-shadow 220ms var(--ease);
}

.brand strong {
  color: var(--accent-deep);
  transition: color 220ms var(--ease);
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(43, 199, 190, 0.35);
  border-radius: 50%;
  background: rgba(223, 247, 245, 0.74);
  box-shadow: 0 0 24px rgba(43, 199, 190, 0.14);
  transition: background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.brand-mark svg {
  width: 27px;
  height: 27px;
}

.brand-mark path {
  fill: none;
  stroke: var(--accent-deep);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 220ms var(--ease);
}

.site-header:not(.is-scrolled):not(.is-open) .brand,
.site-header:not(.is-scrolled):not(.is-open) .brand strong {
  color: #ffffff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

.site-header:not(.is-scrolled):not(.is-open) .brand-mark {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.site-header:not(.is-scrolled):not(.is-open) .brand-mark path {
  stroke: #ffffff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 23px;
}

.nav-links a {
  color: rgba(16, 32, 43, 0.84);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms var(--ease), text-shadow 180ms var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent-deep);
  outline: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions .btn {
  min-height: 42px;
  padding: 11px 15px;
  font-size: 0.82rem;
}

.site-header:not(.is-scrolled):not(.is-open) .nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.site-header:not(.is-scrolled):not(.is-open) .nav-links a:hover,
.site-header:not(.is-scrolled):not(.is-open) .nav-links a:focus-visible {
  color: #ffffff;
}

.site-header:not(.is-scrolled):not(.is-open) .nav-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(21, 122, 117, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-strong);
  transition: background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.site-header:not(.is-scrolled):not(.is-open) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.hero-section {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  padding: 156px 0 84px;
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 31, 32, 0.84) 0%, rgba(9, 48, 49, 0.72) 34%, rgba(9, 48, 49, 0.24) 68%, rgba(9, 48, 49, 0.12) 100%),
    linear-gradient(180deg, rgba(247, 248, 247, 0.05) 0%, rgba(247, 248, 247, 0.02) 68%, var(--bg) 100%);
}

.hero-glow {
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 54%, rgba(43, 199, 190, 0.34), transparent 32%),
    radial-gradient(circle at 48% 12%, rgba(255, 255, 255, 0.16), transparent 24%);
  mix-blend-mode: screen;
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: calc(94vh - 240px);
  align-items: center;
}

.hero-copy {
  width: min(790px, 100%);
  color: #fff;
}

.hero-copy h1 {
  color: #ffffff;
  text-shadow: 0 14px 46px rgba(0, 0, 0, 0.24);
}

.hero-subtitle {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

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

.hero-chip-row {
  display: flex;
  max-width: 680px;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.floating-chip {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  padding: 13px 15px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 18px 46px rgba(2, 38, 37, 0.2);
  backdrop-filter: blur(16px);
}

.floating-chip i {
  color: #88f5ef;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -34px;
  padding-bottom: 66px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
}

.trust-grid article {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: 1px solid rgba(21, 122, 117, 0.13);
  color: var(--text-strong);
  font-weight: 800;
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid i {
  color: var(--accent-deep);
  font-size: 1.15rem;
}

.reception-section {
  --story-bg-image: url("../images/portfolio/wellcare-clinic/01_hero_modern_clinic_reception.png");
  --story-bg-position: center;
  padding-top: 104px;
}

.background-story-section {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 760px;
  overflow: hidden;
  align-items: center;
  background: #071f20;
}

.section-bg-layer {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--story-bg-image);
  background-position: var(--story-bg-position, center);
  background-size: cover;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.06);
  transform-origin: center;
  will-change: transform;
}

.background-story-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 31, 33, 0.76), rgba(5, 31, 33, 0.42) 48%, rgba(247, 248, 247, 0.66) 100%),
    linear-gradient(180deg, rgba(247, 248, 247, 0) 0%, rgba(247, 248, 247, 0.24) 74%, var(--bg) 100%);
  content: "";
}

.background-story-layout {
  position: relative;
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 0.84fr);
  align-items: center;
  gap: clamp(26px, 4vw, 58px);
}

.background-story-panel {
  justify-self: end;
  max-width: 580px;
  width: 100%;
  min-width: 0;
}

.floating-info-cluster {
  position: relative;
  z-index: 1;
  min-height: 520px;
  pointer-events: none;
  min-width: 0;
}

.cute-info-card {
  --float-x: 0px;
  --float-y: 0px;
  --float-drift: 0px;
  --float-rotate: 0deg;
  position: absolute;
  display: grid;
  width: min(260px, 78vw);
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(235, 252, 250, 0.7)),
    radial-gradient(circle at 10% 0%, rgba(43, 199, 190, 0.18), transparent 42%);
  padding: 14px;
  box-shadow: 0 22px 58px rgba(4, 34, 36, 0.2), 0 0 30px rgba(43, 199, 190, 0.14);
  pointer-events: auto;
  transform: translate3d(var(--float-x), calc(var(--float-y) + var(--float-drift)), 0) rotate(var(--float-rotate));
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
  backdrop-filter: blur(18px);
}

.cute-info-card::after {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(43, 199, 190, 0.82);
  content: "";
}

.cute-info-card i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 1rem;
}

.cute-info-card strong,
.cute-info-card span {
  display: block;
}

.cute-info-card strong {
  color: var(--text-strong);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.9rem;
  line-height: 1.18;
}

.cute-info-card span {
  margin-top: 4px;
  color: rgba(16, 32, 43, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.38;
}

.cute-info-card:hover,
.cute-info-card.is-active {
  border-color: rgba(132, 255, 248, 0.9);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(223, 247, 245, 0.84)),
    radial-gradient(circle at 10% 0%, rgba(43, 199, 190, 0.24), transparent 44%);
  box-shadow: 0 28px 76px rgba(4, 34, 36, 0.26), 0 0 42px rgba(43, 199, 190, 0.22);
}

.reception-floating-info .cute-info-card:nth-child(1) {
  left: 4%;
  top: 9%;
  --float-rotate: -2deg;
}

.reception-floating-info .cute-info-card:nth-child(2) {
  right: 4%;
  top: 42%;
  --float-rotate: 2.4deg;
}

.reception-floating-info .cute-info-card:nth-child(3) {
  left: 14%;
  bottom: 8%;
  --float-rotate: -1.2deg;
}

.brand-story-layout,
.review-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: 34px;
}

.media-frame,
.booking-media,
.comfort-mosaic figure,
.brand-collage-grid figure {
  overflow: hidden;
  border-radius: var(--media-radius);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
}

.media-frame img,
.booking-media img,
.comfort-mosaic img,
.brand-collage-grid img,
.editorial-card img,
.service-card img,
.process-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame {
  min-height: 520px;
}

.section-copy,
.brand-story-copy,
.booking-panel,
.faq-panel {
  border-radius: var(--radius);
  padding: 34px;
}

.mini-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.mini-proof-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  padding: 16px;
}

.mini-proof-grid strong,
.mini-proof-grid span {
  display: block;
}

.mini-proof-grid strong {
  color: var(--accent-deep);
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.22rem;
}

.mini-proof-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.services-section {
  background:
    linear-gradient(180deg, rgba(238, 244, 243, 0.5), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 78% 20%, rgba(43, 199, 190, 0.12), transparent 32%);
}

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

.service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.service-card::before,
.package-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(112deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  content: "";
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 220ms var(--ease), transform 620ms var(--ease);
}

.service-card:hover,
.service-card:focus-within,
.package-card:hover,
.package-card:focus-within {
  border-color: rgba(43, 199, 190, 0.56);
  box-shadow: 0 0 0 1px rgba(43, 199, 190, 0.18), 0 28px 84px rgba(21, 122, 117, 0.16);
  transform: translateY(-5px);
}

.service-card:hover::before,
.service-card:focus-within::before,
.package-card:hover::before,
.package-card:focus-within::before {
  opacity: 0.55;
  transform: translateX(60%);
}

.service-card img {
  aspect-ratio: 16 / 10;
  transition: transform 520ms var(--ease);
}

.service-card:hover img {
  transform: scale(1.03);
}

.service-card div {
  padding: 22px;
}

.service-card i {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.service-card p {
  min-height: 82px;
  margin-bottom: 18px;
  font-size: 0.94rem;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-deep);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.service-card a i {
  display: inline-grid;
  width: auto;
  height: auto;
  margin: 0;
  background: transparent;
  transition: transform 180ms var(--ease);
}

.service-card:hover a i,
.service-card:focus-within a i {
  transform: translateX(5px);
}

.packages-section {
  overflow: hidden;
}

.package-tabs {
  position: relative;
  display: flex;
  width: fit-content;
  margin: 0 auto 26px;
  gap: 8px;
  border: 1px solid rgba(43, 199, 190, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  padding: 6px;
  box-shadow: 0 16px 44px rgba(21, 122, 117, 0.09);
  backdrop-filter: blur(14px);
}

.package-tab {
  position: relative;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 900;
}

.package-tab.is-active {
  background: rgba(43, 199, 190, 0.14);
  color: var(--accent-deep);
  box-shadow: 0 0 28px rgba(43, 199, 190, 0.18);
}

.package-tab.is-active::after {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.package-tab:focus-visible {
  outline: 3px solid rgba(43, 199, 190, 0.28);
  outline-offset: 2px;
}

.package-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.package-panel[hidden] {
  display: none !important;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 432px;
  overflow: hidden;
  flex-direction: column;
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
  transform-style: preserve-3d;
}

.package-card.featured {
  border-color: rgba(43, 199, 190, 0.48);
  background:
    radial-gradient(circle at 28% 0%, rgba(43, 199, 190, 0.2), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(223, 247, 245, 0.82));
}

.package-price {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(43, 199, 190, 0.12);
  color: var(--accent-deep);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.package-card p {
  min-height: 74px;
  font-size: 0.93rem;
}

.package-card ul {
  display: grid;
  gap: 11px;
  margin: 8px 0 24px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(16, 32, 43, 0.78);
  font-size: 0.9rem;
  line-height: 1.35;
}

.package-card li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: rgba(43, 199, 190, 0.14);
  color: var(--accent-deep);
  content: "\2713";
  font-size: 0.72rem;
  font-weight: 900;
}

.package-note {
  margin: 18px 0 0;
  color: rgba(93, 107, 117, 0.86);
  font-size: 0.9rem;
  text-align: center;
}

.process-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(223, 247, 245, 0.62)),
    radial-gradient(circle at 20% 80%, rgba(214, 168, 79, 0.1), transparent 28%);
}

.process-viewport {
  width: 100%;
  overflow: hidden;
}

.process-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 0 max(20px, calc((100vw - var(--container)) / 2)) 14px;
}

.process-card {
  position: relative;
  width: 362px;
  min-height: 0;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(43, 199, 190, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 64px rgba(21, 122, 117, 0.1);
  cursor: zoom-in;
  outline: 0;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease);
}

.process-card::after {
  position: absolute;
  top: 112px;
  right: -18px;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  box-shadow: 0 0 16px rgba(43, 199, 190, 0.45);
  content: "";
}

.process-card:last-child::after {
  display: none;
}

.process-card:hover,
.process-card.is-hovered,
.process-card:focus,
.process-card:focus-visible {
  border-color: rgba(43, 199, 190, 0.62);
  box-shadow: 0 0 0 1px rgba(43, 199, 190, 0.16), 0 30px 86px rgba(21, 122, 117, 0.18);
  transform: translateY(-4px);
}

.process-media {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid rgba(21, 122, 117, 0.12);
  background:
    radial-gradient(circle at 50% 22%, rgba(43, 199, 190, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 248, 246, 0.8));
}

.process-card img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  transition: filter 220ms var(--ease), transform 220ms var(--ease);
}

.process-card:hover img,
.process-card.is-hovered img,
.process-card:focus img,
.process-card:focus-visible img {
  filter: saturate(1.06) contrast(1.02);
}

.process-zoom-label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(132, 255, 248, 0.72);
  border-radius: 999px;
  background: rgba(4, 40, 42, 0.58);
  color: #b7fffb;
  padding: 9px 16px;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 10px rgba(43, 199, 190, 0.95), 0 0 22px rgba(43, 199, 190, 0.68);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 28px rgba(43, 199, 190, 0.58);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -42%) scale(0.94);
  transition: opacity 180ms var(--ease), transform 220ms var(--ease);
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.process-media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 50% 50%, rgba(43, 199, 190, 0.18), rgba(4, 40, 42, 0.18) 45%, transparent 72%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease);
}

.process-card:hover .process-media::after,
.process-card.is-hovered .process-media::after,
.process-card:focus .process-media::after,
.process-card:focus-visible .process-media::after,
.process-card:hover .process-zoom-label,
.process-card.is-hovered .process-zoom-label,
.process-card:focus .process-zoom-label,
.process-card:focus-visible .process-zoom-label {
  opacity: 1;
}

.process-card:hover .process-zoom-label,
.process-card.is-hovered .process-zoom-label,
.process-card:focus .process-zoom-label,
.process-card:focus-visible .process-zoom-label {
  transform: translate(-50%, -50%) scale(1);
}

.process-card h3,
.process-card p {
  padding-inline: 22px;
}

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

.step-number {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 4;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  background: rgba(7, 55, 55, 0.78);
  color: #a9fffa;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(43, 199, 190, 0.34);
  backdrop-filter: blur(10px);
}

.comfort-section {
  background: linear-gradient(180deg, rgba(223, 247, 245, 0.62), rgba(255, 255, 255, 0));
}

.comfort-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.comfort-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.trust-point-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.trust-point-list article {
  display: flex;
  min-height: 62px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  padding: 14px;
  box-shadow: 0 14px 34px rgba(16, 32, 43, 0.07);
}

.trust-point-list i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.trust-point-list span {
  color: var(--text-strong);
  font-weight: 900;
}

.comfort-mosaic {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 18px;
}

.comfort-mosaic figure {
  min-height: 250px;
  margin: 0;
}

.comfort-mosaic .wide {
  grid-column: 1 / -1;
  min-height: 320px;
}

.technology-section {
  background:
    radial-gradient(circle at 78% 10%, rgba(43, 199, 190, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(238, 244, 243, 0.62));
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(240px, 1fr);
  gap: 18px;
}

.editorial-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: #dcebea;
  box-shadow: var(--shadow-soft);
}

.editorial-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.editorial-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(5, 35, 36, 0.82));
  content: "";
}

.editorial-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 22px;
}

.editorial-card h3,
.editorial-card p {
  color: #ffffff;
}

.editorial-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.brand-story-section {
  background: linear-gradient(180deg, rgba(238, 244, 243, 0.62), rgba(255, 255, 255, 0));
}

.brand-story-layout {
  grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr);
}

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

.brand-collage-grid figure {
  min-height: 260px;
  margin: 0;
}

.brand-collage-grid .wide {
  grid-column: 1 / -1;
  min-height: 330px;
}

.review-faq-section {
  background:
    radial-gradient(circle at 14% 14%, rgba(242, 143, 126, 0.1), transparent 26%),
    radial-gradient(circle at 84% 28%, rgba(43, 199, 190, 0.12), transparent 30%);
}

.review-faq-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: start;
}

.testimonial-stack {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.testimonial-card {
  border-radius: var(--radius);
  padding: 22px;
}

.testimonial-card p {
  margin-bottom: 16px;
  color: rgba(16, 32, 43, 0.82);
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--text-strong);
}

.testimonial-card span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.stars {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--text-strong);
  padding: 16px 18px;
  text-align: left;
  font-weight: 900;
}

.faq-item button:focus-visible {
  outline: 3px solid rgba(43, 199, 190, 0.26);
  outline-offset: -3px;
}

.faq-item i {
  color: var(--accent-deep);
  transition: transform 180ms var(--ease);
}

.faq-item button[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 18px 18px;
}

.faq-answer p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.booking-section {
  --story-bg-image: url("../images/portfolio/wellcare-clinic/19_mobile_appointment_booking_closeup.png");
  --story-bg-position: 26% center;
  background: #071f20;
}

.booking-layout.background-story-layout {
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
}

.booking-section::after {
  background:
    linear-gradient(90deg, rgba(5, 31, 33, 0.74), rgba(5, 31, 33, 0.44) 42%, rgba(247, 248, 247, 0.72) 100%),
    linear-gradient(180deg, rgba(247, 248, 247, 0.08) 0%, rgba(223, 247, 245, 0.22) 70%, rgba(223, 247, 245, 0.88) 100%);
}

.booking-section .background-story-panel {
  max-width: 640px;
  width: 100%;
  min-width: 0;
}

.booking-floating-info .cute-info-card:nth-child(1) {
  left: 0;
  top: 13%;
  --float-rotate: 2.2deg;
}

.booking-floating-info .cute-info-card:nth-child(2) {
  right: 2%;
  top: 43%;
  --float-rotate: -2.4deg;
}

.booking-floating-info .cute-info-card:nth-child(3) {
  left: 12%;
  bottom: 8%;
  --float-rotate: 1.4deg;
}

.booking-media {
  min-height: 680px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  color: rgba(16, 32, 43, 0.74);
  font-size: 0.82rem;
  font-weight: 900;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(21, 122, 117, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text-strong);
  padding: 12px 14px;
  outline: 0;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease), background 160ms var(--ease);
}

.booking-form textarea {
  min-height: 112px;
  resize: vertical;
}

.booking-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent-deep) 50%), linear-gradient(135deg, var(--accent-deep) 50%, transparent 50%);
  background-position: calc(100% - 18px) 22px, calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(43, 199, 190, 0.72);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(43, 199, 190, 0.16);
}

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

.notes-field {
  opacity: 0.9;
}

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

.form-status {
  min-height: 24px;
  margin-bottom: 0;
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 900;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  align-items: center;
}

.final-cta img,
.final-cta-overlay {
  position: absolute;
  inset: 0;
}

.final-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-overlay {
  background:
    linear-gradient(90deg, rgba(7, 31, 32, 0.88) 0%, rgba(7, 31, 32, 0.66) 48%, rgba(7, 31, 32, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 31, 32, 0.08), rgba(7, 31, 32, 0.38));
}

.final-cta-copy {
  position: relative;
  z-index: 1;
}

.final-cta-copy h2 {
  max-width: 700px;
  color: #ffffff;
}

.final-cta-copy p {
  max-width: 570px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  padding: 58px 0 44px;
  border-top: 1px solid rgba(21, 122, 117, 0.14);
  background: #eff7f5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.16fr 0.68fr 0.9fr 0.9fr;
  gap: 34px;
}

.site-footer p {
  margin: 16px 0 0;
  font-size: 0.92rem;
}

.site-footer nav,
.site-footer address,
.footer-hours {
  display: grid;
  align-content: start;
  gap: 10px;
  font-style: normal;
}

.site-footer strong {
  color: var(--text-strong);
}

.site-footer a,
.site-footer span {
  color: rgba(16, 32, 43, 0.72);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-deep);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-social a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(43, 199, 190, 0.25);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
}

.mobile-cta-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 48;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: 1px solid rgba(43, 199, 190, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 54px rgba(16, 32, 43, 0.17);
  backdrop-filter: blur(18px);
}

.mobile-cta-bar a {
  display: grid;
  min-height: 54px;
  place-items: center;
  gap: 3px;
  color: var(--text-strong);
  font-size: 0.68rem;
  font-weight: 900;
  text-decoration: none;
}

.mobile-cta-bar a + a {
  border-left: 1px solid rgba(21, 122, 117, 0.12);
}

.mobile-cta-bar i {
  color: var(--accent-deep);
}

.process-lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 24px;
}

.process-lightbox[hidden] {
  display: none !important;
}

.process-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(43, 199, 190, 0.2), transparent 36%),
    rgba(5, 31, 33, 0.72);
  backdrop-filter: blur(18px);
}

.process-lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 40px));
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border: 1px solid rgba(132, 255, 248, 0.42);
  border-radius: var(--media-radius);
  background: rgba(246, 255, 254, 0.96);
  box-shadow: 0 34px 110px rgba(2, 38, 40, 0.36), 0 0 48px rgba(43, 199, 190, 0.3);
}

.process-lightbox-panel img {
  width: 100%;
  max-height: calc(100vh - 48px);
  object-fit: contain;
  background: linear-gradient(180deg, #f8ffff, #eef8f6);
}

.process-lightbox-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(132, 255, 248, 0.72);
  border-radius: 50%;
  background: rgba(5, 42, 43, 0.64);
  color: #b7fffb;
  box-shadow: 0 0 28px rgba(43, 199, 190, 0.42);
  backdrop-filter: blur(12px);
}

.process-lightbox-close:hover,
.process-lightbox-close:focus-visible {
  outline: 0;
  background: rgba(5, 42, 43, 0.82);
  color: #ffffff;
}

.js-ready .image-reveal {
  clip-path: inset(0 0 100% 0 round var(--media-radius));
}

.js-ready .image-reveal.is-visible,
.js-ready .image-reveal.is-visible-static {
  clip-path: inset(0 0 0% 0 round var(--media-radius));
}

.js-ready .reveal-card,
.js-ready .section-heading,
.js-ready .section-copy,
.js-ready .comfort-copy,
.js-ready .floating-info-cluster,
.js-ready .brand-story-copy,
.js-ready .background-story-panel,
.js-ready .booking-panel,
.js-ready .faq-panel,
.js-ready .testimonial-column,
.js-ready .site-footer {
  opacity: 0;
  transform: translateY(24px);
}

.js-ready .is-visible-static {
  opacity: 1;
  transform: none;
}

.split-line,
.split-word {
  display: inline-block;
}

@keyframes drawClinicMark {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes orbitOne {
  from {
    transform: rotate(0deg) translateX(52px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(52px) rotate(-360deg);
  }
}

@keyframes orbitTwo {
  from {
    transform: rotate(120deg) translateX(48px) rotate(-120deg);
  }
  to {
    transform: rotate(480deg) translateX(48px) rotate(-480deg);
  }
}

@keyframes orbitThree {
  from {
    transform: rotate(240deg) translateX(45px) rotate(-240deg);
  }
  to {
    transform: rotate(600deg) translateX(45px) rotate(-600deg);
  }
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 14px;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 940px) {
  body {
    padding-bottom: 78px;
  }

  .section {
    padding: 78px 0;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .site-header.is-open .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(21, 122, 117, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .site-header.is-open .nav-links a {
    min-height: 54px;
    border-bottom: 1px solid rgba(21, 122, 117, 0.1);
    padding: 16px 18px;
  }

  .site-header.is-open .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero-section {
    min-height: 86vh;
    padding: 132px 0 70px;
  }

  .hero-layout {
    min-height: auto;
  }

  .trust-grid,
  .background-story-layout,
  .booking-layout,
  .brand-story-layout,
  .review-faq-layout,
  .footer-grid,
  .comfort-layout {
    grid-template-columns: 1fr;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    padding: 24px;
  }

  .booking-layout.background-story-layout {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(21, 122, 117, 0.1);
    padding: 18px;
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .comfort-copy {
    position: static;
  }

  .background-story-section {
    min-height: auto;
    padding: 84px 0;
  }

  .background-story-layout {
    min-height: auto;
  }

  .background-story-panel {
    justify-self: stretch;
    max-width: none;
    width: 100%;
  }

  .floating-info-cluster {
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .floating-info-cluster .cute-info-card:nth-child(n) {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    transform: none !important;
    --float-x: 0px !important;
    --float-y: 0px !important;
    --float-drift: 0px !important;
    --float-rotate: 0deg !important;
  }

  .media-frame,
  .booking-media {
    min-height: 420px;
  }

  .floating-info-cluster {
    grid-template-columns: 1fr;
  }

  .process-viewport {
    overflow: visible;
  }

  .process-track {
    display: grid;
    width: min(var(--container), calc(100% - 40px));
    grid-template-columns: repeat(2, 1fr);
    margin-inline: auto;
    padding: 0;
  }

  .process-card {
    width: auto;
    min-height: 0;
  }

  .process-card::after {
    display: none;
  }

  .mobile-cta-bar {
    display: grid;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 66px 0;
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-mark svg {
    width: 23px;
    height: 23px;
  }

  .hero-section {
    min-height: 82vh;
    padding-top: 116px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 31, 32, 0.9), rgba(9, 48, 49, 0.62)),
      linear-gradient(180deg, rgba(247, 248, 247, 0), var(--bg) 96%);
  }

  .hero-copy {
    max-width: 355px;
  }

  .hero-copy h1 {
    font-size: 2.22rem;
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .hero-actions,
  .form-actions {
    display: grid;
  }

  .hero-actions .btn,
  .form-actions .btn {
    width: 100%;
  }

  .floating-chip {
    width: 100%;
    min-height: 48px;
  }

  .trust-strip {
    margin-top: 0;
    padding-bottom: 42px;
  }

  .service-grid,
  .package-panel,
  .mini-proof-grid,
  .comfort-mosaic,
  .brand-collage-grid,
  .floating-info-cluster,
  .booking-form,
  .process-track,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .comfort-mosaic .wide,
  .brand-collage-grid .wide {
    grid-column: auto;
  }

  .section-copy,
  .brand-story-copy,
  .background-story-panel,
  .booking-panel,
  .faq-panel,
  .package-card {
    padding: 22px;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  .background-story-section {
    padding: 68px 0;
  }

  .background-story-section::after {
    background:
      linear-gradient(180deg, rgba(5, 31, 33, 0.62), rgba(5, 31, 33, 0.46) 42%, rgba(247, 248, 247, 0.82) 100%),
      linear-gradient(180deg, rgba(247, 248, 247, 0), var(--bg) 100%);
  }

  .section-bg-layer {
    background-position: center;
  }

  .booking-section .section-bg-layer {
    background-position: 34% center;
  }

  .cute-info-card {
    min-height: 92px;
    transform: none !important;
    --float-x: 0px !important;
    --float-y: 0px !important;
    --float-drift: 0px !important;
    --float-rotate: 0deg !important;
  }

  .media-frame,
  .booking-media,
  .comfort-mosaic figure,
  .brand-collage-grid figure {
    min-height: 320px;
  }

  .service-card p,
  .package-card p {
    min-height: 0;
  }

  .package-tabs {
    width: 100%;
  }

  .package-tab {
    flex: 1;
    padding-inline: 10px;
  }

  .final-cta {
    min-height: 540px;
  }
}

@media (max-width: 440px) {
  .hero-copy {
    max-width: 330px;
  }

  .hero-copy h1 {
    font-size: 1.94rem;
  }

  .hero-subtitle {
    font-size: 0.91rem;
  }

  .section-label,
  .hero-eyebrow {
    font-size: 0.69rem;
  }
}

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

  .hero-media img,
  .section-bg-layer,
  .cute-info-card,
  .service-card img,
  .btn,
  .package-card {
    transform: none !important;
  }
}
