:root {
  --ink: #17302c;
  --green-950: #0e302a;
  --green-900: #153d36;
  --green-800: #1d5147;
  --green-700: #28675a;
  --sage: #bcd8cb;
  --mint: #dcebe3;
  --cream: #f2ebde;
  --paper: #fbf8f2;
  --white: #fff;
  --coral: #da7652;
  --line: rgba(23, 48, 44, 0.16);
  --serif: "Lora", Cambria, Georgia, serif;
  --sans: "Nunito Sans", "Segoe UI Variable", "Aptos", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --shell: min(1240px, calc(100% - 48px));
  --section-space: clamp(88px, 10vw, 154px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

.section {
  padding-block: var(--section-space);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-950);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 96px;
  padding-inline: clamp(24px, 4vw, 70px);
  color: var(--white);
  transition:
    min-height 350ms var(--ease),
    color 250ms ease,
    background-color 250ms ease,
    box-shadow 250ms ease;
}

.site-header.is-scrolled,
.menu-open .site-header {
  min-height: 78px;
  background: rgba(251, 248, 242, 0.94);
  box-shadow: 0 12px 40px rgba(15, 48, 42, 0.08);
  color: var(--green-950);
  backdrop-filter: blur(14px);
}

.menu-open .site-header {
  background: transparent;
  box-shadow: none;
  color: var(--paper);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  line-height: 1;
}

.brand__mark {
  width: 46px;
  fill: currentcolor;
}

.brand__mark circle {
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.4;
  stroke-dasharray: 2.7 4;
}

.brand__text {
  display: grid;
  gap: 6px;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.brand__text small {
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 46px);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentcolor;
  transition: transform 350ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-call {
  display: grid;
  gap: 1px;
  line-height: 1.2;
  text-align: right;
}

.header-call span {
  opacity: 0.76;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-call strong {
  font-size: 0.92rem;
}

.menu-toggle {
  position: relative;
  z-index: 75;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  place-content: center;
  gap: 7px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  transition:
    border-color 200ms ease,
    background-color 200ms ease;
}

.is-scrolled .menu-toggle {
  border-color: rgba(23, 48, 44, 0.3);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 1.5px;
  background: currentcolor;
  transition: transform 350ms var(--ease);
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  z-index: 60;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  visibility: hidden;
  color: var(--paper);
  background: var(--green-950);
  clip-path: circle(0 at calc(100% - 95px) 48px);
  transition:
    clip-path 850ms var(--ease-in-out),
    visibility 0s linear 850ms;
}

.menu-panel.is-open {
  visibility: visible;
  clip-path: circle(150% at calc(100% - 95px) 48px);
  transition:
    clip-path 850ms var(--ease-in-out),
    visibility 0s;
}

.menu-panel__halo {
  position: absolute;
  top: 50%;
  right: -14vw;
  width: min(58vw, 800px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.menu-panel__halo::before,
.menu-panel__halo::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.menu-panel__halo::before {
  inset: 13%;
  border: 1px dashed rgba(255, 255, 255, 0.14);
}

.menu-panel__halo::after {
  inset: 30%;
  background: var(--coral);
  opacity: 0.9;
}

.menu-panel__inner {
  position: relative;
  display: grid;
  align-content: center;
  width: min(82%, 1040px);
  min-height: 100%;
  margin-inline: auto;
  padding-block: 100px 50px;
}

.menu-panel__eyebrow {
  margin-bottom: 28px;
  opacity: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 300ms ease 400ms;
}

.is-open .menu-panel__eyebrow {
  opacity: 0.58;
}

.menu-nav {
  display: grid;
  justify-items: start;
  gap: clamp(4px, 1vh, 14px);
}

.menu-nav a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  transform: translateY(34px);
  opacity: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.08;
  transition:
    transform 600ms var(--ease),
    opacity 450ms ease,
    color 220ms ease;
}

.menu-nav a span {
  min-width: 26px;
  opacity: 0.44;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.menu-nav a:hover,
.menu-nav a:focus-visible {
  color: var(--coral);
}

.is-open .menu-nav a {
  transform: translateY(0);
  opacity: 1;
}

.is-open .menu-nav a:nth-child(1) { transition-delay: 220ms; }
.is-open .menu-nav a:nth-child(2) { transition-delay: 290ms; }
.is-open .menu-nav a:nth-child(3) { transition-delay: 360ms; }
.is-open .menu-nav a:nth-child(4) { transition-delay: 430ms; }
.is-open .menu-nav a:nth-child(5) { transition-delay: 500ms; }

.menu-panel__contact {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 42px;
  transform: translateY(18px);
  opacity: 0;
  font-size: 0.84rem;
  transition: 500ms var(--ease) 560ms;
}

.is-open .menu-panel__contact {
  transform: translateY(0);
  opacity: 0.72;
}

.menu-panel__contact a {
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  color: var(--white);
  background: var(--green-900);
}

.hero__media,
.hero__media img,
.hero__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center;
  animation: hero-scale 1.8s var(--ease) both;
}

@keyframes hero-scale {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero__wash {
  background:
    linear-gradient(90deg, rgba(9, 43, 36, 0.93) 0%, rgba(12, 51, 43, 0.78) 34%, rgba(12, 51, 43, 0.16) 68%, rgba(12, 51, 43, 0.05) 100%),
    linear-gradient(0deg, rgba(11, 38, 33, 0.35), transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 108px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--green-700);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: currentcolor;
}

.hero__eyebrow {
  margin-bottom: 26px;
  color: var(--sage);
  animation: hero-up 850ms var(--ease) 600ms both;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(4rem, 8.4vw, 8.3rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
  animation: hero-up 950ms var(--ease) 680ms both;
}

.hero h1 em {
  color: var(--coral);
  font-weight: 400;
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.7;
  animation: hero-up 850ms var(--ease) 760ms both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  animation: hero-up 850ms var(--ease) 840ms both;
}

@keyframes hero-up {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 14px 21px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition:
    transform 250ms var(--ease),
    color 250ms ease,
    background-color 250ms ease,
    border-color 250ms ease;
}

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

.button svg {
  width: 20px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button--light {
  background: var(--paper);
  color: var(--green-950);
}

.button--light:hover {
  background: var(--coral);
  color: var(--green-950);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button--dark {
  background: var(--green-950);
  color: var(--white);
}

.button--dark:hover {
  background: var(--coral);
  color: var(--green-950);
}

.button--outline {
  border-color: var(--green-950);
  color: var(--green-950);
}

.button--outline:hover {
  background: var(--green-950);
  color: var(--white);
}

.hero__signature {
  display: flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  margin-top: clamp(34px, 6vh, 70px);
  animation: hero-up 850ms var(--ease) 920ms both;
}

.hero__signature-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 0.85rem;
}

.hero__signature > span:last-child {
  display: grid;
  line-height: 1.35;
}

.hero__signature small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero__signature strong {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 68px);
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: right bottom;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 56px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.26);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  transform: translateX(-100%);
  background: var(--white);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  50%, 100% { transform: translateX(100%); }
}

.section-heading h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.section-heading > p:last-child:not(.eyebrow) {
  max-width: 580px;
  margin-top: 24px;
  margin-bottom: 0;
  color: rgba(23, 48, 44, 0.7);
  line-height: 1.75;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: end;
}

.section-heading--split > p {
  margin-bottom: 5px;
  color: rgba(23, 48, 44, 0.69);
  font-size: 1.05rem;
  letter-spacing: 0.006em;
  line-height: 1.78;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(64px, 8vw, 112px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-strip article {
  min-width: 0;
  padding: clamp(30px, 4vw, 50px);
}

.value-strip article + article {
  border-left: 1px solid var(--line);
}

.value-strip span,
.service-card > span {
  color: var(--coral);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.value-strip h3 {
  margin: 40px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.12;
}

.value-strip p {
  margin-bottom: 0;
  color: rgba(23, 48, 44, 0.66);
}

.services {
  background: var(--mint);
}

.services .section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 60px;
  align-items: end;
}

.services .section-heading .eyebrow {
  grid-column: 1 / -1;
}

.services .section-heading > p:last-child {
  max-width: 360px;
  margin: 0 0 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(56px, 7vw, 94px);
  overflow: hidden;
  border: 1px solid rgba(23, 48, 44, 0.12);
  border-radius: 28px;
  background: rgba(23, 48, 44, 0.12);
}

.service-card {
  position: relative;
  display: grid;
  min-height: 350px;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  align-content: start;
  background: var(--paper);
  transition:
    color 350ms ease,
    background-color 350ms ease;
}

.service-card::after {
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 120px;
  height: 120px;
  content: "";
  transform: scale(0);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 500ms var(--ease);
}

.service-card:hover {
  background: var(--green-800);
  color: var(--white);
}

.service-card:hover::after {
  transform: scale(3.5);
}

.service-card > svg {
  width: 50px;
  height: 50px;
  margin-bottom: 34px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.service-card > span {
  position: absolute;
  top: 40px;
  right: 42px;
}

.service-card h3 {
  margin: auto 0 14px;
  padding-top: 74px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  font-weight: 400;
  line-height: 1.05;
}

.service-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  color: rgba(23, 48, 44, 0.67);
  transition: color 350ms ease;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.73);
}

.service-card--accent {
  background: var(--coral);
  color: var(--green-950);
}

.service-card--accent > span {
  color: var(--green-950);
}

.service-card--accent p {
  color: var(--green-950);
}

.doctor {
  position: relative;
  overflow: hidden;
  background: var(--green-950);
  color: var(--paper);
}

.doctor::before {
  position: absolute;
  top: -40%;
  left: -20%;
  width: 70vw;
  height: 70vw;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.doctor__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.doctor__visual {
  display: grid;
  place-items: center;
}

.doctor__orbit {
  position: relative;
  display: grid;
  width: min(100%, 490px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.doctor__orbit::before,
.doctor__orbit::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.doctor__orbit::before {
  inset: 9%;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  animation: spin 38s linear infinite;
}

.doctor__orbit::after {
  inset: 25%;
  background: var(--coral);
}

.doctor__monogram {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 8rem);
  letter-spacing: -0.08em;
}

.doctor__star {
  position: absolute;
  z-index: 3;
  top: 9%;
  right: 14%;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--green-950);
  font-size: 1.5rem;
}

.doctor__orbit-text {
  position: absolute;
  bottom: -48px;
  opacity: 0.52;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.doctor .eyebrow {
  color: var(--sage);
}

.doctor h2 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6.2vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.doctor__content > .doctor__statement {
  max-width: 650px;
  margin-bottom: 24px;
  padding-left: 24px;
  border-left: 2px solid var(--coral);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  line-height: 1.48;
}

.doctor__content > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.62);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  transition: color 200ms ease, border-color 200ms ease;
}

.text-link:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

.faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

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

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 28px 0;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 1rem;
  transition: transform 300ms var(--ease), background-color 200ms ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
  background: var(--mint);
}

.faq details p {
  max-width: 660px;
  margin-bottom: 28px;
  padding-right: 50px;
  color: rgba(23, 48, 44, 0.66);
}

.contact {
  padding-top: 0;
}

.contact__card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  min-height: 660px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--cream);
}

.contact__info {
  padding: clamp(42px, 6vw, 82px);
}

.contact__info h2 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.contact__info > p:not(.eyebrow) {
  max-width: 550px;
  color: rgba(23, 48, 44, 0.67);
}

.contact__phone {
  display: grid;
  width: max-content;
  margin-block: 36px;
  line-height: 1.15;
}

.contact__phone small {
  margin-bottom: 7px;
  color: var(--green-700);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact__phone strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.contact__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact__details dt {
  margin-bottom: 6px;
  color: rgba(23, 48, 44, 0.56);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact__details dd {
  margin: 0;
  font-weight: 600;
  line-height: 1.5;
}

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

.contact__map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--sage);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 660px;
  filter: grayscale(0.8) sepia(0.15) contrast(0.92);
  transition: filter 400ms ease;
}

.contact__map:hover iframe {
  filter: grayscale(0.1) sepia(0) contrast(1);
}

.map-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  padding: 12px 16px;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 12px 40px rgba(11, 44, 38, 0.18);
  color: var(--green-950);
  font-size: 0.76rem;
  font-weight: 800;
}

.map-badge span {
  font-size: 1.1rem;
}

.site-footer {
  padding-block: 80px 28px;
  background: var(--green-950);
  color: var(--paper);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 50px;
  align-items: end;
  padding-bottom: 62px;
}

.brand--footer {
  color: var(--sage);
}

.site-footer__top p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
}

.footer-phone {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
}

.site-footer__bottom {
  display: flex;
  padding-top: 24px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

.mobile-quickbar {
  display: none;
}

.js [data-reveal] {
  transform: translateY(38px);
  opacity: 0;
  transition:
    transform 850ms var(--ease) var(--delay, 0ms),
    opacity 650ms ease var(--delay, 0ms);
}

.js-fallback [data-reveal] {
  transform: none;
  opacity: 1;
}

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

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    grid-column: 2;
  }

  .contact__card {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 720px);
    --section-space: 96px;
  }

  .header-call {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 12vw, 6.5rem);
  }

  .section-heading--split,
  .services .section-heading,
  .doctor__grid,
  .faq__grid,
  .contact__card {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 32px;
  }

  .services .section-heading > p:last-child {
    max-width: 580px;
    margin-top: 24px;
  }

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

  .doctor__grid {
    gap: 110px;
  }

  .doctor__orbit {
    width: min(82vw, 460px);
  }

  .faq__grid {
    gap: 48px;
  }

  .contact__map,
  .contact__map iframe {
    min-height: 500px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-phone {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 32px);
    --section-space: 78px;
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 64px;
  }

  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header {
    min-height: 76px;
    padding-inline: 16px;
  }

  .brand {
    gap: 9px;
  }

  .brand__mark {
    width: 38px;
  }

  .brand__text strong {
    font-size: 1.08rem;
  }

  .brand__text small {
    font-size: 0.49rem;
    letter-spacing: 0.14em;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .menu-panel {
    clip-path: circle(0 at calc(100% - 39px) 38px);
  }

  .menu-panel.is-open {
    clip-path: circle(160% at calc(100% - 39px) 38px);
  }

  .menu-panel__inner {
    width: calc(100% - 40px);
    padding-top: 92px;
  }

  .menu-panel__halo {
    right: -60vw;
    width: 125vw;
    opacity: 0.65;
  }

  .menu-nav a {
    gap: 12px;
    font-size: clamp(2.05rem, 10.4vw, 3.15rem);
  }

  .menu-panel__contact {
    display: grid;
    gap: 4px;
    margin-top: 30px;
  }

  .hero {
    min-height: 820px;
    align-items: end;
  }

  .hero__media {
    height: 100%;
  }

  .hero__media img {
    object-position: 50% 30%;
  }

  .hero__wash {
    background:
      linear-gradient(0deg, rgba(9, 43, 36, 0.98) 0%, rgba(9, 43, 36, 0.9) 30%, rgba(9, 43, 36, 0.24) 69%, rgba(9, 43, 36, 0.06) 100%);
  }

  .hero__content {
    padding: 140px 0 64px;
  }

  .hero__eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: clamp(3.5rem, 17vw, 5.2rem);
    line-height: 0.88;
  }

  .hero__lead {
    margin-bottom: 26px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero__actions {
    gap: 9px;
  }

  .hero__actions .button {
    flex: 1 1 auto;
    min-height: 50px;
    padding-inline: 17px;
  }

  .hero__signature {
    margin-top: 26px;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading h2,
  .contact__info h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .value-strip {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .value-strip article {
    padding: 28px 0;
  }

  .value-strip article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .value-strip h3 {
    margin-top: 24px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 48px;
    border-radius: 22px;
  }

  .service-card {
    min-height: 310px;
    padding: 30px 26px;
  }

  .service-card > span {
    top: 30px;
    right: 26px;
  }

  .service-card h3 {
    padding-top: 54px;
  }

  .doctor__grid {
    gap: 84px;
  }

  .doctor__orbit {
    width: min(88vw, 380px);
  }

  .doctor__star {
    width: 52px;
    height: 52px;
  }

  .doctor__content h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .doctor__content > .doctor__statement {
    padding-left: 18px;
  }

  .faq details p {
    padding-right: 0;
  }

  .contact {
    padding-bottom: 0;
  }

  .contact .shell {
    width: 100%;
  }

  .contact__card {
    border-radius: 0;
  }

  .contact__info {
    padding: 64px 20px;
  }

  .contact__phone strong {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .contact__details {
    grid-template-columns: 1fr;
  }

  .contact__actions .button {
    flex: 1 1 auto;
  }

  .contact__map,
  .contact__map iframe {
    min-height: 430px;
  }

  .map-badge {
    right: 16px;
    bottom: 16px;
  }

  .site-footer {
    padding: 68px 0 24px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-phone {
    grid-column: auto;
    grid-row: auto;
    text-align: left;
  }

  .site-footer__bottom {
    display: grid;
    gap: 8px;
  }

  .mobile-quickbar {
    position: fixed;
    z-index: 55;
    right: 10px;
    bottom: 9px;
    left: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(14, 48, 42, 0.94);
    box-shadow: 0 12px 34px rgba(10, 40, 34, 0.22);
    color: var(--white);
    backdrop-filter: blur(12px);
    opacity: 1;
    transition: transform 350ms var(--ease), opacity 220ms ease;
  }

  body:not(.quickbar-visible) .mobile-quickbar,
  .menu-open .mobile-quickbar {
    transform: translateY(130%);
    opacity: 0;
    pointer-events: none;
  }

  .mobile-quickbar a {
    padding: 9px 10px;
    border-radius: 999px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
  }

  .mobile-quickbar a:last-child {
    background: var(--coral);
    color: var(--green-950);
  }
}

@media (hover: none) {
  .service-card:hover:not(.service-card--accent) {
    background: var(--paper);
    color: var(--ink);
  }

  .service-card:hover:not(.service-card--accent) p {
    color: rgba(23, 48, 44, 0.67);
  }
}

@media (max-height: 700px) {
  .menu-panel__inner {
    align-content: start;
    padding-top: 90px;
    padding-bottom: 28px;
  }

  .menu-panel__eyebrow {
    margin-bottom: 12px;
  }

  .menu-nav {
    gap: 2px;
  }

  .menu-nav a {
    font-size: clamp(1.9rem, 7.5vh, 3.6rem);
    line-height: 1;
  }

  .menu-panel__contact {
    margin-top: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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

/* 2026 marka ve 7/24 hizmet revizyonu */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.brand__mark-img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 17px;
  box-shadow: 0 10px 28px rgba(7, 37, 31, 0.16);
  object-fit: cover;
  transition: transform 300ms var(--ease), border-radius 300ms var(--ease);
}

.brand:hover .brand__mark-img,
.brand:focus-visible .brand__mark-img {
  transform: rotate(-4deg) scale(1.04);
  border-radius: 50%;
}

.site-header.is-scrolled .brand__mark-img {
  border-color: rgba(23, 48, 44, 0.16);
}

.brand__text strong {
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.brand__text small {
  letter-spacing: 0.16em;
}

.desktop-nav {
  gap: clamp(18px, 2.4vw, 38px);
  font-size: 0.78rem;
}

.header-call {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.header-call__copy {
  display: grid;
  gap: 1px;
}

.header-call__copy small {
  opacity: 0.74;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-call__copy strong {
  font-size: 0.9rem;
}

.call-link__icon {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--green-950);
}

.call-link__icon::before,
.call-link__icon::after {
  position: absolute;
  inset: -1px;
  content: "";
  border: 1px solid currentcolor;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
}

.call-link:hover .call-link__icon::before,
.call-link:focus-visible .call-link__icon::before {
  animation: call-ring 900ms ease-out infinite;
}

.call-link:hover .call-link__icon::after,
.call-link:focus-visible .call-link__icon::after {
  animation: call-ring 900ms ease-out 300ms infinite;
}

.call-link__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

@keyframes call-ring {
  from { transform: scale(1); opacity: 0.65; }
  to { transform: scale(1.55); opacity: 0; }
}

.menu-panel__contact {
  flex-wrap: wrap;
}

.menu-panel__contact a:last-child {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__slides,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 1000ms ease,
    transform 6500ms ease,
    visibility 0s linear 1000ms;
}

.hero-slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 1000ms ease,
    transform 6500ms ease,
    visibility 0s;
}

.hero__media img,
.hero-slide.is-active img {
  animation: none;
}

.hero__wash {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 38, 32, 0.95) 0%, rgba(10, 45, 38, 0.82) 39%, rgba(10, 45, 38, 0.25) 70%, rgba(10, 45, 38, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 34, 29, 0.48), transparent 48%);
}

.hero__content {
  padding-top: 94px;
  padding-bottom: 90px;
}

.hero h1 {
  max-width: 940px;
  font-size: clamp(3.8rem, 7.3vw, 7.25rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.hero h1 em {
  font-style: normal;
  font-weight: 500;
}

.hero__lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #7ee0a6;
  box-shadow: 0 0 0 6px rgba(126, 224, 166, 0.13);
  animation: status-pulse 2.4s ease-in-out infinite;
}

@keyframes status-pulse {
  50% { box-shadow: 0 0 0 10px rgba(126, 224, 166, 0); }
}

.button--call {
  min-width: 250px;
  justify-content: flex-start;
  gap: 13px;
  padding: 9px 20px 9px 9px;
}

.button--call > span:last-child {
  display: grid;
  gap: 1px;
  text-align: left;
}

.button--call small {
  opacity: 0.76;
  font-size: 0.59rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button--call strong {
  font-size: 0.9rem;
}

.hero__trustline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  animation: hero-up 850ms var(--ease) 920ms both;
}

.hero__trustline span + span {
  position: relative;
  padding-left: 24px;
}

.hero__trustline span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--coral);
}

.hero__trustline strong {
  color: var(--white);
  font-family: var(--serif);
  font-weight: 500;
}

.hero-slider {
  position: absolute;
  z-index: 4;
  right: clamp(24px, 4vw, 70px);
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.hero-slider__arrow {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(10, 45, 38, 0.18);
  color: var(--white);
  backdrop-filter: blur(8px);
  transition: transform 220ms var(--ease), background-color 220ms ease;
}

.hero-slider__arrow:hover,
.hero-slider__arrow:focus-visible {
  transform: scale(1.06);
  background: var(--coral);
  color: var(--green-950);
}

.hero-slider__arrow svg {
  width: 20px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-slider__status {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.hero-slider__status i {
  position: relative;
  width: 76px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.hero-slider__status b {
  position: absolute;
  inset: 0;
  display: block;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--white);
}

.hero-slider.is-running .hero-slider__status b {
  animation: hero-progress 7s linear both;
}

@keyframes hero-progress {
  to { transform: scaleX(1); }
}

.hero-slider__dots {
  display: none;
  gap: 6px;
}

.hero-slider__dots button {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.hero-slider__dots button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  content: "";
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  transition: width 220ms var(--ease), background-color 220ms ease;
}

.hero-slider__dots button.is-active::before {
  width: 22px;
  border-radius: 999px;
  background: var(--coral);
}

.hero-slider__toggle {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: rgba(10, 45, 38, 0.18);
  color: var(--white);
  backdrop-filter: blur(8px);
  transition: transform 220ms var(--ease), background-color 220ms ease;
}

.hero-slider__toggle:hover,
.hero-slider__toggle:focus-visible,
.hero-slider__toggle[aria-pressed="true"] {
  transform: scale(1.06);
  background: var(--coral);
  color: var(--green-950);
}

.hero-slider__pause {
  display: flex;
  gap: 4px;
}

.hero-slider__pause i {
  width: 2px;
  height: 13px;
  border-radius: 2px;
  background: currentcolor;
}

.hero-slider__play {
  display: none;
  width: 18px;
  fill: currentcolor;
}

.hero-slider__toggle[aria-pressed="true"] .hero-slider__pause {
  display: none;
}

.hero-slider__toggle[aria-pressed="true"] .hero-slider__play {
  display: block;
}

.emergency-strip {
  position: relative;
  z-index: 5;
  background: var(--coral);
  color: var(--green-950);
}

.emergency-strip__inner {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  min-height: 116px;
  align-items: center;
  gap: clamp(16px, 3vw, 38px);
}

.emergency-strip__icon {
  width: 54px;
  height: 54px;
  background: var(--green-950);
  color: var(--paper);
}

.emergency-strip__inner > span:nth-child(2) {
  display: grid;
  line-height: 1.2;
}

.emergency-strip small,
.footer-phone small {
  opacity: 1;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.emergency-strip strong {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  font-weight: 500;
}

.emergency-strip__areas {
  justify-self: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.emergency-strip__hint {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 800;
}

.emergency-strip__hint b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(18, 61, 53, 0.32);
  border-radius: 50%;
  transition: transform 250ms var(--ease), background-color 250ms ease;
}

.emergency-strip__inner:hover .emergency-strip__hint b {
  transform: rotate(45deg);
  background: var(--paper);
}

.care-marquee {
  margin-top: clamp(72px, 9vw, 124px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: rgba(23, 48, 44, 0.7);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2.4rem);
  line-height: 1;
  white-space: nowrap;
}

.care-marquee div {
  width: max-content;
  padding-block: 24px;
  animation: marquee 34s linear infinite;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.service-grid--detailed {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.service-grid--detailed .service-card {
  grid-column: span 4;
  min-height: 365px;
  padding: 34px;
  border: 1px solid rgba(23, 48, 44, 0.11);
  border-radius: 27px;
  box-shadow: 0 18px 42px rgba(16, 61, 52, 0.045);
}

.service-grid--detailed .service-card:nth-child(n + 6) {
  grid-column: span 3;
}

.service-grid--detailed .service-card::after {
  right: -55px;
  bottom: -55px;
  width: 150px;
  height: 150px;
}

.service-card__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-card__top span {
  color: var(--coral);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card__top b {
  display: grid;
  min-width: 44px;
  height: 44px;
  padding-inline: 12px;
  place-items: center;
  border: 1px solid rgba(23, 48, 44, 0.15);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 500;
  transition: transform 350ms var(--ease), background-color 250ms ease;
}

.service-card__top i {
  color: rgba(23, 48, 44, 0.35);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: normal;
  line-height: 1;
}

.service-grid--detailed .service-card h3 {
  margin: auto 0 14px;
  padding-top: 70px;
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  font-weight: 500;
}

.service-grid--detailed .service-card p {
  font-size: 0.96rem;
  line-height: 1.68;
}

.service-card__tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card__tags li {
  padding: 6px 9px;
  border: 1px solid rgba(23, 48, 44, 0.13);
  border-radius: 999px;
  color: rgba(23, 48, 44, 0.72);
  font-size: 0.75rem;
  font-weight: 700;
}

.service-card:hover .service-card__tags li {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
}

.service-card--accent .service-card__top span,
.service-card--accent .service-card__tags li {
  color: var(--green-950);
}

.service-card--accent .service-card__tags li {
  border-color: rgba(14, 48, 42, 0.2);
}

.service-card--soft {
  background: var(--sage);
}

.service-grid--detailed .service-card--feature {
  grid-column: span 8;
  min-height: 520px;
  padding: 0;
  color: var(--white);
  background: var(--green-900);
}

.service-card--feature > img,
.service-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card--feature > img {
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.service-card--feature:hover > img {
  transform: scale(1.04);
}

.service-card__shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 39, 33, 0.95), rgba(8, 39, 33, 0.72) 55%, rgba(8, 39, 33, 0.15));
}

.service-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(68%, 610px);
  min-height: 520px;
  padding: clamp(34px, 5vw, 58px);
  align-content: end;
}

.service-card--feature .service-card__top {
  margin-bottom: auto;
}

.service-card--feature .service-card__top span {
  color: var(--sage);
}

.service-card--feature .service-card__top b {
  min-width: 64px;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.72rem;
}

.service-grid--detailed .service-card--feature h3 {
  margin: 0 0 15px;
  padding: 80px 0 0;
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
}

.service-card--feature p,
.service-card--feature:hover p {
  color: rgba(255, 255, 255, 0.8);
}

.service-card--feature .service-card__tags li,
.service-card--feature:hover .service-card__tags li {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.78);
}

.service-card__call {
  display: inline-flex;
  width: max-content;
  margin-top: 24px;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
}

.service-card__call span {
  transition: transform 250ms var(--ease);
}

.service-card__call:hover span {
  transform: rotate(45deg);
}

.services__cta {
  display: flex;
  margin-top: 34px;
  padding: 25px 28px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(23, 48, 44, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4);
}

.services__cta > span {
  color: rgba(23, 48, 44, 0.66);
}

.services__cta a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 700;
}

.services__cta a b {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
}

.services__cta a i {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-950);
  color: var(--white);
  font-style: normal;
  transition: transform 250ms var(--ease);
}

.services__cta a:hover i {
  transform: rotate(45deg);
}

.doctor__grid {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
  gap: clamp(56px, 9vw, 132px);
}

.doctor__visual {
  position: relative;
  display: block;
  margin: 0;
}

.doctor__visual::before,
.doctor__visual::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.doctor__visual::before {
  top: -8%;
  left: -12%;
  width: 70%;
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  animation: spin 38s linear infinite;
}

.doctor__visual::after {
  right: -9%;
  bottom: 8%;
  width: 38%;
  aspect-ratio: 1;
  background: var(--coral);
}

.doctor__photo-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 38px 38px 150px 38px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.doctor__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms var(--ease);
}

.doctor__photo-wrap:hover img {
  transform: scale(1.025);
}

.doctor__photo-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 35, 30, 0.4), transparent 44%);
  pointer-events: none;
}

.doctor__badge {
  position: absolute;
  z-index: 2;
  right: auto;
  bottom: 24px;
  left: 24px;
  display: flex;
  padding: 12px 16px;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.92);
  box-shadow: 0 16px 38px rgba(7, 35, 30, 0.2);
  color: var(--green-950);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  backdrop-filter: blur(10px);
}

.doctor__badge i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-700);
  box-shadow: 0 0 0 5px rgba(45, 126, 101, 0.14);
}

.doctor h2,
.doctor__content > .doctor__statement,
.contact__info h2,
.contact__phone strong,
.footer-phone {
  font-weight: 500;
}

.faq__list details:first-child summary {
  color: var(--green-800);
}

.contact__card {
  min-height: 720px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__phone {
  display: flex;
  width: min(100%, 520px);
  padding: 18px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(23, 48, 44, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.46);
  transition: transform 260ms var(--ease), box-shadow 260ms ease;
}

.contact__phone:hover,
.contact__phone:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(19, 61, 53, 0.1);
}

.contact__phone > span:last-child {
  display: grid;
  min-width: 0;
  flex: 1 1 auto;
  gap: 5px;
}

.contact__phone-icon {
  width: 54px;
  height: 54px;
}

.contact__phone strong {
  display: block;
  white-space: nowrap;
  font-size: clamp(1.75rem, 2.5vw, 2.65rem);
  font-variant-numeric: tabular-nums;
}

@media (min-width: 901px) {
  .contact__card {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  }

  .contact__info {
    padding-inline: clamp(42px, 4vw, 64px);
  }
}

.contact__details {
  grid-template-columns: 1fr 1fr;
}

.contact__details > div:last-child {
  grid-column: 1 / -1;
}

.contact__details dd .status-dot,
.site-footer__address .status-dot {
  width: 7px;
  height: 7px;
  margin-right: 9px;
}

.instagram-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  width: min(100%, 520px);
  margin-top: 24px;
  padding: 14px 17px;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(23, 48, 44, 0.13);
  border-radius: 18px;
  transition: transform 250ms var(--ease), background-color 250ms ease;
}

.instagram-card:hover,
.instagram-card:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.5);
}

.instagram-card svg,
.footer-instagram svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.6;
}

.instagram-card .fill-dot,
.footer-instagram .fill-dot {
  fill: currentcolor;
  stroke: none;
}

.instagram-card > span {
  display: grid;
  line-height: 1.3;
}

.instagram-card small {
  color: rgba(23, 48, 44, 0.55);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.instagram-card strong {
  font-size: 0.86rem;
}

.instagram-card > b {
  transition: transform 250ms var(--ease);
}

.instagram-card:hover > b {
  transform: rotate(45deg);
}

.site-footer__top {
  grid-template-columns: 160px minmax(260px, 1fr) auto;
  align-items: center;
}

.footer-logo {
  display: block;
  width: 160px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: var(--paper);
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.site-footer__address strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.site-footer__address p {
  max-width: 430px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.56);
}

.site-footer__address > span {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-footer__contact {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.footer-phone {
  display: grid;
  line-height: 1.2;
  text-align: right;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 200ms ease;
}

.footer-instagram:hover,
.footer-instagram:focus-visible {
  color: var(--coral);
}

.mobile-quickbar a:first-child {
  display: grid;
  gap: 1px;
  line-height: 1.15;
}

.mobile-quickbar a:first-child span {
  opacity: 0.66;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-quickbar a:first-child strong {
  font-size: 0.72rem;
}

@media (max-width: 1120px) {
  .brand__text strong {
    font-size: 1rem;
  }

  .desktop-nav {
    display: none;
  }

  .service-grid--detailed .service-card:nth-child(n + 6) {
    grid-column: span 4;
  }
}

@media (max-width: 900px) {
  .header-call {
    display: none;
  }

  .hero__content {
    padding-bottom: 126px;
  }

  .hero-slider {
    right: 24px;
  }

  .emergency-strip__inner {
    grid-template-columns: auto 1fr auto;
  }

  .emergency-strip__areas {
    display: none;
  }

  .service-grid--detailed .service-card,
  .service-grid--detailed .service-card:nth-child(n + 6) {
    grid-column: span 6;
  }

  .service-grid--detailed .service-card--feature {
    grid-column: 1 / -1;
  }

  .doctor__grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .doctor__visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .site-footer__top {
    grid-template-columns: 200px 1fr;
  }

  .site-footer__contact {
    grid-column: 1 / -1;
    justify-items: start;
  }

  .footer-phone {
    text-align: left;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header {
    min-height: 78px;
  }

  .brand__mark-img {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .brand__text {
    gap: 4px;
  }

  .brand__text strong {
    font-size: 0.93rem;
  }

  .brand__text small {
    font-size: 0.43rem;
    letter-spacing: 0.12em;
  }

  .menu-panel__contact a:last-child {
    padding-left: 0;
    border-left: 0;
  }

  .hero {
    min-height: max(800px, 100svh);
    align-items: end;
  }

  .hero-slide img {
    object-position: center top;
  }

  .hero-slide--kittens img,
  .hero-slide--general img {
    object-position: center top;
  }

  .hero__wash {
    background:
      linear-gradient(0deg, rgba(7, 38, 32, 0.99) 0%, rgba(7, 38, 32, 0.94) 38%, rgba(7, 38, 32, 0.34) 72%, rgba(7, 38, 32, 0.06) 100%);
  }

  .hero__content {
    padding: 150px 0 166px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4.65rem);
    line-height: 0.93;
  }

  .hero__lead {
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .button--call {
    min-width: 0;
  }

  .hero__trustline {
    display: grid;
    gap: 5px;
    margin-top: 22px;
  }

  .hero__trustline span + span {
    padding-left: 0;
  }

  .hero__trustline span + span::before {
    display: none;
  }

  .hero-slider {
    right: 16px;
    bottom: 92px;
    left: 16px;
    justify-content: space-between;
  }

  .hero-slider__arrow {
    display: none;
  }

  .hero-slider__dots {
    display: flex;
    gap: 0;
  }

  .hero-slider__status i {
    width: 56px;
  }

  .services.section {
    padding-top: 64px;
  }

  .services .service-grid {
    margin-top: 34px;
  }

  .emergency-strip__inner {
    grid-template-columns: auto 1fr;
    min-height: 106px;
    gap: 13px;
  }

  .emergency-strip__icon {
    width: 48px;
    height: 48px;
  }

  .emergency-strip__hint {
    display: none;
  }

  .care-marquee {
    margin-top: 68px;
  }

  .care-marquee div {
    padding-block: 18px;
  }

  .service-grid--detailed {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-grid--detailed .service-card,
  .service-grid--detailed .service-card:nth-child(n + 6),
  .service-grid--detailed .service-card--feature {
    grid-column: 1;
  }

  .service-grid--detailed .service-card {
    min-height: 300px;
    padding: 28px 24px;
  }

  .service-grid--detailed .service-card h3 {
    padding-top: 48px;
    font-size: 1.7rem;
  }

  .service-grid--detailed .service-card--feature {
    min-height: 560px;
    padding: 0;
  }

  .service-card--feature > img {
    object-position: 63% center;
  }

  .service-card__shade {
    background: linear-gradient(0deg, rgba(8, 39, 33, 0.98), rgba(8, 39, 33, 0.76) 60%, rgba(8, 39, 33, 0.18));
  }

  .service-card__content {
    width: 100%;
    min-height: 560px;
    padding: 28px 24px;
  }

  .service-grid--detailed .service-card--feature h3 {
    padding-top: 80px;
    font-size: 2.45rem;
  }

  .service-card__tags {
    margin-top: 16px;
  }

  .services__cta {
    display: grid;
    padding: 22px;
  }

  .services__cta a {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .services__cta a b {
    grid-column: 1;
  }

  .services__cta a i {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .doctor__grid {
    gap: 48px;
  }

  .doctor__photo-wrap {
    border-radius: 28px 28px 96px 28px;
  }

  .doctor__badge {
    right: auto;
    bottom: 15px;
    left: 15px;
  }

  .contact__card {
    min-height: 0;
  }

  .contact__phone {
    padding: 14px;
  }

  .contact__phone-icon {
    width: 48px;
    height: 48px;
  }

  .contact__phone strong {
    font-size: clamp(1.45rem, 7.2vw, 2.1rem);
  }

  .contact__details,
  .contact__details > div:last-child {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .instagram-card {
    margin-top: 20px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: min(100%, 160px);
  }

  .site-footer__contact {
    grid-column: auto;
  }

  .mobile-quickbar {
    bottom: max(9px, env(safe-area-inset-bottom));
    min-height: 58px;
  }

  .mobile-quickbar a {
    display: grid;
    place-content: center;
  }
}

@media (max-width: 390px) {
  .brand__text strong {
    font-size: 0.84rem;
  }

  .brand__text small {
    font-size: 0.5rem;
  }

  .hero-slider__status i {
    display: none;
  }

  .hero-slider__status span:first-child::after {
    content: " /";
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13.5vw, 3.55rem);
  }

  .hero__lead {
    font-size: 0.88rem;
  }
}

@media (hover: none) {
  .service-grid--detailed .service-card:hover:not(.service-card--accent):not(.service-card--feature) {
    background: var(--paper);
    color: var(--ink);
  }

  .service-grid--detailed .service-card--soft:hover {
    background: var(--sage);
  }

  .service-grid--detailed .service-card:hover:not(.service-card--feature) p,
  .service-grid--detailed .service-card:hover:not(.service-card--feature) .service-card__tags li {
    color: rgba(23, 48, 44, 0.7);
  }

  .service-grid--detailed .service-card:hover:not(.service-card--feature) .service-card__tags li {
    border-color: rgba(23, 48, 44, 0.13);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide.is-active {
    transform: none;
  }

  .hero-slider.is-running .hero-slider__status b,
  .care-marquee div,
  .status-dot,
  .doctor__visual::before,
  .call-link:hover .call-link__icon::before,
  .call-link:focus-visible .call-link__icon::before,
  .call-link:hover .call-link__icon::after,
  .call-link:focus-visible .call-link__icon::after {
    animation: none;
  }

  .hero-slider__toggle {
    display: none;
  }
}
