:root {
  --color-bg: #f3f6fb;
  --color-surface: #ffffff;
  --color-surface-soft: rgba(255, 255, 255, 0.78);
  --color-surface-strong: #0d1b2a;
  --color-surface-deep: #09131e;
  --color-surface-alt: #10263b;
  --color-text: #16283d;
  --color-text-soft: #5d6d80;
  --color-border: #d8e1ec;
  --color-accent: #b11e2f;
  --color-accent-strong: #8d1625;
  --color-accent-soft: rgba(177, 30, 47, 0.12);
  --color-gold: #d6a11b;
  --shadow-lg: 0 28px 70px rgba(8, 23, 37, 0.14);
  --shadow-md: 0 20px 44px rgba(8, 23, 37, 0.09);
  --shadow-sm: 0 12px 28px rgba(8, 23, 37, 0.06);
  --radius-sm: 0.95rem;
  --radius-md: 1.4rem;
  --radius-lg: 2rem;
  --radius-xl: 2.4rem;
  --container: 1120px;
  --header-height: clamp(3.7rem, 10vw, 4.1rem);
  --font-sans: "DM Sans", "Segoe UI", sans-serif;
  --font-serif: "Libre Baskerville", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 0.9rem);
  background: #08111b;
}

section[id],
#resenas,
#final-cta {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(177, 30, 47, 0.1), transparent 20rem),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 16rem),
    linear-gradient(180deg, #08111b 0rem, #0b1826 20rem, #10263b 29rem, #edf3fa 41rem, #f8fafc 58rem, #f3f6fb 100%);
  line-height: 1.6;
  padding-bottom: calc(5.35rem + env(safe-area-inset-bottom, 0px));
}

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

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

button {
  font: inherit;
}

p {
  margin-top: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-surface-strong);
  color: var(--color-surface);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.75rem 0;
}

.eyebrow {
  margin: 0 0 clamp(0.65rem, 2vw, 0.9rem);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: clamp(0.7rem, 0.66rem + 0.24vw, 0.76rem);
  font-weight: 700;
}

.section-heading {
  max-width: 47rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.hero h1,
.hero-card h2,
.cta-banner h2 {
  margin: 0;
  font-family: var(--font-serif);
  line-height: 1.14;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  margin-bottom: 1rem;
}

.section-heading p:last-child {
  color: var(--color-text-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: linear-gradient(180deg, rgba(8, 18, 30, 0.9), rgba(8, 18, 30, 0.82));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 26px rgba(3, 9, 16, 0.12);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(8, 18, 30, 0.9), rgba(8, 18, 30, 0.82));
  box-shadow: 0 14px 34px rgba(3, 9, 16, 0.18);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.header-shell,
.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.65rem, 2.2vw, 1rem);
  min-height: var(--header-height);
}

.brand {
  display: inline-grid;
  align-items: center;
  justify-items: start;
  min-width: 0;
  flex: 0 0 auto;
  position: relative;
  padding-inline: 0.2rem 0.55rem;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(2.15rem, 5.8vw, 2.45rem);
  max-width: none;
}

.brand-logo-dark {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo-light {
  opacity: 1;
}

.site-header.is-scrolled .brand-logo-dark {
  opacity: 0;
}

.brand-logo-light,
.brand-logo-dark {
  grid-area: 1 / 1;
  transition: opacity 180ms ease;
}

.site-nav {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible,
.text-link:focus-visible,
.site-nav a:focus-visible {
  outline: 2px solid rgba(177, 30, 47, 0.35);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, #c32639, #8d1625);
  color: var(--color-surface);
  box-shadow: 0 16px 30px rgba(177, 30, 47, 0.22);
}

.button-secondary {
  background: rgba(13, 27, 42, 0.04);
  color: var(--color-surface-strong);
  border-color: rgba(13, 27, 42, 0.1);
}

.button-header {
  min-height: clamp(2.25rem, 6.8vw, 2.55rem);
  padding: 0.68rem clamp(0.95rem, 3.2vw, 1.25rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.94));
  color: var(--color-surface-strong);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 12px 26px rgba(4, 10, 18, 0.12);
  font-size: clamp(0.88rem, 0.84rem + 0.22vw, 0.96rem);
  font-weight: 700;
}

.button-header:hover,
.button-header:focus-visible {
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(4, 10, 18, 0.16);
}

.hero .button-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, rgba(41, 88, 138, 0.96), rgba(18, 47, 82, 0.96));
  color: rgba(247, 250, 255, 0.98);
  border-color: rgba(174, 209, 244, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 28px rgba(5, 16, 28, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.site-header.is-scrolled .button-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.96));
  color: var(--color-surface-strong);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 28px rgba(4, 10, 18, 0.16);
}

.header-cta {
  display: none;
}

.hero {
  position: relative;
  padding-top: clamp(2rem, 6vw, 2.2rem);
  padding-bottom: 2.2rem;
  background:
    linear-gradient(180deg, rgba(6, 15, 24, 0.12), rgba(6, 15, 24, 0)),
    radial-gradient(circle at 18% 18%, rgba(177, 30, 47, 0.18), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(135deg, #0e2438 0%, #0b1826 42%, #08111b 100%);
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.03)),
    url("assets/logo/watermark-isotype.png") right -5rem top 2rem / min(34rem, 76vw) no-repeat;
  opacity: 0.045;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.05), transparent 18rem),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.045), transparent 13rem),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.018) 0.04rem, transparent 0.06rem);
  background-size: auto, auto, 0.75rem 0.75rem;
  opacity: 0.32;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.hero-grid,
.credentials-grid {
  display: grid;
  gap: clamp(1rem, 3.6vw, 1.35rem);
}

.hero-panel {
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 1;
  color: #ffffff;
  padding-top: 0.1rem;
  animation: heroFadeUp 560ms ease both;
}

.hero-copy h1 {
  font-size: clamp(2rem, 10.6vw, 4.9rem);
  max-width: 11ch;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-text {
  margin: 1.1rem 0 0;
  max-width: 29rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.96rem, 0.92rem + 0.28vw, 0.99rem);
  line-height: clamp(1.58, 1.52 + 0.24vw, 1.68);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.7rem, 2.6vw, 0.85rem);
  margin: clamp(1.25rem, 4vw, 1.45rem) 0 0;
  animation: heroFadeUp 680ms ease both;
}

.hero-actions .button {
  width: 100%;
}

.hero .button-primary {
  min-height: 3.15rem;
  padding-inline: 1.2rem 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #c32639, #8d1625);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 36px rgba(177, 30, 47, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  white-space: nowrap;
}

.hero .button-secondary {
  min-height: 3rem;
  padding-inline: 1.15rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero .button-primary:hover,
.hero .button-primary:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 22px 42px rgba(177, 30, 47, 0.28),
    0 0 18px rgba(177, 30, 47, 0.16);
}

.hero .button-secondary:hover,
.hero .button-secondary:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 40%),
    linear-gradient(135deg, rgba(48, 99, 152, 0.98), rgba(22, 57, 98, 0.98));
  border-color: rgba(196, 223, 248, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 34px rgba(6, 18, 31, 0.22),
    0 0 20px rgba(31, 90, 146, 0.12);
}

.button-icon {
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.button-icon-whatsapp {
  margin-right: 0.15rem;
  transform: translateY(0.02rem) scale(1.08);
  transform-origin: center;
}

.button-icon-calendar {
  margin-right: 0.08rem;
  transform: translateY(0.01rem) scale(1.02);
  transform-origin: center;
}

.hero-signals {
  display: grid;
  gap: 0.9rem;
}

.hero-signals {
  margin-top: 0;
}

.signal-item {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.signal-item strong {
  display: block;
  margin-bottom: 0.15rem;
}

.signal-item strong {
  color: #ffffff;
  font-size: 0.95rem;
}

.signal-label {
  display: inline-flex;
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.signal-item span {
  color: rgba(255, 255, 255, 0.7);
}

.hero-band {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 0;
  padding: 0.72rem 0.98rem 0.74rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.hero-band:hover,
.hero-band:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-band-location {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.93rem;
  line-height: 1.28;
  font-weight: 700;
}

.hero-band-link {
  position: relative;
  flex: 0 0 auto;
  padding-left: 0.88rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hero-band-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 18px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
}

.hero-band-arrow {
  display: inline-block;
  margin-left: 0.18rem;
  transition: transform 180ms ease;
}

.hero-band:hover .hero-band-arrow,
.hero-band:focus-visible .hero-band-arrow {
  transform: translateX(2px);
}

.location {
  padding-top: 4.05rem;
  padding-bottom: 4.55rem;
  background: linear-gradient(180deg, rgba(242, 247, 251, 1), rgba(244, 248, 252, 0.98));
}

.location-layout {
  display: grid;
  grid-template-areas:
    "main"
    "content"
    "gallery";
  gap: 1rem;
}

.location-main-visual {
  grid-area: main;
}

.location-content {
  grid-area: content;
}

.location-gallery {
  grid-area: gallery;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(8.35rem, 0.94fr);
  align-items: stretch;
  gap: 0.68rem;
}

.location .section-heading {
  margin-bottom: 0.74rem;
}

.location .section-heading h2 {
  max-width: 11ch;
  line-height: 1.04;
}

.location-intro {
  margin: 0 0 0.92rem;
  max-width: 32rem;
  color: rgba(16, 38, 59, 0.7);
  font-size: 0.97rem;
  line-height: 1.6;
}

.location-details {
  display: grid;
  gap: 0;
}

.location-detail {
  padding: 0.76rem 0;
  border-top: 1px solid rgba(20, 48, 76, 0.08);
}

.location-detail:last-child {
  border-bottom: 1px solid rgba(20, 48, 76, 0.08);
}

.location-detail span {
  display: inline-flex;
  margin-bottom: 0.24rem;
  color: rgba(16, 38, 59, 0.44);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-detail strong,
.location-detail p {
  margin: 0;
  color: var(--color-surface-strong);
  font-size: 0.98rem;
  line-height: 1.48;
}

.location-detail strong {
  display: block;
  font-size: 1.03rem;
  letter-spacing: -0.015em;
}

.location-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.68rem;
  width: 100%;
  max-width: 22rem;
  margin-top: 1rem;
  padding: 0.82rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.58));
  border: 1px solid rgba(20, 48, 76, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  color: var(--color-surface-strong);
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.location-link:hover,
.location-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(20, 48, 76, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.64));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 24px rgba(7, 19, 31, 0.06);
}

.location-link-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.location-link-icon {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  opacity: 0.8;
}

.location-link span:last-child {
  display: inline-block;
  transition: transform 180ms ease;
}

.location-link:hover span:last-child,
.location-link:focus-visible span:last-child {
  transform: translateX(2px);
}

.location-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(20, 48, 76, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 34px rgba(7, 19, 31, 0.08);
}

.location-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 19, 31, 0) 38%, rgba(7, 19, 31, 0.08) 100%);
  pointer-events: none;
}

.location-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-photo-main {
  aspect-ratio: 1.18 / 1;
}

.location-photo-main img {
  object-position: center 52%;
}

.location-photo-room {
  width: 100%;
  aspect-ratio: 1.12 / 1;
}

.location-photo-room img {
  object-position: center 53%;
}

.location-photo-doctor {
  position: relative;
  z-index: 1;
  width: 100%;
  align-self: stretch;
  aspect-ratio: 0.98 / 1;
  border-radius: 1.2rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 16px 28px rgba(7, 19, 31, 0.11);
}

.location-photo-doctor img {
  object-fit: cover;
  object-position: 41% 18%;
}

.hero-portrait,
.info-card,
.review-card,
.credential-item,
.cta-banner {
  background: var(--color-surface);
  border: 1px solid rgba(16, 38, 59, 0.08);
  box-shadow: var(--shadow-md);
}

.hero-portrait {
  position: relative;
  min-height: 100%;
  border-radius: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 30%),
    linear-gradient(160deg, rgba(18, 44, 67, 0.86), rgba(7, 16, 25, 0.96));
  overflow: hidden;
  box-shadow:
    0 32px 78px rgba(2, 10, 18, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-portrait::before {
  content: "";
  position: absolute;
  inset: auto 12% 1rem;
  height: 3rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.42), transparent 70%);
  filter: blur(16px);
}

.hero-portrait-frame {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  padding: 0.65rem 0.8rem 4.85rem;
}

.hero-portrait-media {
  width: 100%;
  aspect-ratio: 1.04 / 1;
  max-height: clamp(15.5rem, 68vw, 21rem);
  border-radius: 2rem;
  overflow: hidden;
  background: #173149;
  box-shadow:
    0 22px 40px rgba(4, 12, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: none;
  transform: none;
}

.hero-portrait-badge {
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: 1.05rem;
  padding: 0.78rem 0.9rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(9, 19, 30, 0.28), rgba(9, 19, 30, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px);
}

.hero-portrait-kicker {
  display: inline-flex;
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-portrait-badge strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 1.28;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 0.28rem 0.5rem calc(0.28rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(8, 18, 30, 0), rgba(8, 18, 30, 0.2) 18%, rgba(8, 18, 30, 0.56));
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 280ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

body.has-calendly-popup .mobile-sticky-cta {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.mobile-sticky-cta-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 0.42rem;
  padding: 0.42rem;
  border-radius: 0.92rem;
  background: linear-gradient(180deg, rgba(10, 22, 35, 0.86), rgba(9, 19, 30, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 -4px 14px rgba(3, 9, 16, 0.06),
    0 8px 20px rgba(3, 9, 16, 0.16);
  backdrop-filter: blur(8px) saturate(112%);
  -webkit-backdrop-filter: blur(8px) saturate(112%);
}

.mobile-sticky-cta .button {
  min-height: 2.34rem;
  width: 100%;
  font-size: 0.88rem;
}

.mobile-sticky-primary {
  white-space: nowrap;
}

.mobile-sticky-secondary {
  white-space: nowrap;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0) 40%),
    linear-gradient(135deg, rgba(39, 85, 133, 0.95), rgba(18, 48, 82, 0.94));
  color: rgba(248, 251, 255, 0.98);
  border-color: rgba(185, 218, 248, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 8px 18px rgba(4, 13, 24, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.03);
}

.mobile-sticky-secondary:hover,
.mobile-sticky-secondary:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 42%),
    linear-gradient(135deg, rgba(45, 95, 146, 0.97), rgba(22, 57, 96, 0.96));
  border-color: rgba(205, 230, 250, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 20px rgba(5, 16, 28, 0.18),
    0 0 16px rgba(28, 82, 136, 0.12);
}

.card-grid,
.credentials-grid {
  display: grid;
  gap: 1rem;
}

.info-card,
.review-card,
.credential-item {
  padding: 1.45rem;
  border-radius: var(--radius-md);
}

.info-card::after,
.credential-item::before {
  content: "";
  display: block;
  width: 3rem;
  height: 0.22rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), rgba(177, 30, 47, 0.2));
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 0.9rem;
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-card h3,
.credential-item h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.info-card p,
.review-card p,
.credential-item p,
.review-summary p {
  margin-bottom: 0;
  color: var(--color-text-soft);
}

.reviews {
  background: linear-gradient(180deg, rgba(244, 248, 252, 0.9), rgba(238, 244, 250, 0.98));
}

.credentials {
  padding-top: 3.7rem;
  padding-bottom: 4.45rem;
  background: linear-gradient(180deg, rgba(245, 248, 252, 0.98), rgba(242, 247, 251, 1));
}

.credentials-layout {
  display: grid;
  gap: 0.92rem;
}

.credentials-copy {
  max-width: 35rem;
}

.credentials-support {
  display: grid;
  gap: 0.82rem;
}

.credentials-copy h2 {
  margin: 0 0 0.78rem;
  font-family: var(--font-serif);
  font-size: clamp(1.78rem, 6vw, 2.16rem);
  line-height: 1.06;
  color: var(--color-surface-strong);
}

.credentials-intro {
  max-width: 34rem;
  margin-bottom: 0.78rem;
  color: rgba(16, 38, 59, 0.74);
}

.credentials-human-touch {
  margin: -0.1rem 0 0.8rem;
  color: rgba(16, 38, 59, 0.68);
  font-size: 0.91rem;
  line-height: 1.46;
}

.credentials-identity {
  display: grid;
  gap: 0.22rem;
  margin-bottom: 0.82rem;
}

.credentials-identity strong {
  color: var(--color-surface-strong);
  font-size: clamp(1rem, 0.96rem + 0.22vw, 1.12rem);
  line-height: 1.3;
}

.credentials-identity span {
  color: rgba(16, 38, 59, 0.72);
  font-size: 0.92rem;
  line-height: 1.4;
}

.credentials-identity p {
  margin: 0.22rem 0 0;
  color: rgba(16, 38, 59, 0.76);
  font-size: 0.91rem;
  line-height: 1.46;
}

.credentials-inline-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0;
}

.credentials-inline-highlights span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.38rem 0.66rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(20, 48, 76, 0.05);
  color: var(--color-surface-strong);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.12;
}

.credentials-inline-highlights span::before {
  content: "";
  width: 0.62rem;
  height: 0.08rem;
  border-radius: 999px;
  background: rgba(177, 30, 47, 0.46);
}

.credentials-inline-highlights span:nth-child(2)::before {
  width: 0.42rem;
  height: 0.42rem;
  background: rgba(57, 122, 90, 0.74);
}

.credentials-inline-highlights span:nth-child(2) {
  margin-left: 0.48rem;
}

.credentials-license {
  display: grid;
  gap: 0.18rem;
  padding-top: 0.62rem;
  border-top: 1px solid rgba(20, 48, 76, 0.08);
}

.credentials-license span {
  color: rgba(16, 38, 59, 0.52);
  font-size: 0.73rem;
  line-height: 1.36;
}

.credentials-visual {
  position: relative;
}

.credentials-certificate-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 0.08rem 0 0.3rem;
}

.credentials-certificate-watermark {
  position: absolute;
  inset: 8% 6% 6%;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 18% 24%, rgba(177, 30, 47, 0.08), transparent 20%),
    radial-gradient(circle at 82% 78%, rgba(16, 41, 68, 0.08), transparent 24%);
  opacity: 0.7;
  filter: blur(18px);
  pointer-events: none;
}

.credentials-certificate {
  position: relative;
  z-index: 1;
  width: min(100%, 22rem);
  margin: 0;
  border-radius: 1.35rem;
  overflow: hidden;
  transform: rotate(-0.85deg);
  box-shadow:
    0 12px 24px rgba(7, 19, 31, 0.065),
    0 1px 0 rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(114, 96, 74, 0.1);
}

.credentials-certificate img {
  width: 100%;
  height: 13.5rem;
  object-fit: cover;
  object-position: 50% 18%;
}

.services {
  position: relative;
  padding-top: 2.95rem;
  background:
    radial-gradient(circle at top left, rgba(177, 30, 47, 0.045), transparent 19rem),
    linear-gradient(180deg, rgba(239, 244, 249, 0.96), rgba(245, 248, 252, 0.98));
}

.services .section-heading {
  max-width: 44rem;
  margin-bottom: 1.55rem;
}

.services .section-heading h2 {
  max-width: 11ch;
  font-size: clamp(1.72rem, 6vw, 2.14rem);
  line-height: 1.08;
  margin-bottom: 0.8rem;
}

.services-grid {
  display: grid;
  gap: 0.82rem;
}

.service-card {
  position: relative;
  min-height: 8.55rem;
  padding: 1.18rem 1.12rem 1.08rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(24, 53, 83, 0.09);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.8), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 252, 0.94)),
    linear-gradient(135deg, rgba(16, 41, 68, 0.035), rgba(16, 41, 68, 0));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 30px rgba(7, 19, 31, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.45);
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0.82rem auto auto 1.12rem;
  width: 2.2rem;
  height: 0.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(177, 30, 47, 0.85), rgba(177, 30, 47, 0.14));
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(25, 63, 101, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 18px 36px rgba(7, 19, 31, 0.09),
    0 6px 16px rgba(16, 41, 68, 0.04);
}

.service-title {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  margin: 0 0 0.56rem;
  color: var(--color-surface-strong);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.96rem + 0.34vw, 1.14rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-title small {
  display: block;
  color: rgba(16, 38, 59, 0.6);
  font-size: 0.8em;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.service-description {
  margin: 0;
  max-width: 24ch;
  color: rgba(16, 38, 59, 0.72);
  font-size: clamp(0.89rem, 0.87rem + 0.14vw, 0.95rem);
  line-height: 1.44;
}

.reviews-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(16.2rem, 84%);
  gap: 0.9rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.reviews-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-height: 100%;
  padding: 1.3rem 1.2rem 1.18rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 253, 0.92));
  border: 1px solid rgba(19, 47, 77, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 14px 30px rgba(7, 19, 31, 0.06);
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.review-card:hover,
.review-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(24, 60, 96, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 18px 34px rgba(7, 19, 31, 0.08);
}

.review-stars {
  margin-bottom: 0.75rem;
  color: #b48a23;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.review-head {
  margin-bottom: 0.72rem;
}

.review-head strong {
  color: var(--color-surface-strong);
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}

.review-card p {
  color: rgba(16, 38, 59, 0.76);
  font-size: 0.96rem;
  line-height: 1.56;
}

.reviews-band {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 0.95rem;
  margin-bottom: 0.2rem;
  padding: 0.72rem 1rem 0.74rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.028));
  border: 1px solid rgba(19, 47, 77, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.reviews-band p {
  margin: 0;
  display: none;
}

.reviews-score {
  color: rgba(13, 27, 42, 0.8);
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding-right: 0.08rem;
  color: rgba(17, 41, 65, 0.66);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.reviews-link::before {
  content: none;
}

.reviews-link::after {
  content: "→";
  display: inline-block;
  margin-left: 0.12rem;
  transition: transform 180ms ease;
}

.reviews-link:hover,
.reviews-link:focus-visible {
  color: var(--color-surface-strong);
}

.reviews-link:hover::after,
.reviews-link:focus-visible::after {
  transform: translateX(2px);
}

.text-link {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--color-accent);
  font-weight: 700;
}

.closing-cta {
  padding-top: 2rem;
  padding-bottom: 3.9rem;
}

.cta-banner {
  display: grid;
  gap: 0.88rem;
  max-width: 62rem;
  padding: 1.22rem 1.05rem 1.14rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 253, 255, 0.98));
  border: 1px solid rgba(16, 38, 59, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 26px rgba(7, 19, 31, 0.065);
}

.closing-cta-copy {
  max-width: 28rem;
}

.closing-cta-copy .eyebrow {
  margin-bottom: 0.56rem;
}

.closing-cta-copy h2 {
  max-width: 15ch;
  font-size: clamp(1.42rem, 4.6vw, 1.82rem);
  line-height: 1.06;
}

.closing-cta-copy > p:not(.closing-cta-meta) {
  margin: 0.62rem 0 0;
  max-width: 28rem;
  color: rgba(16, 38, 59, 0.72);
  font-size: 0.93rem;
  line-height: 1.56;
}

.closing-cta-meta {
  margin: 0.55rem 0 0;
  color: rgba(16, 38, 59, 0.52);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.closing-cta .cta-actions {
  gap: 0.48rem;
  width: min(100%, 18rem);
  margin-top: 0;
}

.closing-cta .cta-actions .button {
  width: 100%;
  padding-inline: 1.1rem;
  text-align: center;
  line-height: 1.2;
}

.closing-cta .button-primary,
.closing-cta .button-secondary {
  min-height: 2.82rem;
  font-size: 0.95rem;
  justify-content: center;
}

.closing-cta .button-primary {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 26px rgba(177, 30, 47, 0.2);
}

.closing-cta .button-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 42%),
    linear-gradient(135deg, rgba(43, 92, 142, 0.98), rgba(18, 48, 82, 0.98));
  color: rgba(247, 250, 255, 0.98);
  border-color: rgba(166, 203, 239, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 26px rgba(8, 24, 42, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.closing-cta .button-secondary:hover,
.closing-cta .button-secondary:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04) 42%),
    linear-gradient(135deg, rgba(50, 102, 156, 0.99), rgba(22, 57, 96, 0.99));
  border-color: rgba(186, 219, 249, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 28px rgba(8, 24, 42, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.site-footer {
  background: var(--color-surface-deep);
  color: rgba(255, 255, 255, 0.88);
}

.footer-shell {
  flex-direction: column;
  min-height: auto;
  padding: 1.1rem 0 calc(1.1rem + env(safe-area-inset-bottom, 0px));
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0.14rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.64);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.46;
}

[data-reveal],
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

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

  [data-reveal],
  .reveal-on-scroll,
  .mobile-sticky-cta,
  .hero-copy,
  .hero-actions {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  [data-reveal],
  .reveal-on-scroll {
    opacity: 1 !important;
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 359px) {
  body {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }

  .hero-actions .button {
    min-width: 0;
  }

  .hero-portrait-frame {
    padding-bottom: 4.6rem;
  }

  .hero-portrait-media {
    max-height: 14.75rem;
  }

  .mobile-sticky-cta {
    padding-inline: 0.35rem;
  }

  .mobile-sticky-cta-shell {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.38rem;
  }
}

@media (min-width: 390px) {
  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .hero-actions .button-primary {
    min-width: 0;
  }

  .button-icon {
    width: 1.3rem;
    height: 1.3rem;
  }

  .hero-portrait-media {
    aspect-ratio: 1.08 / 1;
  }
}

@media (min-width: 481px) and (max-width: 719px) {
  body {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  }

  .hero {
    padding-top: 2.35rem;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-actions .button {
    min-width: 0;
  }

  .hero-actions .button-primary {
    min-width: 0;
  }

  .hero-portrait-frame {
    padding: 0.9rem 0.9rem 5rem;
  }

  .hero-portrait-media {
    aspect-ratio: 1.14 / 1;
    max-height: 24rem;
  }

  .hero-signals {
    margin-top: 0.12rem;
  }

  .hero-band {
    padding: 0.68rem 0.82rem;
    gap: 0.48rem;
  }

  .hero-band-location {
    font-size: 0.9rem;
  }

  .hero-band-link {
    font-size: 0.72rem;
    padding-left: 0.72rem;
  }

  .hero-band-link::before {
    height: 16px;
  }
}

@media (max-width: 719px) {
  .hero-actions,
  .closing-cta .cta-actions {
    width: min(100%, 20rem);
    margin-left: auto;
    margin-right: auto;
    align-items: stretch;
  }

  .hero-actions .button,
  .closing-cta .cta-actions .button {
    width: 100%;
    min-width: 0;
    justify-content: center;
    text-align: center;
  }

  .hero .button-primary,
  .hero .button-secondary,
  .closing-cta .button-primary,
  .closing-cta .button-secondary {
    min-height: 3rem;
  }

  .hero .button-primary,
  .hero .button-secondary {
    padding-inline: 1.15rem;
  }
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .mobile-sticky-cta {
    display: none;
  }

  :root {
    --header-height: 4.95rem;
  }

  .section {
    padding: 5.7rem 0;
  }

  .brand-logo {
    height: 2.95rem;
  }

  .hero {
    padding-top: 2.2rem;
    padding-bottom: 3rem;
  }

  .hero-copy h1 {
    max-width: 12.5ch;
  }

  .hero-text {
    font-size: 1.03rem;
  }

  .hero-portrait-frame {
    padding: 0.95rem 0.95rem 5.15rem;
  }

  .hero-portrait-media {
    aspect-ratio: 1.04 / 1;
  }

  .hero-signals {
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  }

  .location {
    padding-top: 4.35rem;
    padding-bottom: 5rem;
  }

  .closing-cta {
    padding-top: 2.45rem;
    padding-bottom: 4.35rem;
  }

  .location-layout {
    gap: 1.1rem;
  }

  .location-main-visual {
    max-width: 34rem;
  }

  .location-gallery {
    max-width: 34rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(9.3rem, 0.94fr);
    gap: 0.78rem;
  }

  .location-content {
    max-width: 32rem;
  }

  .location-photo-main {
    aspect-ratio: 1.28 / 1;
  }

  .location-photo-room {
    width: 100%;
    aspect-ratio: 1.16 / 1;
  }

  .location-link {
    max-width: 24rem;
  }

  .cta-banner {
    gap: 0.95rem;
    max-width: 58rem;
    padding: 1.28rem 1.3rem 1.2rem;
  }

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

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

  .services {
    padding-top: 4.15rem;
  }

  .credentials-copy h2 {
    margin-bottom: 0.95rem;
    font-size: clamp(1.92rem, 4vw, 3rem);
    line-height: 1.12;
  }

  .credentials-intro {
    margin-bottom: 1.15rem;
  }

  .credentials-human-touch {
    margin: -0.12rem 0 1rem;
    font-size: 0.94rem;
  }

  .credentials-inline-highlights {
    display: grid;
    margin-top: -0.48rem;
    margin-bottom: 0.72rem;
  }

  .credentials-inline-highlights span {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    gap: 0.6rem;
    font-size: 0.94rem;
    line-height: normal;
  }

  .credentials-inline-highlights span::before {
    width: 1.8rem;
    height: 0.08rem;
    background: linear-gradient(90deg, rgba(177, 30, 47, 0.8), rgba(177, 30, 47, 0.14));
  }

  .credentials-inline-highlights span:nth-child(2)::before {
    width: 0.44rem;
    height: 0.44rem;
    background: rgba(57, 122, 90, 0.72);
  }

  .credentials-inline-highlights span:nth-child(2) {
    margin-left: 1.5rem;
  }

  .credentials-license {
    padding-top: 0.75rem;
  }

  .credentials-license span {
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(16, 38, 59, 0.58);
  }

  .services .section-heading {
    margin-bottom: 2rem;
  }

  .services .section-heading h2 {
    max-width: none;
    font-size: clamp(1.9rem, 4vw, 3.1rem);
    line-height: 1.14;
    margin-bottom: 1rem;
  }

  .credentials-layout {
    gap: 1.9rem;
    grid-template-areas:
      "copy visual"
      "support visual";
  }

  .credentials-copy {
    grid-area: copy;
  }

  .credentials-visual {
    grid-area: visual;
  }

  .credentials-support {
    grid-area: support;
    gap: 0.62rem;
  }

  .hero-grid,
  .cta-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-banner {
    grid-template-columns: minmax(0, 1.02fr) minmax(13.5rem, 0.76fr);
    column-gap: 0.78rem;
    align-items: center;
  }

  .closing-cta-copy h2 {
    max-width: 18ch;
    font-size: clamp(1.62rem, 1.7vw, 1.9rem);
    line-height: 1.06;
  }

  .closing-cta .cta-actions {
    align-self: center;
    justify-content: flex-start;
    align-content: start;
    width: 100%;
    max-width: 15rem;
    margin-left: 0;
  }

  .closing-cta .button-primary {
    white-space: nowrap;
  }

  .closing-cta .cta-actions .button {
    width: 100%;
    min-width: 0;
  }

  .footer-shell {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .location-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    grid-template-areas:
      "content main"
      "content gallery";
    column-gap: 3.25rem;
    row-gap: 0.72rem;
    align-items: start;
  }

  .location-content {
    align-self: center;
    max-width: 30.75rem;
  }

  .location-main-visual,
  .location-gallery {
    max-width: none;
  }

  .location-main-visual {
    position: relative;
  }

  .location-main-visual::before {
    content: "";
    position: absolute;
    inset: -1rem 8% auto auto;
    width: 14rem;
    height: 14rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(177, 30, 47, 0.08), transparent 68%);
    filter: blur(10px);
    pointer-events: none;
  }

  .location-photo-main {
    aspect-ratio: 1.08 / 1;
    border-radius: 1.9rem;
  }

  .location-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(10.5rem, 0.96fr);
    align-items: stretch;
    gap: 0.84rem;
  }

  .location-photo-room {
    width: 100%;
    aspect-ratio: 1.16 / 1;
    border-radius: 1.45rem;
  }

  .location-photo-doctor {
    width: 100%;
    aspect-ratio: 0.98 / 1;
    border-radius: 1.35rem;
    transform: none;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.74),
      0 20px 32px rgba(7, 19, 31, 0.1);
  }

  .location-photo-doctor img {
    object-position: 39% 16%;
  }

  .hero-grid {
    grid-template-areas:
      "copy panel"
      "signals panel";
    align-items: start;
    row-gap: 1.05rem;
  }

  .hero-copy {
    grid-area: copy;
  }

  .hero-panel {
    grid-area: panel;
  }

  .hero-signals {
    grid-area: signals;
    margin-top: 0;
  }

  .reviews-grid {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
    padding-bottom: 0;
  }

  .reviews {
    padding-top: 5.15rem;
  }

  .credentials {
    padding-top: 4.7rem;
    padding-bottom: 5.7rem;
  }

  .credentials-certificate-stage {
    padding: 0.45rem 0.25rem 0.6rem;
  }

  .reviews-band {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 0;
    padding: 1rem 1.1rem;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(246, 250, 253, 0.9));
    border: 1px solid rgba(19, 47, 77, 0.07);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 10px 24px rgba(7, 19, 31, 0.05);
  }

  .reviews-band p {
    display: block;
    max-width: 28rem;
  }

  .credentials-certificate {
    width: min(100%, 31rem);
    border-radius: 1.7rem;
    transform: rotate(-1.4deg);
    box-shadow:
      0 18px 36px rgba(7, 19, 31, 0.075),
      0 1px 0 rgba(255, 255, 255, 0.55);
  }

  .credentials-certificate img {
    height: auto;
    object-fit: initial;
    object-position: center;
  }

  .reviews-score {
    color: var(--color-surface-strong);
    font-size: 0.95rem;
    font-weight: 700;
  }

  .reviews-link {
    color: rgba(17, 41, 65, 0.78);
    font-size: 1rem;
    padding-right: 0;
    letter-spacing: normal;
  }

  .reviews-link::before,
  .reviews-link::after {
    content: none;
  }
}

@media (min-width: 960px) {
  :root {
    --header-height: 5.55rem;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
  }

  .site-nav a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    transition: color 180ms ease, opacity 180ms ease;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: rgba(255, 255, 255, 0.98);
  }

  .site-header.is-scrolled .site-nav a {
    color: rgba(255, 255, 255, 0.84);
  }

  .site-header.is-scrolled .site-nav a:hover,
  .site-header.is-scrolled .site-nav a:focus-visible {
    color: rgba(255, 255, 255, 0.98);
  }

  .header-cta {
    display: inline-flex;
  }

  .brand-logo {
    height: 3.2rem;
  }

  .hero {
    padding-top: 1.8rem;
    padding-bottom: 3.2rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
    column-gap: 4rem;
    row-gap: 1rem;
  }

  .hero-copy {
    padding-top: 0.15rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.45rem, 4.9vw, 5rem);
    max-width: 12ch;
  }

  .hero-text {
    max-width: 31rem;
    margin-top: 1.35rem;
    font-size: 1.02rem;
  }

  .hero-actions {
    margin-top: 1.9rem;
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button,
  .hero-actions .button-primary {
    width: 100%;
    min-width: 0;
  }

  .button-icon {
    width: 1.45rem;
    height: 1.45rem;
  }

  .hero-signals {
    margin-top: 0.35rem;
  }

  .hero-band {
    min-height: 3.1rem;
    max-width: 33.2rem;
    padding: 0.82rem 1.14rem 0.84rem;
    border-radius: 1.05rem;
  }

  .hero-band-location {
    font-size: 0.98rem;
  }

  .hero-band-link {
    font-size: 0.73rem;
    padding-left: 0.98rem;
  }

  .hero-portrait-frame {
    padding: 1rem 1rem 5.5rem;
  }

  .hero-portrait-media {
    aspect-ratio: 1.02 / 1;
    border-radius: 2.15rem;
  }

  .hero-portrait-frame img {
    object-position: 50% 24%;
  }

  .hero-portrait-badge {
    left: 1.15rem;
    right: 1.15rem;
    bottom: 1.15rem;
    padding: 0.92rem 1rem;
  }

  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-card-extra {
    display: none;
  }

  .reviews {
    padding-top: 4.85rem;
  }

  .reviews-band {
    max-width: 56rem;
    margin: 1.15rem auto 0;
    padding: 1rem 1.2rem;
  }

  .reviews-band p {
    max-width: 30rem;
  }

  .credentials {
    padding-top: 4.35rem;
    padding-bottom: 4.9rem;
  }

  .credentials-layout {
    grid-template-columns: minmax(0, 0.94fr) minmax(24rem, 1.06fr);
    align-items: center;
    gap: 3.15rem;
  }

  .credentials-copy {
    max-width: 33rem;
  }

  .credentials-certificate {
    width: min(100%, 33.4rem);
    transform: rotate(-1.45deg);
  }

  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-card {
    min-height: 10rem;
    padding: 1.55rem 1.45rem 1.4rem;
  }

  .service-title {
    font-size: 1.18rem;
  }

  .service-description {
    max-width: 23ch;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
