:root {
  --navy-950: #071a36;
  --navy-900: #0a2244;
  --navy-800: #12325b;
  --gold-600: #b98636;
  --gold-500: #c99a4f;
  --gold-100: #f7ead2;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #0d2442;
  --muted: #647084;
  --line: rgba(10, 34, 68, 0.14);
  --shadow: 0 28px 70px rgba(7, 26, 54, 0.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes whatsapp-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 154, 79, 0);
    transform: translateY(0) scale(1);
  }

  18% {
    box-shadow: 0 0 0 8px rgba(201, 154, 79, 0.14);
    transform: translateY(-1px) scale(1.02);
  }

  36% {
    box-shadow: 0 0 0 14px rgba(201, 154, 79, 0);
    transform: translateY(0) scale(1);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px clamp(22px, 5vw, 76px);
  border-bottom: 1px solid rgba(10, 34, 68, 0.08);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(10, 34, 68, 0.12);
  background: rgba(251, 250, 247, 0.98);
  box-shadow: 0 16px 42px rgba(7, 26, 54, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

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

.brand strong {
  display: block;
  color: var(--navy-950);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--gold-600);
  font-size: 13px;
  line-height: 1.2;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 38px);
  color: var(--navy-950);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding-block: 9px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.main-nav .nav-cta::after {
  display: none;
}

.nav-cta {
  border: 1px solid var(--navy-950);
  background: var(--navy-950);
  color: var(--gold-500);
  padding: 12px 18px !important;
  animation: whatsapp-pulse 3.8s ease-in-out infinite;
  box-shadow: 0 10px 24px rgba(7, 26, 54, 0.16);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
  will-change: transform, box-shadow;
}

.nav-cta:hover {
  background: var(--gold-500);
  color: var(--navy-950);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(7, 26, 54, 0.2);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--navy-950);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(650px, calc(100vh - 78px));
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.9) 48%, rgba(251, 250, 247, 0.38) 78%),
    url("./assets/site-hero-wide.webp") right calc(50% + var(--parallax-y, 0px)) / cover no-repeat,
    var(--paper);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: rgba(10, 34, 68, 0.1);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
  padding: clamp(58px, 8vw, 112px) clamp(22px, 7vw, 104px);
}

.hero-copy > * {
  animation: hero-rise 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy > :nth-child(2) {
  animation-delay: 90ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 170ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 240ms;
}

.hero h1,
.section-intro h2,
.values-title h2,
.location h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(54px, 7.6vw, 112px);
}

.hero h1::after,
.section-intro h2::after,
.values-title h2::after,
.location h2::after {
  display: block;
  width: 76px;
  height: 2px;
  margin-top: 24px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero p {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--navy-800);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.42;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
  color: var(--navy-800);
  font-size: 15px;
  font-weight: 700;
}

.hero-meta span,
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8px;
}

.hero-meta svg {
  color: var(--gold-600);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.button {
  min-height: 54px;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--navy-950);
  box-shadow: 0 18px 42px rgba(7, 26, 54, 0.18);
}

.button-primary svg {
  color: var(--gold-500);
}

.button-share {
  border-color: rgba(185, 134, 54, 0.34);
  background: rgba(247, 234, 210, 0.44);
  color: var(--navy-950);
  box-shadow: 0 14px 34px rgba(185, 134, 54, 0.12);
}

.button-share svg {
  color: var(--gold-600);
}

.button-share:hover {
  border-color: rgba(185, 134, 54, 0.62);
  background: rgba(247, 234, 210, 0.76);
  box-shadow: 0 20px 42px rgba(185, 134, 54, 0.18);
}

.button-text {
  color: var(--navy-950);
  border-color: transparent;
  background: transparent;
  padding-inline: 4px;
}

.button-text::after {
  color: var(--gold-600);
  content: "→";
  font-size: 24px;
  line-height: 1;
}

.hero-art {
  min-height: 420px;
}

.specialties {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 76px);
  padding: clamp(68px, 8vw, 108px) clamp(22px, 6vw, 88px);
  background: var(--white);
}

.section-intro {
  max-width: 430px;
}

.section-intro span,
.access-copy span,
.lucas-copy span,
.values-title span,
.location span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-intro h2,
.access-copy h2,
.lucas-copy h2,
.values-title h2,
.location h2 {
  font-size: clamp(32px, 3.6vw, 54px);
}

.section-intro p,
.access-copy p,
.lucas-copy p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.specialty-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.specialty-list article {
  min-height: 230px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 28px;
  transition: background 220ms ease, transform 220ms ease;
}

.specialty-list article:hover {
  background: rgba(251, 250, 247, 0.72);
  transform: translateY(-4px);
}

.specialty-list svg {
  width: 42px;
  height: 42px;
  color: var(--gold-600);
  stroke-width: 1.35px;
}

.specialty-list h3,
.team h3 {
  margin: 22px 0 10px;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.12;
}

.specialty-list p,
.team p,
.values-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.access-care {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: stretch;
  padding: clamp(58px, 7vw, 92px) clamp(22px, 6vw, 88px);
  border-top: 1px solid rgba(10, 34, 68, 0.08);
  background:
    linear-gradient(180deg, rgba(251, 250, 247, 0.98), rgba(255, 255, 255, 0.92)),
    url("./assets/site-hero-wide.webp") right center / auto 120% no-repeat;
}

.access-copy {
  max-width: 510px;
}

.access-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
}

.access-copy h2::after {
  display: block;
  width: 76px;
  height: 2px;
  margin-top: 24px;
  background: var(--gold-500);
  content: "";
}

.access-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(280px, 1fr);
  min-height: 300px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 70px rgba(7, 26, 54, 0.08);
  backdrop-filter: blur(10px);
}

.plans-card {
  padding: clamp(28px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.plans-card p {
  margin: 0 0 22px;
  color: var(--gold-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plans-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plans-card li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-inline: -10px;
  padding: 9px 10px;
  border: 1px solid transparent;
  color: var(--navy-950);
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 600;
  line-height: 1.1;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.plans-card li:hover {
  z-index: 1;
  border-color: rgba(201, 154, 79, 0.45);
  background: linear-gradient(90deg, rgba(247, 234, 210, 0.82), rgba(255, 255, 255, 0.92));
  color: var(--gold-600);
  box-shadow: 0 18px 36px rgba(7, 26, 54, 0.1);
  transform: translateX(8px) scale(1.035);
}

.plan-logo {
  display: inline-flex;
  flex: 0 0 auto;
  width: 56px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 34, 68, 0.12);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 26, 54, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.plans-card li:hover .plan-logo {
  border-color: rgba(201, 154, 79, 0.7);
  box-shadow: 0 14px 30px rgba(185, 134, 54, 0.2);
  transform: scale(1.08);
}

.plan-logo img {
  max-width: 48px;
  max-height: 32px;
  object-fit: contain;
}

.social-highlight {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(30px, 4.5vw, 52px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 26, 54, 0.99), rgba(10, 34, 68, 0.96)),
    url("./assets/site-band-wide.webp") center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(247, 234, 210, 0.12), 0 28px 64px rgba(7, 26, 54, 0.24);
}

.social-highlight::before {
  position: absolute;
  inset: -35% auto auto -20%;
  width: 58%;
  height: 150%;
  background: linear-gradient(115deg, transparent 0%, rgba(247, 234, 210, 0.04) 42%, rgba(247, 234, 210, 0.18) 50%, rgba(247, 234, 210, 0.04) 58%, transparent 100%);
  content: "";
  transform: rotate(8deg);
  animation: socialGlow 5.8s ease-in-out infinite;
}

.social-highlight::after {
  position: absolute;
  right: clamp(24px, 4vw, 46px);
  top: clamp(24px, 4vw, 44px);
  width: 96px;
  height: 96px;
  border: 1px solid rgba(201, 154, 79, 0.44);
  border-radius: 50%;
  box-shadow: 0 0 46px rgba(201, 154, 79, 0.22), inset 0 0 28px rgba(201, 154, 79, 0.1);
  content: "";
}

.social-highlight > * {
  position: relative;
  z-index: 1;
}

.social-highlight-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 154, 79, 0.52);
  background: rgba(247, 234, 210, 0.11);
  color: var(--gold-100);
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-highlight span {
  color: var(--gold-500);
  font-size: clamp(15px, 1.15vw, 19px);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.social-highlight h3 {
  max-width: 520px;
  margin: 16px 0 18px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(36px, 4.1vw, 62px);
  font-weight: 600;
  line-height: 1.02;
}

.social-highlight p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.55;
}

@keyframes socialGlow {
  0%,
  42%,
  100% {
    opacity: 0;
    transform: translateX(0) rotate(8deg);
  }

  55% {
    opacity: 1;
  }

  72% {
    opacity: 0;
    transform: translateX(210%) rotate(8deg);
  }
}

.values-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(56px, 7vw, 86px) clamp(22px, 6vw, 88px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 26, 54, 0.98), rgba(7, 26, 54, 0.93)),
    url("./assets/site-band-wide.webp") center calc(50% + var(--parallax-y, 0px)) / cover no-repeat;
}

.values-title h2 {
  color: var(--white);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.values-list article {
  min-height: 138px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 28px;
}

.values-list strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
}

.values-list p {
  color: rgba(255, 255, 255, 0.72);
}

.team {
  padding: clamp(70px, 8vw, 116px) clamp(22px, 6vw, 88px);
  background:
    linear-gradient(180deg, var(--paper), rgba(255, 255, 255, 0.82)),
    url("./assets/site-hero-wide.webp") right center / auto 100% no-repeat;
}

.team-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.5vw, 44px);
  align-items: start;
  max-width: 1240px;
  margin-top: 44px;
}

.doctor-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.team-photo-link {
  display: block;
  overflow: hidden;
  color: inherit;
  background: var(--white);
  box-shadow: var(--shadow);
}

.team-photo-link:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

.doctor-card img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.doctor-card:hover .team-photo-link img,
.team-person-featured:hover img {
  transform: scale(1.018);
}

.role {
  margin: 0 0 14px !important;
  color: var(--gold-600) !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 800;
}

.profile-link svg {
  width: 17px;
  height: 17px;
  color: var(--gold-600);
  stroke-width: 1.7px;
}

.team-people {
  display: contents;
}

.team-people article {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.team-person-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.team-person-featured img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 18px 42px rgba(7, 26, 54, 0.12);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.team-people h3 {
  font-size: 30px;
  letter-spacing: 0;
}

.lucas-care {
  padding: clamp(62px, 7vw, 96px) clamp(22px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98), rgba(255, 255, 255, 0.9)),
    url("./assets/site-hero-wide.webp") right center / auto 120% no-repeat;
}

.lucas-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(320px, 0.58fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.lucas-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lucas-photo::after {
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(7, 26, 54, 0.22));
  content: "";
  pointer-events: none;
}

.lucas-photo img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lucas-card:hover .lucas-photo img {
  transform: scale(1.018);
}

.lucas-copy {
  max-width: 640px;
}

.lucas-copy h2 {
  margin: 0;
  color: var(--navy-950);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.02;
}

.lucas-copy h2::after {
  display: block;
  width: 76px;
  height: 2px;
  margin-top: 24px;
  background: var(--gold-500);
  content: "";
}

.lucas-copy p {
  max-width: 590px;
  font-size: clamp(16px, 1.15vw, 18px);
}

.lucas-copy p + p {
  margin-top: 16px;
}

.lucas-copy .button {
  width: fit-content;
  margin-top: 28px;
}

.location {
  padding: clamp(36px, 4.6vw, 64px) clamp(22px, 6vw, 88px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(7, 26, 54, 0.98), rgba(7, 26, 54, 0.95)),
    url("./assets/site-band-wide.webp") center calc(50% + var(--parallax-y, 0px)) / cover no-repeat;
}

.location-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.18fr) minmax(300px, 0.38fr) minmax(300px, 0.44fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  margin-bottom: clamp(24px, 3.2vw, 40px);
}

.location-heading h2 {
  max-width: 440px;
  color: var(--white);
  font-size: clamp(30px, 3vw, 46px);
}

.location-heading p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(15px, 1.05vw, 18px);
}

.location-content {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(340px, 0.62fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: start;
}

.map-card {
  height: clamp(340px, 30vw, 430px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.map-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.28);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.company-panel {
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.company-panel:hover {
  border-color: rgba(201, 154, 79, 0.36);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.company-info {
  padding: clamp(22px, 2.8vw, 30px);
}

.feedback-card,
.review-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 22px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(18px, 2.2vw, 24px) clamp(22px, 2.8vw, 30px);
}

@media (width > 1120px) {
  .location-content {
    grid-template-columns: minmax(440px, 1fr) repeat(2, minmax(280px, 0.55fr));
  }

  .company-panel {
    display: contents;
  }

  .company-info,
  .feedback-card,
  .review-card {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
  }

  .company-info:hover,
  .feedback-card:hover,
  .review-card:hover {
    border-color: rgba(201, 154, 79, 0.36);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }

  .company-info {
    grid-column: 2;
    grid-row: 1;
  }

  .feedback-card {
    grid-column: 3;
    grid-row: 1;
  }

  .review-card {
    grid-column: 2 / 4;
    grid-row: 2;
  }
}

@media (width >= 1500px) {
  .location {
    padding-top: clamp(28px, 3.4vw, 48px);
    padding-bottom: clamp(28px, 3.4vw, 48px);
  }

  .location-heading {
    margin-bottom: clamp(20px, 2.4vw, 30px);
  }

  .location-content {
    grid-template-columns: minmax(500px, 1.45fr) repeat(3, minmax(250px, 0.62fr));
    gap: clamp(18px, 2vw, 28px);
  }

  .map-card {
    height: clamp(340px, 23vw, 390px);
  }

  .review-card {
    grid-column: 4;
    grid-row: 1;
    grid-template-columns: 1fr;
    align-content: start;
    row-gap: 12px;
  }

  .rating-choice,
  .review-card .button {
    grid-column: auto;
    grid-row: auto;
  }

  .rating-choice {
    margin: 6px 0 4px;
    text-align: left;
  }

  .review-card .button {
    width: 100%;
  }
}

.company-info h3,
.feedback-card h3,
.review-card h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 600;
  line-height: 1.04;
}

.company-info dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.company-info dl div {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 12px;
}

.company-info dt,
.feedback-card span,
.review-card span {
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-info dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
}

.company-info a {
  color: inherit;
  font-weight: 800;
}

.company-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.company-actions .button {
  min-height: 48px;
  padding-inline: 16px;
  font-size: 13px;
  text-align: center;
  white-space: normal;
}

.company-actions .button-primary {
  grid-column: 1 / -1;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: transparent;
}

.feedback-card {
  grid-template-columns: 1fr;
  row-gap: 8px;
}

.feedback-card p,
.review-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

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

.feedback-mode label {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
}

.feedback-mode input {
  accent-color: var(--gold-500);
}

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

.feedback-fields.is-hidden {
  display: none;
}

.feedback-card input[type="text"],
.feedback-card input[type="tel"],
.feedback-card textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: rgba(7, 26, 54, 0.42);
  color: var(--white);
  font: inherit;
  font-size: 14px;
  outline: 0;
}

.feedback-card input[type="text"],
.feedback-card input[type="tel"] {
  min-height: 36px;
  padding: 0 10px;
}

.feedback-card textarea {
  min-height: 58px;
  resize: vertical;
  padding: 10px;
}

.feedback-card input::placeholder,
.feedback-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.feedback-card input:focus,
.feedback-card textarea:focus {
  border-color: rgba(201, 154, 79, 0.68);
}

.feedback-card .button {
  width: 100%;
  min-height: 38px;
  font-size: 13px;
}

.review-card p {
  margin: 8px 0 0;
}

.rating-choice {
  grid-column: 2;
  grid-row: 2;
  margin: 0 0 10px;
  text-align: right;
}

.rating-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rating-choice label {
  display: inline-block;
  color: var(--gold-500);
  font-size: clamp(22px, 1.9vw, 28px);
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 12px 34px rgba(201, 154, 79, 0.2);
}

.feedback-card > span,
.review-card > span {
  grid-column: 1 / -1;
  margin-bottom: 6px;
}

.review-card .button {
  grid-column: 2;
  grid-row: 3;
  width: auto;
  min-height: 40px;
  padding-inline: 18px;
  font-size: 13px;
  white-space: nowrap;
}

.review-card {
  grid-template-columns: 1fr;
  align-content: start;
  align-items: start;
  row-gap: 12px;
}

.review-card > span,
.rating-choice,
.review-card .button {
  grid-column: auto;
  grid-row: auto;
}

.review-card p {
  max-width: 28rem;
  margin-top: 0;
  line-height: 1.45;
}

.rating-choice {
  margin: 2px 0 4px;
  text-align: left;
}

.review-card .button {
  width: 100%;
  white-space: normal;
}

.share-toast {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 60;
  max-width: min(340px, calc(100vw - 36px));
  padding: 14px 18px;
  background: var(--navy-950);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.share-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(22px, 6vw, 88px);
  color: var(--muted);
  background: var(--paper);
}

.site-footer[data-reveal] {
  opacity: 1;
  transform: none;
}

.footer-brand img {
  width: 42px;
  height: 42px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.internal-panel-link {
  color: rgba(100, 112, 132, 0.75);
  font-size: 12px;
  font-weight: 700;
}

.internal-panel-link:hover {
  color: var(--navy-950);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 900ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.doctor-card[data-reveal],
.team-person-featured[data-reveal],
.map-card[data-reveal] {
  clip-path: inset(6% 0 6% 0);
}

.doctor-card[data-reveal].is-visible,
.team-person-featured[data-reveal].is-visible,
.map-card[data-reveal].is-visible {
  clip-path: inset(0 0 0 0);
}

[data-reveal] h2::after,
.section-intro[data-reveal] h2::after,
.access-copy[data-reveal] h2::after,
.values-title[data-reveal] h2::after,
.location-heading[data-reveal] h2::after {
  transform: scaleX(0);
}

[data-reveal].is-visible h2::after,
.section-intro[data-reveal].is-visible h2::after,
.access-copy[data-reveal].is-visible h2::after,
.values-title[data-reveal].is-visible h2::after,
.location-heading[data-reveal].is-visible h2::after {
  transform: scaleX(1);
}

@media (1200px <= width < 1800px) {
  .hero {
    min-height: min(780px, calc(100vh - 78px));
    grid-template-columns: minmax(650px, 0.82fr) minmax(0, 1fr);
    background:
      linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.9) 46%, rgba(251, 250, 247, 0.32) 78%),
      url("./assets/site-hero-wide.webp") right calc(50% + var(--parallax-y, 0px)) / cover no-repeat,
      var(--paper);
  }

  .hero-copy {
    max-width: 840px;
    padding: clamp(64px, 7vh, 88px) 32px 64px clamp(60px, 6vw, 88px);
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(66px, 6vw, 88px);
  }

  .hero p {
    max-width: 560px;
    font-size: 20px;
  }
}

@media (width >= 1800px) {
  .hero {
    min-height: min(820px, calc(100vh - 78px));
    grid-template-columns: minmax(920px, 0.54fr) minmax(0, 1fr);
    background:
      linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.9) 42%, rgba(251, 250, 247, 0.3) 72%),
      url("./assets/site-hero-wide.webp") right calc(50% + var(--parallax-y, 0px)) / cover no-repeat,
      var(--paper);
  }

  .hero-copy {
    max-width: 1120px;
    padding: clamp(70px, 7vh, 96px) 40px 70px clamp(96px, 6vw, 128px);
  }

  .hero h1 {
    max-width: 960px;
    font-size: clamp(72px, 4.2vw, 96px);
  }

  .hero p {
    max-width: 650px;
    margin-top: 24px;
    font-size: 21px;
  }

  .hero-meta {
    margin-top: 26px;
  }
}

@media (width <= 1120px) {
  .hero,
  .specialties,
  .access-care,
  .access-panel,
  .lucas-card,
  .values-band,
  .team-layout,
  .location-heading,
  .location-content {
    grid-template-columns: 1fr;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.86) 52%, rgba(251, 250, 247, 0.3) 100%),
      url("./assets/site-hero-wide.webp") right calc(100% + var(--parallax-y, 0px)) / auto 72% no-repeat,
      var(--paper);
  }

  .hero-art {
    min-height: 220px;
  }

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

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

@media (width <= 760px) {
  .site-header {
    min-height: 70px;
    padding-inline: 18px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand small {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-button {
    display: block;
    flex: 0 0 auto;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 14px 18px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(251, 250, 247, 0.98);
    box-shadow: 0 24px 42px rgba(7, 26, 54, 0.12);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .main-nav a {
    border-bottom: 1px solid rgba(10, 34, 68, 0.08);
    padding: 13px 0;
  }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 48px 22px 28px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .specialties,
  .access-care,
  .lucas-care,
  .values-band,
  .team {
    padding-inline: 22px;
  }

  .specialty-list,
  .values-list,
  .access-panel,
  .doctor-card,
  .team-person-featured {
    grid-template-columns: 1fr;
  }

  .lucas-card {
    gap: 24px;
  }

  .lucas-photo {
    max-width: 310px;
  }

  .lucas-copy .button {
    width: 100%;
  }

  .access-care {
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.98), rgba(255, 255, 255, 0.92)),
      url("./assets/site-hero-wide.webp") right bottom / auto 60% no-repeat;
  }

  .plans-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .social-highlight {
    min-height: 360px;
  }

  .location {
    padding: 32px 22px 40px;
  }

  .location-heading {
    gap: 14px;
    margin-bottom: 22px;
  }

  .location-heading h2 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .location h2::after {
    margin-top: 16px;
  }

  .map-card,
  .map-card iframe {
    height: 280px;
  }

  .company-panel {
    gap: 0;
  }

  .company-info,
  .feedback-card,
  .review-card {
    padding: 20px;
  }

  .company-info dl {
    gap: 10px;
    margin-top: 14px;
  }

  .company-actions {
    margin-top: 14px;
  }

  .company-actions {
    display: grid;
  }

  .review-card {
    grid-template-columns: 1fr;
  }

  .review-card > span,
  .feedback-card > span,
  .rating-choice,
  .review-card .button {
    grid-column: auto;
    grid-row: auto;
  }

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

  .feedback-mode label {
    gap: 7px;
    padding-inline: 8px;
  }

  .feedback-card textarea {
    min-height: 54px;
  }

  .rating-choice {
    text-align: left;
    margin: 14px 0 16px;
  }

  .review-card .button {
    width: 100%;
  }

  .feedback-card .button {
    width: 100%;
  }

  .values-list,
  .specialty-list {
    border-left: 0;
  }

  .values-list article,
  .specialty-list article {
    border-right: 0;
  }

  .site-footer {
    display: grid;
  }
}

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

  [data-reveal] {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }
}
