:root {
  --cyan: #00b8d4;
  --cyan-dark: #00798e;
  --cyan-soft: #dff9fc;
  --cobalt: #1a237e;
  --cobalt-deep: #111752;
  --cobalt-ink: #0b103c;
  --gold: #c9a84c;
  --gold-light: #e7d18f;
  --gold-pale: #fbf6e8;
  --green: #25d366;
  --green-dark: #075e54;
  --background: #f9fafb;
  --surface: #ffffff;
  --surface-soft: #f2f6fa;
  --ink: #11142d;
  --muted: #5f6477;
  --line: #dfe3eb;
  --white: #ffffff;
  --danger: #b42318;
  --success: #12753e;
  --shadow-sm: 0 10px 35px rgba(17, 23, 82, 0.08);
  --shadow-md: 0 22px 65px rgba(17, 23, 82, 0.14);
  --shadow-lg: 0 32px 90px rgba(7, 11, 52, 0.28);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 40px));
  --header-height: 88px;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

address {
  font-style: normal;
}

::selection {
  color: var(--white);
  background: var(--cobalt);
}

:focus-visible {
  outline: 3px solid var(--cyan-dark);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--cobalt);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  box-shadow: 0 0 12px rgba(0, 184, 212, 0.55);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  background: var(--gold);
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

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

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.founder-copy h2,
.booking-copy h2,
.contact-copy h2,
.faq-heading h2 {
  margin-bottom: 22px;
  color: var(--cobalt-deep);
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 5vw, 4.15rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 em,
h2 em,
h3 em {
  color: var(--cyan-dark);
  font-style: italic;
  font-weight: 500;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading--center > p:last-child {
  margin-inline: auto;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 24px;
  overflow: hidden;
  color: var(--white);
  background: var(--cobalt);
  border: 1px solid var(--cobalt);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.button:hover {
  background: var(--cobalt-deep);
  border-color: var(--cobalt-deep);
  box-shadow: 0 14px 28px rgba(26, 35, 126, 0.25);
  transform: translateY(-3px);
}

.button--small {
  min-height: 46px;
  padding: 11px 20px;
  font-size: 13px;
}

.button--light {
  color: var(--cobalt-deep);
  background: var(--white);
  border-color: var(--white);
}

.button--light:hover {
  color: var(--cobalt-deep);
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  background: rgba(0, 184, 212, 0.22);
  border-color: var(--cyan);
}

.button--gold {
  color: var(--cobalt-ink);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button--gold:hover {
  color: var(--cobalt-ink);
  background: var(--gold);
  border-color: var(--gold);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--cobalt);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.text-link span,
.button span,
.service-book span {
  transition: transform var(--transition);
}

.text-link:hover span,
.button:hover span,
.service-book:hover span {
  transform: translateX(4px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 3px;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  transition: height var(--transition), color var(--transition), background var(--transition), box-shadow var(--transition), -webkit-backdrop-filter var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled,
.site-header.menu-visible {
  height: 76px;
  color: var(--cobalt-deep);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 36px rgba(17, 23, 82, 0.09);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-logo {
  width: auto;
  height: 50px;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.site-header.is-scrolled .brand-logo,
.site-header.menu-visible .brand-logo {
  height: 50px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.primary-nav > a:not(.button) {
  position: relative;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header:not(.is-scrolled):not(.menu-visible) .nav-cta {
  color: var(--cobalt-deep);
  background: var(--white);
  border-color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 23px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span:first-child { transform: translateY(-7px); }
.menu-toggle span:last-child { transform: translateY(7px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--cobalt-deep);
}

.hero-video,
.hero-fallback,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: 0;
  object-fit: cover;
}

.hero-fallback {
  z-index: -1;
  background: var(--cobalt-deep) url("assets/images/hero-fallback.jpg") center / cover no-repeat;
}

.hero.hero--static .hero-fallback {
  z-index: 0;
}

.hero.hero--static .hero-video {
  display: none;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 15, 60, 0.82) 0%, rgba(16, 22, 78, 0.66) 45%, rgba(26, 35, 126, 0.3) 100%),
    linear-gradient(180deg, rgba(7, 10, 40, 0.12) 55%, rgba(7, 10, 40, 0.7) 100%);
}

.hero::after {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow--one {
  top: 18%;
  right: -10vw;
  width: 42vw;
  height: 42vw;
  box-shadow: inset 0 0 100px rgba(0, 184, 212, 0.07);
}

.hero-glow--two {
  right: 12vw;
  bottom: -18vw;
  width: 31vw;
  height: 31vw;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.65fr);
  align-items: end;
  gap: clamp(56px, 8vw, 116px);
  padding-top: calc(var(--header-height) + 88px);
  padding-bottom: 92px;
}

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

.hero h1 {
  max-width: 850px;
  margin-bottom: 27px;
  font-family: var(--font-display);
  font-size: clamp(3.35rem, 6.5vw, 5.45rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-wrap: balance;
}

.hero h1 em {
  display: block;
  color: var(--gold-light);
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 33px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.75;
}

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

.hero-trust {
  padding: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  box-shadow: 0 22px 70px rgba(4, 8, 35, 0.28);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.hero-trust__label {
  margin-bottom: 15px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-trust ul {
  display: grid;
  gap: 11px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.45;
}

.hero-trust li > span {
  display: grid;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--cobalt-deep);
  background: var(--gold-light);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.hero-call {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-call span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.hero-call strong {
  color: var(--white);
  font-size: 14px;
}

.hero-scroll {
  position: absolute;
  z-index: 4;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll span {
  position: relative;
  width: 1px;
  height: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.hero-scroll span::after {
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

.credibility-strip {
  position: relative;
  z-index: 4;
  color: var(--white);
  background: var(--cobalt);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.credibility-strip .shell {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  text-align: center;
}

.credibility-strip p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.credibility-strip b {
  margin-inline: 10px;
  color: var(--gold-light);
}

.services {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(0, 184, 212, 0.08), transparent 28%),
    var(--background);
}

.services::after {
  position: absolute;
  z-index: 0;
  top: 90px;
  right: -170px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(26, 35, 126, 0.07);
  border-radius: 50%;
  content: "";
}

.services .shell {
  position: relative;
  z-index: 1;
}

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

.service-card {
  min-height: 365px;
  perspective: 1200px;
}

.service-card--wide {
  grid-column: 2;
}

.service-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 365px;
  transform-style: preserve-3d;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.service-card.is-flipped .service-card__inner {
  transform: rotateY(180deg);
}

.service-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 31px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  backface-visibility: hidden;
}

.service-card__face::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle at 100% 100%, rgba(0, 184, 212, 0.14), transparent 70%);
  content: "";
}

.service-icon {
  width: 51px;
  height: 51px;
  margin-bottom: 25px;
  fill: none;
  stroke: var(--cyan-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(26, 35, 126, 0.2);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}

.service-card h3 {
  margin-bottom: 13px;
  color: var(--cobalt-deep);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.service-card__front p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-card__trigger {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding: 7px 0;
  color: var(--cyan-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.service-card__back {
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(0, 184, 212, 0.35), transparent 40%),
    var(--cobalt-deep);
  border-color: rgba(255, 255, 255, 0.12);
  transform: rotateY(180deg);
}

.service-card__back .service-icon {
  margin-bottom: 18px;
  stroke: var(--gold-light);
}

.service-card__back h3 {
  margin-bottom: 24px;
  color: var(--white);
}

.service-card__kicker {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-book {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 10px 19px;
  color: var(--cobalt-deep);
  background: var(--gold-light);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.72;
}

.standard {
  background: var(--surface);
}

.standard-shell > .section-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 50px;
  align-items: end;
}

.standard-shell > .section-heading .eyebrow,
.standard-shell > .section-heading h2 {
  grid-column: 1;
}

.standard-shell > .section-heading h2 {
  margin-bottom: 0;
}

.standard-shell > .section-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  padding-left: 27px;
  border-left: 2px solid var(--gold);
}

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

.standard-card {
  position: relative;
  padding: 39px;
  overflow: hidden;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.standard-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.standard-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--cobalt);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}

.standard-card__top > p {
  margin: 0;
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.standard-card h3 {
  margin-bottom: 13px;
  color: var(--cobalt-deep);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
}

.standard-card > p,
.standard-card__content > p {
  color: var(--muted);
  font-size: 14px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 19px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 23px;
  color: #454a5c;
  font-size: 12.5px;
  line-height: 1.55;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--cyan-dark);
  content: "✓";
  font-weight: 800;
}

.standard-card--cobalt {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 184, 212, 0.3), transparent 38%),
    var(--cobalt-deep);
  border-color: var(--cobalt-deep);
}

.standard-card--cobalt .standard-icon {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.standard-card--cobalt h3,
.standard-card--cobalt > p,
.standard-card--cobalt .check-list li {
  color: var(--white);
}

.standard-card--cobalt > p,
.standard-card--cobalt .check-list li {
  color: rgba(255, 255, 255, 0.76);
}

.standard-card--cobalt .check-list {
  border-color: rgba(255, 255, 255, 0.15);
}

.standard-card--cobalt .check-list li::before {
  color: var(--gold-light);
}

.standard-card--image {
  display: grid;
  min-height: 510px;
  grid-template-columns: 0.8fr 1fr;
  grid-column: 1 / -1;
  padding: 0;
  background: var(--white);
}

.standard-card__image {
  min-height: 430px;
  background: var(--surface-soft) url("assets/images/clinic-reception.webp") center 52% / cover no-repeat;
}

.standard-card__content {
  padding: 46px;
  align-self: center;
}

.founder {
  padding-bottom: 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 5% 15%, rgba(0, 184, 212, 0.18), transparent 25%),
    radial-gradient(circle at 95% 80%, rgba(201, 168, 76, 0.12), transparent 25%),
    var(--cobalt-ink);
}

.founder::before {
  position: absolute;
  top: 0;
  right: 7%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.12), transparent);
  content: "";
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.founder-portrait {
  position: relative;
  max-width: 470px;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 220px 220px 26px 26px;
  box-shadow: var(--shadow-lg);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 11, 52, 0.68));
  content: "";
}

.portrait-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.portrait-caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.portrait-caption p {
  margin: 0 0 2px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
}

.portrait-caption span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.experience-seal {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: -40px;
  display: grid;
  width: 116px;
  height: 116px;
  place-content: center;
  color: var(--cobalt-deep);
  background: var(--gold-light);
  border: 6px solid var(--cobalt-ink);
  border-radius: 50%;
  text-align: center;
}

.experience-seal strong {
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 0.85;
}

.experience-seal span {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.founder-copy {
  max-width: 650px;
  padding-bottom: 12px;
}

.founder-copy h2 {
  color: var(--white);
}

.founder-copy h2 em {
  color: var(--gold-light);
}

.founder-lead {
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-copy > p:not(.eyebrow):not(.founder-lead) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.75;
}

.founder-copy blockquote {
  margin: 28px 0 0;
  padding: 0 0 0 24px;
  color: var(--white);
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  line-height: 1.3;
}

.resident-team {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  margin-top: 100px;
  padding: 52px 64px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.resident-team .eyebrow {
  margin-bottom: 13px;
}

.resident-team h3 {
  margin: 0;
  color: var(--cobalt-deep);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  line-height: 1;
}

.resident-team > div:last-child p {
  color: var(--muted);
  font-size: 14px;
}

.testimonials {
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 184, 212, 0.06), transparent 42%),
    var(--background);
}

.testimonial-shell {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 70px;
}

.testimonial-viewport {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.testimonial-track {
  display: flex;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.testimonial-track[data-index="0"] { transform: translateX(0); }
.testimonial-track[data-index="1"] { transform: translateX(-100%); }
.testimonial-track[data-index="2"] { transform: translateX(-200%); }
.testimonial-track[data-index="3"] { transform: translateX(-300%); }

.testimonial-slide {
  display: flex;
  min-width: 100%;
  min-height: 400px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 7vw, 72px);
  text-align: center;
}

.stars {
  margin-bottom: 25px;
  color: #8a6814;
  font-size: 17px;
  letter-spacing: 0.3em;
}

.testimonial-slide blockquote {
  margin: 0 auto 30px;
  color: var(--cobalt-deep);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-style: italic;
  line-height: 1.28;
}

.testimonial-slide footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.testimonial-slide footer > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--cobalt);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.testimonial-slide footer p {
  display: grid;
  margin: 0;
  text-align: left;
}

.testimonial-slide footer strong {
  color: var(--ink);
  font-size: 13px;
}

.testimonial-slide footer small {
  color: var(--muted);
  font-size: 11px;
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--cobalt);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.carousel-arrow:hover {
  color: var(--white);
  background: var(--cobalt);
  transform: translateY(-50%) scale(1.06);
}

.carousel-arrow--prev { left: 0; }
.carousel-arrow--next { right: 0; }

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 28px;
}

.carousel-dots button {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dots button::before {
  width: 8px;
  height: 8px;
  background: #858a9b;
  border-radius: 999px;
  content: "";
  transition: width var(--transition), background var(--transition);
}

.carousel-dots button[aria-current="true"]::before {
  width: 22px;
  background: var(--cobalt);
}

.carousel-toggle {
  display: block;
  min-height: 44px;
  margin: 5px auto 0;
  padding: 8px 13px;
  color: var(--cobalt);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--cyan-dark);
  text-underline-offset: 4px;
}

.testimonial-note {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.booking {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(7, 11, 52, 0.25), transparent 65%),
    var(--cobalt);
}

.booking-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.booking-shape--one {
  top: -270px;
  right: -180px;
  width: 650px;
  height: 650px;
}

.booking-shape--two {
  bottom: -350px;
  left: -270px;
  width: 700px;
  height: 700px;
}

.booking-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1fr);
  align-items: start;
  gap: clamp(54px, 8vw, 110px);
}

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

.booking-copy h2 {
  color: var(--white);
}

.booking-copy h2 em {
  color: var(--gold-light);
}

.booking-intro {
  max-width: 470px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.booking-benefits {
  display: grid;
  gap: 17px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.booking-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.booking-benefits li > span {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--cobalt-deep);
  background: var(--gold-light);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.booking-benefits p {
  display: grid;
  margin: 0;
}

.booking-benefits strong {
  font-size: 14px;
}

.booking-benefits small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.direct-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.direct-contact a {
  display: grid;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition);
}

.direct-contact__wide {
  grid-column: 1 / -1;
}

.direct-contact a:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.direct-contact span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.direct-contact strong {
  color: var(--white);
  font-size: 13px;
}

.booking-card {
  padding: clamp(28px, 5vw, 48px);
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.booking-card__heading {
  margin-bottom: 30px;
}

.booking-card__heading > span {
  color: var(--cyan-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-card__heading h3 {
  margin: 4px 0 6px;
  color: var(--cobalt-deep);
  font-family: var(--font-display);
  font-size: 35px;
  line-height: 1.1;
}

.booking-card__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

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

.field label {
  margin-bottom: 6px;
  color: #303448;
  font-size: 11px;
  font-weight: 700;
}

.field label > span {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 49px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--background);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field textarea {
  min-height: 90px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--cyan-dark);
  box-shadow: 0 0 0 4px rgba(0, 140, 164, 0.12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-error {
  min-height: 18px;
  margin-top: 3px;
  color: var(--danger);
  font-size: 10px;
  line-height: 1.45;
}

.field-help {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9.5px;
  line-height: 1.4;
}

.field--honeypot {
  position: absolute;
  left: -9999px;
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 10px;
  align-items: start;
}

.consent-field input {
  width: 19px;
  min-height: 19px;
  margin: 2px 0 0;
  accent-color: var(--cobalt);
}

.consent-field label {
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}

.consent-field .field-error {
  grid-column: 2;
}

.form-submit {
  width: 100%;
  margin-top: 22px;
}

.form-security-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 9.5px;
  line-height: 1.5;
  text-align: center;
}

.form-noscript {
  margin: 12px 0 0;
  padding: 10px 12px;
  color: var(--danger);
  background: #fff1f0;
  border-radius: 8px;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.form-status {
  min-height: 20px;
  margin-top: 6px;
  color: var(--danger);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
}

.booking-handoff {
  min-height: 480px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.booking-handoff:not([hidden]) {
  display: flex;
}

.handoff-check {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--white);
  background: var(--success);
  border-radius: 50%;
  font-size: 26px;
}

.booking-handoff h3 {
  margin-bottom: 12px;
  color: var(--cobalt-deep);
  font-family: var(--font-display);
  font-size: 36px;
}

.booking-handoff > p {
  max-width: 430px;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 14px;
}

.text-button {
  min-height: 44px;
  margin-top: 12px;
  padding: 8px 14px;
  color: var(--cobalt);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq {
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.63fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.faq-heading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.faq-heading > p:last-of-type {
  margin-bottom: 22px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  width: 100%;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0;
  color: var(--cobalt-deep);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.accordion-item button span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.accordion-item button i {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion-item button i::before,
.accordion-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--cobalt);
  content: "";
  transition: transform var(--transition);
  transform: translate(-50%, -50%);
}

.accordion-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item button[aria-expanded="true"] i {
  background: var(--cobalt);
  border-color: var(--cobalt);
}

.accordion-item button[aria-expanded="true"] i::before,
.accordion-item button[aria-expanded="true"] i::after {
  background: var(--white);
}

.accordion-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 340ms ease;
}

.accordion-panel[hidden] {
  display: none;
}

.accordion-panel.is-collapsed {
  grid-template-rows: 0fr;
}

.accordion-panel > div {
  overflow: hidden;
}

.accordion-panel p {
  max-width: 660px;
  margin: 0;
  padding: 0 45px 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  padding: 0 0 112px;
  background: var(--surface);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  min-height: 510px;
  overflow: hidden;
  background: var(--gold-pale);
  border: 1px solid #eee3c6;
  border-radius: var(--radius-lg);
}

.contact-map {
  position: relative;
  overflow: hidden;
  background-color: #e6edf2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.52) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.52) 2px, transparent 2px),
    linear-gradient(rgba(26, 35, 126, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 35, 126, 0.05) 1px, transparent 1px);
  background-position: -2px -2px;
  background-size: 74px 74px, 74px 74px, 22px 22px, 22px 22px;
}

.contact-map::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(0, 184, 212, 0.15), transparent 22%),
    radial-gradient(circle at 80% 75%, rgba(26, 35, 126, 0.1), transparent 25%);
  content: "";
}

.map-pin {
  position: absolute;
  z-index: 3;
  top: 46%;
  left: 51%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--cobalt);
  border: 6px solid var(--white);
  border-radius: 50% 50% 50% 8px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin::after {
  content: "A";
  font-size: 24px;
  transform: rotate(45deg);
}

.map-pin {
  font-size: 0;
}

.map-road {
  position: absolute;
  z-index: 2;
  height: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 35, 126, 0.08);
  border-radius: 20px;
}

.map-road--one { top: 24%; left: -10%; width: 130%; transform: rotate(-14deg); }
.map-road--two { top: 64%; left: -10%; width: 125%; transform: rotate(18deg); }
.map-road--three { top: -10%; left: 33%; width: 16px; height: 120%; transform: rotate(8deg); }

.contact-copy {
  padding: clamp(45px, 7vw, 82px);
  align-self: center;
}

.contact-copy h2 {
  font-size: clamp(2.45rem, 4.3vw, 3.7rem);
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-copy address {
  display: grid;
  margin: 25px 0;
  padding-left: 18px;
  color: var(--cobalt-deep);
  border-left: 2px solid var(--gold);
  font-weight: 700;
  line-height: 1.45;
}

.contact-copy address span:last-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
}

.site-footer {
  padding: 82px 0 0;
  color: var(--white);
  background: var(--cobalt-ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 1fr 0.95fr;
  gap: 54px;
  padding-bottom: 65px;
}

.brand--footer {
  margin-bottom: 20px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.brand--footer .brand-logo {
  height: 112px;
}

.footer-brand > p {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  line-height: 1.35;
}

.social-links {
  display: flex;
  gap: 9px;
  margin-top: 25px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.social-links a:hover {
  color: var(--cobalt-deep);
  background: var(--cyan);
  transform: translateY(-3px);
}

.footer-grid h2 {
  margin-bottom: 22px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-contact address,
.footer-hours dl,
.footer-hours > p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.footer-links a,
.footer-contact a {
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
}

.footer-hours dl {
  display: grid;
  gap: 9px;
  margin: 0 0 20px;
}

.footer-hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-hours dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  white-space: nowrap;
}

.footer-hours > p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 40px;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  line-height: 1.5;
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  z-index: 80;
  right: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(4, 40, 21, 0.3);
}

.whatsapp-float {
  bottom: 22px;
  color: var(--white);
  background: var(--green-dark);
  animation: whatsapp-pulse 3s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 28px;
  fill: currentColor;
}

.whatsapp-float::before {
  position: absolute;
  right: calc(100% + 10px);
  width: max-content;
  padding: 7px 10px;
  color: var(--white);
  background: var(--cobalt-ink);
  border-radius: 7px;
  content: attr(data-tooltip);
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity var(--transition), transform var(--transition);
}

.whatsapp-float:hover::before,
.whatsapp-float:focus-visible::before {
  opacity: 1;
  transform: translateX(0);
}

@keyframes whatsapp-pulse {
  0%, 70%, 100% { box-shadow: 0 10px 28px rgba(4, 40, 21, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.35); }
  84% { box-shadow: 0 10px 28px rgba(4, 40, 21, 0.3), 0 0 0 12px rgba(37, 211, 102, 0); }
}

.back-to-top {
  bottom: 86px;
  color: var(--cobalt);
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), color var(--transition), background var(--transition);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  color: var(--white);
  background: var(--cobalt);
}

.offer-dialog {
  width: min(760px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 120px rgba(4, 7, 31, 0.5);
}

.offer-dialog[open] {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  animation: dialog-in 280ms ease both;
}

.offer-dialog::backdrop {
  background: rgba(7, 11, 52, 0.68);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.offer-art {
  display: grid;
  min-height: 390px;
  place-content: center;
  color: var(--white);
  background:
    radial-gradient(circle at 25% 20%, rgba(0, 184, 212, 0.55), transparent 35%),
    var(--cobalt-deep);
  text-align: center;
}

.offer-art span {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.offer-art small {
  margin-top: 20px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.offer-copy {
  position: relative;
  padding: 55px 48px;
  align-self: center;
}

.offer-copy h2 {
  margin-bottom: 17px;
  color: var(--cobalt-deep);
  font-family: var(--font-display);
  font-size: 39px;
  line-height: 1;
}

.offer-copy > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.offer-copy > small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 9px;
}

.dialog-close {
  position: absolute;
  top: 17px;
  right: 17px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--cobalt-deep);
  background: var(--surface-soft);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

@media (max-width: 1100px) {
  :root { --shell: min(100% - 48px, 1020px); }

  .primary-nav { gap: 16px; }
  .primary-nav > a:not(.button) { font-size: 12px; }
  .hero-content { grid-template-columns: 1fr 310px; gap: 45px; }
  .hero h1 { font-size: clamp(3.2rem, 6vw, 4.8rem); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card--wide { grid-column: 1 / -1; width: calc(50% - 11px); justify-self: center; }
  .booking-layout { grid-template-columns: minmax(0, 0.7fr) minmax(440px, 1fr); gap: 54px; }
  .footer-grid { grid-template-columns: 1.2fr 0.7fr 1fr; }
  .footer-hours { grid-column: 3; }
}

@media (max-width: 900px) {
  :root { --header-height: 76px; }
  .section { padding: 90px 0; }
  .menu-toggle { display: flex; }

  .primary-nav {
    position: fixed;
    z-index: -1;
    top: 75px;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100svh - 75px);
    align-content: start;
    gap: 0;
    padding: 18px 24px 30px;
    overflow: auto;
    color: var(--cobalt-deep);
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(17, 23, 82, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity var(--transition), transform var(--transition);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav > a:not(.button) {
    min-height: 50px;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .nav-cta { margin-top: 18px; }
  .site-header:not(.is-scrolled):not(.menu-visible) .menu-toggle { color: var(--white); }

  .hero { min-height: 830px; }
  .hero-content { grid-template-columns: 1fr; align-items: center; gap: 32px; padding-top: 145px; padding-bottom: 85px; }
  .hero-copy { max-width: 760px; }
  .hero-trust { max-width: 580px; }
  .hero-scroll { display: none; }
  .hero-overlay { background: linear-gradient(90deg, rgba(10, 15, 60, 0.86), rgba(16, 22, 78, 0.58)), linear-gradient(180deg, transparent 50%, rgba(7, 10, 40, 0.6)); }

  .standard-shell > .section-heading { display: block; }
  .standard-shell > .section-heading > p:last-child { margin-top: 25px; padding-left: 20px; }

  .founder-layout { grid-template-columns: 0.8fr 1fr; gap: 58px; }
  .experience-seal { right: -22px; width: 100px; height: 100px; }
  .resident-team { gap: 45px; padding: 45px; }

  .booking-layout { grid-template-columns: 1fr; }
  .booking-copy { position: static; }
  .booking-copy > * { max-width: 680px; }
  .direct-contact { max-width: 460px; }

  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-heading { position: static; max-width: 680px; }
  .contact-card { grid-template-columns: 0.72fr 1fr; }
  .contact-copy { padding: 50px 40px; }
}

@media (max-width: 767px) {
  :root { --shell: min(100% - 32px, 660px); }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 42px; }

  .hero { min-height: auto; }
  .hero-video { display: none; }
  .hero-fallback { z-index: 0; }
  .hero-overlay { background: linear-gradient(180deg, rgba(10, 15, 60, 0.72), rgba(10, 15, 60, 0.9)); }
  .hero-content { min-height: 100svh; grid-template-columns: 1fr; gap: 27px; padding-top: 124px; padding-bottom: 62px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.4rem); line-height: 0.93; }
  .hero-subtitle { font-size: 15px; line-height: 1.65; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-trust { padding: 22px; }
  .hero-call { flex-wrap: wrap; }

  .credibility-strip .shell { min-height: 96px; gap: 10px; }
  .credibility-strip p { font-size: 11px; line-height: 1.55; }
  .credibility-strip b { margin-inline: 4px; }

  .service-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card__inner { min-height: 0; }
  .service-card--wide { grid-column: auto; width: auto; }
  .service-card__inner { display: grid; transform: none !important; transform-style: flat; }
  .service-card__face { position: relative; inset: auto; min-height: 0; backface-visibility: visible; }
  .service-card__front { border-radius: var(--radius-md) var(--radius-md) 0 0; box-shadow: var(--shadow-sm); }
  .service-card__front p { margin-bottom: 0; }
  .service-card__trigger { display: none; }
  .service-card__back { min-height: 86px; flex-direction: row; justify-content: space-between; gap: 15px; padding: 20px 26px; border-radius: 0 0 var(--radius-md) var(--radius-md); transform: none; text-align: left; }
  .service-card__back .service-icon,
  .service-card__back .service-card__kicker { display: none; }
  .service-card__back h3 { display: none; }
  .service-book { width: 100%; justify-content: space-between; color: var(--white); background: transparent; padding: 0; }

  .standard-grid { grid-template-columns: 1fr; }
  .standard-card { padding: 30px; }
  .standard-card--image { min-height: 0; grid-template-columns: 1fr; grid-column: auto; padding: 0; }
  .standard-card__image { min-height: 310px; }
  .standard-card__content { padding: 30px; }

  .founder-layout { grid-template-columns: 1fr; }
  .founder-portrait { max-width: 430px; margin-inline: auto; }
  .experience-seal { right: -7px; }
  .founder-copy { padding-top: 10px; }
  .resident-team { grid-template-columns: 1fr; gap: 28px; margin-top: 72px; padding: 34px 28px; }

  .testimonial-shell { padding-inline: 0; }
  .testimonial-slide { min-height: 430px; padding: 34px 25px; }
  .carousel-arrow { top: auto; bottom: -2px; width: 42px; height: 42px; transform: none; }
  .carousel-arrow:hover { transform: scale(1.04); }
  .carousel-arrow--prev { left: 12px; }
  .carousel-arrow--next { right: 12px; }
  .carousel-dots { min-height: 42px; }

  .booking-card { border-radius: var(--radius-md); }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .direct-contact { grid-template-columns: 1fr; }

  .accordion-item button { min-height: 74px; }
  .accordion-item button span { font-size: 20px; }
  .accordion-panel p { padding-right: 0; }

  .contact { padding-bottom: 78px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-map { min-height: 290px; }
  .contact-copy { padding: 40px 28px; }

  .site-footer { padding-top: 64px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 45px 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-hours { grid-column: auto; }
  .footer-bottom { grid-template-columns: 1fr; gap: 12px; }

  .offer-dialog[open] { grid-template-columns: 1fr; }
  .offer-art { min-height: 150px; }
  .offer-art span { font-size: 70px; }
  .offer-art small { margin-top: 12px; }
  .offer-copy { padding: 42px 28px; }
  .offer-copy h2 { font-size: 34px; }

  .whatsapp-float,
  .back-to-top { right: 15px; width: 50px; height: 50px; }
  .whatsapp-float { bottom: 15px; }
  .back-to-top { bottom: 76px; }
  .whatsapp-float::before { display: none; }
}

@media (max-width: 420px) {
  :root { --shell: calc(100% - 26px); }
  .brand { padding: 0; }
  .brand-logo { height: 50px; }
  .site-header.is-scrolled .brand-logo,
  .site-header.menu-visible .brand-logo { height: 50px; }
  .brand--footer .brand-logo { height: 92px; }
  .hero-content { padding-top: 112px; }
  .hero h1 { font-size: 2.85rem; }
  .hero-trust li { font-size: 12px; }
  .service-card__face { padding: 25px; }
  .standard-card { padding: 25px; }
  .standard-card__content { padding: 26px; }
  .experience-seal { width: 88px; height: 88px; border-width: 4px; }
  .experience-seal strong { font-size: 28px; }
  .resident-team { padding: 31px 22px; }
  .booking-card { padding: 25px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero-video { display: none; }
  .hero-fallback { z-index: 0; }
}

@media (forced-colors: active) {
  .button,
  .service-card,
  .standard-card,
  .booking-card { border: 1px solid ButtonText; }
}
