:root {
  --warm-white: #fbfaf6;
  --paper: #ffffff;
  --soft-mint: #e2f4f1;
  --mint: #8ed1c6;
  --deep-teal: #2f5d62;
  --teal-dark: #1e4247;
  --peach: #f4d7c7;
  --ink: #172a2d;
  --muted: #607174;
  --line: rgba(47, 93, 98, 0.14);
  --shadow: 0 28px 80px rgba(77, 86, 75, 0.14);
  --warm-shadow: 0 30px 90px rgba(116, 82, 62, 0.16);
  --cinematic-shadow: 0 34px 110px rgba(67, 74, 68, 0.16);
  --ivory-light: rgba(255, 252, 245, 0.82);
  --teal-light: rgba(223, 246, 245, 0.48);
  --peach-light: rgba(246, 214, 201, 0.28);
  --photo-grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23g)' opacity='.18'/%3E%3C/svg%3E");
  --photo-grade: saturate(0.82) contrast(0.9) brightness(1.035) sepia(0.045);
  --photo-grade-soft: saturate(0.78) contrast(0.88) brightness(1.045) sepia(0.06);
  --radius: 8px;
  --max: 1180px;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  position: relative;
  margin: 0;
  background:
    radial-gradient(ellipse at 16% 0%, rgba(246, 214, 201, 0.3), transparent 42%),
    radial-gradient(ellipse at 90% 14%, rgba(223, 246, 245, 0.36), transparent 44%),
    linear-gradient(180deg, #fbfaf6 0%, #f7fbf9 42%, #fbfaf6 100%);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -10% 0 30%;
  z-index: -2;
  height: 48vh;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0%, rgba(223, 246, 245, 0.28) 44%, rgba(246, 214, 201, 0.18) 68%, transparent 100%);
  filter: blur(54px);
}

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

button,
input,
textarea {
  font: inherit;
}

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

main {
  position: relative;
  overflow: hidden;
}

main::before {
  content: "";
  position: absolute;
  inset: 6% -22% 16%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 74% 22%, rgba(223, 246, 245, 0.32), transparent 42%),
    radial-gradient(ellipse at 4% 52%, rgba(246, 214, 201, 0.2), transparent 44%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.28) 44%, transparent 100%);
  filter: blur(28px);
  opacity: 0.82;
}

main > section {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1188px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(255, 252, 245, 0.96), transparent 48%),
    radial-gradient(ellipse at 82% 100%, rgba(223, 246, 245, 0.44), transparent 46%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(248, 253, 251, 0.48)),
    rgba(251, 250, 246, 0.58);
  backdrop-filter: blur(34px) saturate(1.24);
  -webkit-backdrop-filter: blur(34px) saturate(1.24);
  box-shadow:
    0 20px 70px rgba(47, 93, 98, 0.1),
    0 6px 24px rgba(116, 82, 62, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(47, 93, 98, 0.055);
  transition:
    box-shadow 520ms var(--ease-luxury),
    background 520ms var(--ease-luxury),
    border-color 520ms var(--ease-luxury),
    transform 520ms var(--ease-luxury);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.site-header::before {
  inset: -1px;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.74), rgba(142, 209, 198, 0.22) 44%, rgba(246, 214, 201, 0.24));
  opacity: 0.6;
  filter: blur(0.2px);
}

.site-header::after {
  inset: -22px 9% auto;
  z-index: -2;
  height: 42px;
  background:
    radial-gradient(ellipse at center, rgba(223, 246, 245, 0.5), transparent 66%),
    radial-gradient(ellipse at 24% 40%, rgba(246, 214, 201, 0.22), transparent 64%);
  filter: blur(22px);
  opacity: 0.72;
}

.site-header.is-elevated {
  background:
    radial-gradient(ellipse at 18% 0%, rgba(255, 252, 245, 0.98), transparent 48%),
    radial-gradient(ellipse at 84% 100%, rgba(223, 246, 245, 0.54), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(248, 253, 251, 0.64)),
    rgba(251, 250, 246, 0.78);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 28px 86px rgba(47, 93, 98, 0.14),
    0 10px 32px rgba(116, 82, 62, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(47, 93, 98, 0.07);
  transform: translateY(-3px);
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.site-nav a {
  position: relative;
  isolation: isolate;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(30, 66, 71, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    color 340ms var(--ease-luxury),
    transform 340ms var(--ease-luxury),
    text-shadow 340ms var(--ease-luxury);
}

.site-nav a::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: 7px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.78), transparent 58%),
    linear-gradient(135deg, rgba(223, 246, 245, 0.78), rgba(255, 252, 245, 0.58));
  box-shadow:
    0 12px 30px rgba(47, 93, 98, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  opacity: 0;
  transform: scale(0.96) translateY(2px);
  transition:
    opacity 340ms var(--ease-luxury),
    transform 340ms var(--ease-luxury);
}

.site-nav a:hover {
  color: var(--teal-dark);
  text-shadow: 0 1px 18px rgba(142, 209, 198, 0.34);
  transform: translateY(-2px);
}

.site-nav a:hover::before {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.nav-toggle {
  position: relative;
  z-index: 1;
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(223, 246, 245, 0.58)),
    var(--soft-mint);
  box-shadow:
    0 12px 28px rgba(47, 93, 98, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: transform 260ms var(--ease-luxury), box-shadow 260ms var(--ease-luxury);
}

.nav-toggle:hover {
  transform: translateY(-1px);
  box-shadow:
    0 16px 34px rgba(47, 93, 98, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--deep-teal);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: clamp(54px, 8vw, 126px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(86px, 10vw, 154px) 0 clamp(58px, 8vw, 104px);
}

.hero-atmosphere {
  position: absolute;
  inset: -18% -16% -10%;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.hero-atmosphere span {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(54px);
  opacity: 0.42;
  transform: rotate(-8deg);
}

.hero-atmosphere span:nth-child(1) {
  width: 54vw;
  height: 26vw;
  top: 6%;
  right: -12%;
  background: rgba(223, 246, 245, 0.72);
}

.hero-atmosphere span:nth-child(2) {
  width: 42vw;
  height: 20vw;
  top: 40%;
  left: -16%;
  background: rgba(246, 214, 201, 0.38);
}

.hero-atmosphere span:nth-child(3) {
  width: 34vw;
  height: 18vw;
  right: 18%;
  bottom: 0;
  background: rgba(233, 227, 245, 0.22);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -22% -18% 4% -18%;
  z-index: -1;
  background:
    radial-gradient(ellipse at 78% 16%, rgba(223, 246, 245, 0.76), transparent 44%),
    radial-gradient(ellipse at 30% 8%, rgba(255, 255, 255, 0.72), transparent 36%),
    radial-gradient(ellipse at 8% 38%, rgba(246, 214, 201, 0.42), transparent 48%),
    radial-gradient(ellipse at 62% 84%, rgba(233, 227, 245, 0.18), transparent 44%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.68), rgba(251, 250, 246, 0));
  filter: blur(4px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 12% 0 auto;
  z-index: -1;
  height: 100%;
  background:
    radial-gradient(ellipse at center, transparent 52%, rgba(251, 250, 246, 0.72) 100%),
    linear-gradient(90deg, rgba(251, 250, 246, 0.52), transparent 16%, transparent 84%, rgba(251, 250, 246, 0.62));
  opacity: 0.72;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: -28px;
  left: -26px;
  width: 1px;
  height: 154px;
  background: linear-gradient(180deg, transparent, rgba(47, 93, 98, 0.24), transparent);
  opacity: 0.54;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--deep-teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.85rem, 3.6vw, 3.5rem);
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.hero-lede {
  max-width: 610px;
  margin: 34px 0 0;
  color: #526569;
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 260ms var(--ease-luxury), box-shadow 260ms var(--ease-luxury), background 260ms var(--ease-luxury), border-color 260ms var(--ease-luxury);
}

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

.button.primary {
  background: linear-gradient(135deg, var(--deep-teal), #244d52);
  color: var(--warm-white);
  box-shadow: 0 18px 42px rgba(47, 93, 98, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button.soft {
  background: rgba(223, 246, 245, 0.72);
  color: var(--teal-dark);
  box-shadow: inset 0 0 0 1px rgba(47, 93, 98, 0.08);
}

.button.ghost {
  border-color: var(--line);
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.34);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 36px 0 0;
  max-width: 720px;
  border: 1px solid rgba(47, 93, 98, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(47, 93, 98, 0.09);
  box-shadow: 0 18px 45px rgba(47, 93, 98, 0.06);
}

.trust-strip div {
  padding: 18px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
}

.trust-strip dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  transform-style: preserve-3d;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 8px;
  transform: rotate(-7deg);
}

.hero-visual::before {
  inset: 7% auto auto -12%;
  z-index: -1;
  width: 42%;
  height: 22%;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: linear-gradient(135deg, rgba(255, 252, 245, 0.42), rgba(223, 246, 245, 0.18));
  box-shadow: 0 26px 70px rgba(47, 93, 98, 0.08);
  backdrop-filter: blur(12px);
}

.hero-visual::after {
  right: -10%;
  bottom: 9%;
  z-index: -2;
  width: 54%;
  height: 34%;
  background:
    radial-gradient(ellipse at 22% 24%, rgba(255, 252, 245, 0.72), transparent 42%),
    linear-gradient(135deg, rgba(246, 214, 201, 0.22), rgba(223, 246, 245, 0.2));
  filter: blur(24px);
  opacity: 0.76;
}

.portrait-card {
  position: relative;
  isolation: isolate;
  min-height: 700px;
  padding: 18px;
  border: 1px solid rgba(47, 93, 98, 0.12);
  border-radius: 8px;
  overflow: visible;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 251, 247, 0.56)),
    rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(18px);
  box-shadow: var(--cinematic-shadow);
  transform: translateY(12px) translateX(-8px);
  animation: portraitFloat 12s var(--ease-luxury) infinite alternate;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 30px -34px -28px 42px;
  z-index: -2;
  border: 1px solid rgba(246, 214, 201, 0.36);
  border-radius: 8px;
  background: rgba(246, 214, 201, 0.1);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: auto 34px -34px 12%;
  z-index: -3;
  height: 90px;
  border-radius: 50%;
  background: rgba(63, 84, 82, 0.16);
  filter: blur(30px);
}

.portrait-glow {
  position: absolute;
  inset: 8% -7% 12% 8%;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 246, 245, 0.72), rgba(246, 214, 201, 0.34) 52%, rgba(255, 255, 255, 0));
  filter: blur(42px);
  z-index: -2;
}

.portrait-frame {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 570px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(47, 93, 98, 0.06)),
    radial-gradient(ellipse at 50% 16%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 54%),
    linear-gradient(110deg, rgba(223, 246, 245, 0.38), rgba(246, 214, 201, 0.18));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    inset 0 -54px 82px rgba(47, 93, 98, 0.08);
}

.service-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: var(--photo-grain);
  opacity: 0.09;
  mix-blend-mode: multiply;
}

.doctor-portrait {
  position: relative;
  z-index: 1;
  display: block;
  width: min(88%, 438px);
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 34px 42px rgba(23, 42, 45, 0.18));
}

.portrait-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.88), rgba(245, 252, 250, 0.72)),
    rgba(251, 250, 246, 0.82);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 48px rgba(47, 93, 98, 0.11);
}

.portrait-note span {
  color: var(--muted);
  font-size: 0.9rem;
}

.portrait-note strong {
  color: var(--teal-dark);
  font-family: "Manrope", sans-serif;
}

.signature-section {
  padding: clamp(96px, 12vw, 168px) 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 8% 16%, rgba(142, 209, 198, 0.18), transparent 34%),
    radial-gradient(ellipse at 88% 78%, rgba(246, 214, 201, 0.12), transparent 40%),
    linear-gradient(145deg, #172a2d, #23474c 68%, #1e4247);
  color: var(--warm-white);
}

.signature-section::before {
  content: "";
  position: absolute;
  inset: -18% -12% auto;
  height: 52%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 24% 18%, rgba(223, 246, 245, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(255, 252, 245, 0.08), transparent);
  filter: blur(20px);
}

.signature-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.signature-copy {
  position: sticky;
  top: 110px;
}

.signature-section .eyebrow,
.signature-section h2,
.signature-card h3 {
  color: var(--warm-white);
}

.signature-stack {
  display: grid;
  gap: 14px;
}

.signature-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(250, 250, 248, 0.13);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(250, 250, 248, 0.1), rgba(250, 250, 248, 0.055));
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(5, 21, 24, 0.12);
}

.signature-card:nth-child(2) {
  transform: translateX(-28px);
}

.signature-card:nth-child(3) {
  transform: translateX(24px);
}

.signature-card h3 {
  position: relative;
  padding-bottom: 18px;
}

.signature-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
}

.signature-card p {
  margin: 14px 0 0;
  color: rgba(250, 250, 248, 0.72);
}

.why-section {
  padding: clamp(96px, 11vw, 156px) 0 clamp(76px, 9vw, 124px);
}

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

.why-card {
  min-height: 220px;
  padding: 32px;
  border: 1px solid rgba(47, 93, 98, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(223, 246, 245, 0.74), rgba(246, 214, 201, 0.24));
  box-shadow: 0 18px 56px rgba(47, 93, 98, 0.07);
  transition: transform 260ms var(--ease-luxury), box-shadow 260ms var(--ease-luxury);
}

.why-card:first-child {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(246, 214, 201, 0.24)),
    var(--soft-mint);
  box-shadow: var(--shadow);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 70px rgba(47, 93, 98, 0.11);
}

.why-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--mint);
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.why-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.split-section,
.seo-section,
.contact-section {
  padding: clamp(88px, 11vw, 156px) 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.about-cover {
  grid-column: 1 / -1;
  margin: 0 0 clamp(36px, 5vw, 56px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--cinematic-shadow);
}

.about-cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  object-position: center 25%;
}

.section-kicker {
  position: sticky;
  top: 110px;
}

.about-content p {
  margin: 0 0 22px;
  color: #465d60;
  font-size: 1.08rem;
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.education-grid article {
  min-height: 270px;
  padding: 20px;
  border: 1px solid rgba(47, 93, 98, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(47, 93, 98, 0.06);
}

.education-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 104px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.78);
}

.education-logo img {
  display: block;
  max-width: 112px;
  max-height: 76px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.education-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.education-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
}

.education-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.academic-section {
  padding: clamp(90px, 11vw, 150px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(223, 246, 245, 0.22), rgba(250, 250, 248, 0)),
    var(--warm-white);
}

.academic-section::before {
  content: "";
  position: absolute;
  inset: auto -18% 0;
  height: 62%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 80% 70%, rgba(246, 214, 201, 0.16), transparent 42%),
    linear-gradient(180deg, transparent, rgba(255, 252, 245, 0.4));
  filter: blur(26px);
}

.academic-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 14px;
}

.academic-stat {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.6vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 54px rgba(47, 93, 98, 0.06);
  transition: transform 280ms var(--ease-luxury), box-shadow 280ms var(--ease-luxury), border-color 280ms var(--ease-luxury);
}

.academic-stat:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 93, 98, 0.24);
  box-shadow: 0 26px 70px rgba(47, 93, 98, 0.1);
}

.academic-number {
  display: block;
  margin-bottom: 22px;
  color: var(--deep-teal);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.015em;
}

.academic-stat strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.16rem;
}

.academic-stat p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.services-section {
  padding: clamp(96px, 12vw, 168px) 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(223, 246, 245, 0.14) 100%);
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 6% -18% auto;
  height: 56%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 78% 20%, rgba(223, 246, 245, 0.34), transparent 44%),
    radial-gradient(ellipse at 8% 60%, rgba(246, 214, 201, 0.18), transparent 40%);
  filter: blur(34px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 40px;
}

.section-lede {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.signature-section .section-lede {
  color: rgba(250, 250, 248, 0.72);
}

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

.service-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(47, 93, 98, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 252, 245, 0.84), rgba(245, 252, 250, 0.66)),
    rgba(251, 250, 246, 0.82);
  box-shadow: 0 16px 46px rgba(47, 93, 98, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.58);
  transition: transform 260ms var(--ease-luxury), box-shadow 260ms var(--ease-luxury), border-color 260ms var(--ease-luxury), background 260ms var(--ease-luxury);
}

.service-card:nth-child(1) {
  background:
    linear-gradient(155deg, rgba(223, 246, 245, 0.68), rgba(255, 255, 255, 0.82) 56%, rgba(246, 214, 201, 0.2)),
    var(--warm-white);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 93, 98, 0.28);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 68px rgba(47, 93, 98, 0.11);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--soft-mint), rgba(255, 255, 255, 0.76));
  color: var(--deep-teal);
  box-shadow: inset 0 0 0 1px rgba(47, 93, 98, 0.08);
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 0.98rem;
}

.service-card small {
  display: inline-flex;
  align-self: flex-start;
  margin: 0 0 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(223, 246, 245, 0.68);
  color: var(--deep-teal);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card a {
  margin-top: auto;
  color: var(--deep-teal);
  font-weight: 800;
}

.service-photo {
  position: relative;
  isolation: isolate;
  height: 150px;
  margin: 18px 0 22px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft-mint);
  box-shadow:
    0 20px 52px rgba(47, 93, 98, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.service-photo::before {
  background:
    var(--photo-grain),
    radial-gradient(ellipse at 18% 0%, rgba(255, 252, 245, 0.34), transparent 44%),
    linear-gradient(90deg, rgba(47, 93, 98, 0.08), transparent 36%);
  opacity: 0.2;
  mix-blend-mode: multiply;
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 46%, rgba(23, 42, 45, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 252, 245, 0.1), transparent 38%, rgba(23, 42, 45, 0.14)),
    linear-gradient(90deg, rgba(246, 214, 201, 0.12), transparent 44%, rgba(223, 246, 245, 0.1));
}

.service-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-grade);
  transition: transform 900ms var(--ease-luxury);
}

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

.first-visit-section {
  padding: clamp(100px, 13vw, 176px) 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 8% 40%, rgba(246, 214, 201, 0.24), transparent 44%),
    linear-gradient(90deg, rgba(246, 214, 201, 0.14), transparent 42%),
    var(--warm-white);
}

.first-visit-section::before {
  content: "";
  position: absolute;
  inset: 0 -16%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 34%, rgba(255, 252, 245, 0.72), transparent 36%),
    radial-gradient(ellipse at 84% 44%, rgba(223, 246, 245, 0.3), transparent 42%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.34) 52%, transparent);
  filter: blur(18px);
}

.first-visit-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
}

.first-visit-media {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--cinematic-shadow);
  transform: translateX(-18px);
  outline: 1px solid rgba(255, 255, 255, 0.28);
  outline-offset: -1px;
}

.first-visit-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 8px;
  pointer-events: none;
  background:
    var(--photo-grain),
    linear-gradient(90deg, rgba(246, 214, 201, 0.08), transparent 45%, rgba(223, 246, 245, 0.08));
  opacity: 0.12;
  mix-blend-mode: multiply;
}

.first-visit-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 46%, rgba(18, 38, 41, 0.28) 100%),
    radial-gradient(ellipse at 16% 0%, rgba(255, 252, 245, 0.28), transparent 36%),
    linear-gradient(180deg, rgba(255, 252, 245, 0.08), transparent 38%, rgba(23, 42, 45, 0.6)),
    linear-gradient(90deg, rgba(23, 42, 45, 0.16), transparent 42%);
}

.first-visit-media img,
.featured-article img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--photo-grade);
  animation: imageBreath 18s var(--ease-luxury) infinite alternate;
}

.first-visit-media img,
.contact-portrait img {
  object-position: 42% center;
}

.first-visit-media figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  color: var(--warm-white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.25;
}

.visit-content {
  display: grid;
  gap: 14px;
  align-content: center;
}

.first-visit-panel {
  min-height: auto;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(246, 214, 201, 0.24), transparent 40%),
    linear-gradient(145deg, rgba(255, 252, 245, 0.88), rgba(245, 252, 250, 0.64)),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.first-visit-panel p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.visit-quiet-note {
  padding-top: 22px;
  border-top: 1px solid rgba(47, 93, 98, 0.12);
  color: var(--teal-dark) !important;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.38rem) !important;
  line-height: 1.35;
}

.visit-steps {
  display: grid;
  gap: 12px;
}

.visit-steps article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 6px 18px;
  padding: 22px;
  border: 1px solid rgba(47, 93, 98, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 38px rgba(47, 93, 98, 0.055);
}

.visit-steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--deep-teal);
  color: var(--warm-white);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.visit-steps p {
  margin: 0;
  color: var(--muted);
}

.inline-link {
  display: inline-flex;
  width: fit-content;
  color: var(--deep-teal);
  font-weight: 800;
  transition: color 220ms var(--ease-luxury), transform 220ms var(--ease-luxury);
}

.inline-link:hover {
  color: var(--teal-dark);
  transform: translateX(4px);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(330px, 0.86fr);
  gap: clamp(18px, 3vw, 30px);
}

.featured-article {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(360px, 1fr) 250px;
  min-height: 680px;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(142, 209, 198, 0.22), transparent 42%),
    linear-gradient(145deg, var(--deep-teal), #203f44);
  color: var(--warm-white);
}

.featured-article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    var(--photo-grain),
    linear-gradient(90deg, rgba(246, 214, 201, 0.08), transparent 48%, rgba(223, 246, 245, 0.08));
  opacity: 0.11;
  mix-blend-mode: multiply;
}

.featured-article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 56%, rgba(16, 42, 46, 0.22) 100%),
    linear-gradient(135deg, rgba(255, 252, 245, 0.08), transparent 42%);
}

.featured-article > div,
.featured-article img {
  position: relative;
}

.featured-article > div {
  z-index: 3;
  padding: clamp(28px, 4.6vw, 52px);
}

.featured-article img {
  z-index: 1;
}

.featured-article span {
  color: var(--mint);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-article h3 {
  margin-top: 24px;
  color: var(--warm-white);
  font-size: clamp(2.1rem, 4.2vw, 4rem);
}

.featured-article p {
  max-width: 520px;
  margin: 24px 0 32px;
  color: rgba(250, 250, 248, 0.76);
  font-size: 1.05rem;
}

.featured-article a {
  font-weight: 800;
}

.featured-article img {
  min-height: 250px;
  opacity: 0.86;
  filter: var(--photo-grade-soft);
}

.article-list {
  display: grid;
  gap: 12px;
}

.article-list a {
  display: grid;
  min-height: 86px;
  padding: 18px 20px;
  border: 1px solid rgba(47, 93, 98, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 252, 245, 0.82), rgba(255, 255, 255, 0.72)),
    var(--paper);
  color: var(--teal-dark);
  box-shadow: 0 12px 34px rgba(47, 93, 98, 0.045);
  transition: background 240ms var(--ease-luxury), transform 240ms var(--ease-luxury), border-color 240ms var(--ease-luxury), box-shadow 240ms var(--ease-luxury);
}

.article-list span {
  color: var(--deep-teal);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.article-list strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.06rem;
  line-height: 1.25;
}

.article-list a:hover {
  background: var(--soft-mint);
  border-color: rgba(47, 93, 98, 0.24);
  transform: translateX(4px);
  box-shadow: 0 18px 46px rgba(47, 93, 98, 0.08);
}

.faq-section {
  padding: clamp(90px, 11vw, 150px) 0;
  background:
    radial-gradient(ellipse at 12% 14%, rgba(223, 246, 245, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.72);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 80px);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--warm-white);
  transition: border-color 240ms var(--ease-luxury), box-shadow 240ms var(--ease-luxury), background 240ms var(--ease-luxury);
}

.faq-list details[open] {
  border-color: rgba(47, 93, 98, 0.28);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(47, 93, 98, 0.07);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  color: var(--teal-dark);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  list-style: none;
  transition: color 220ms var(--ease-luxury);
}

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

.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--deep-teal);
  border-bottom: 2px solid var(--deep-teal);
  border-radius: 1px;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 320ms var(--ease-luxury), border-color 220ms var(--ease-luxury);
}

.faq-list summary:hover {
  color: var(--ink);
}

.faq-list summary:hover::after {
  border-color: var(--ink);
}

.faq-list details[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  animation: faqReveal 320ms var(--ease-luxury);
}

@keyframes faqReveal {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  background:
    radial-gradient(ellipse at 20% 8%, rgba(142, 209, 198, 0.16), transparent 36%),
    radial-gradient(ellipse at 90% 80%, rgba(246, 214, 201, 0.1), transparent 34%),
    linear-gradient(145deg, #172a2d, var(--teal-dark));
  color: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.contact-section .eyebrow,
.contact-section h2 {
  color: var(--warm-white);
}

.contact-intro {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-portrait {
  display: block;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(250, 250, 248, 0.24);
  box-shadow: 0 12px 32px rgba(5, 21, 24, 0.28);
}

.contact-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.contact-quote {
  margin: 0;
  color: rgba(250, 250, 248, 0.88);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5;
}

.contact-section .contact-intro .eyebrow {
  margin-bottom: 6px;
}

.contact-section p {
  max-width: 680px;
  color: rgba(250, 250, 248, 0.72);
  font-size: 1.08rem;
}

.contact-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(250, 250, 248, 0.14);
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.08);
}

.contact-panel a,
.contact-panel div {
  padding: 18px;
  border-radius: 8px;
  background: rgba(250, 250, 248, 0.08);
}

.contact-panel span,
.contact-panel strong {
  display: block;
}

.contact-panel span {
  color: rgba(250, 250, 248, 0.62);
  font-size: 0.84rem;
}

.contact-panel strong {
  margin-top: 4px;
  color: var(--warm-white);
  font-family: "Manrope", sans-serif;
}

.footer-link {
  margin-left: 8px;
  color: rgba(250, 250, 248, 0.92);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 220ms var(--ease-luxury);
}

.footer-link:hover {
  color: var(--mint);
}

.site-footer {
  padding: 0;
  background: #172a2d;
  color: rgba(250, 250, 248, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(48px, 6vw, 64px) 0 36px;
}

.footer-brand .footer-mark {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand .footer-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-brand strong {
  display: block;
  margin-bottom: 6px;
  color: var(--warm-white);
  font-family: "Manrope", sans-serif;
  font-size: 1.04rem;
}

.footer-brand small {
  display: block;
  margin-bottom: 14px;
  color: rgba(250, 250, 248, 0.54);
  font-size: 0.82rem;
}

.footer-brand p {
  margin: 0;
  max-width: 280px;
  color: rgba(250, 250, 248, 0.68);
  font-size: 0.94rem;
  line-height: 1.6;
}

.footer-col h4 {
  margin: 0 0 16px;
  color: rgba(250, 250, 248, 0.94);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a,
.footer-col p {
  margin: 0;
  color: rgba(250, 250, 248, 0.66);
  font-size: 0.94rem;
  transition: color 220ms var(--ease-luxury), transform 220ms var(--ease-luxury);
}

.footer-col a:hover {
  color: var(--mint);
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(250, 250, 248, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(250, 250, 248, 0.5);
  font-size: 0.84rem;
}

.footer-bottom a {
  color: rgba(250, 250, 248, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.84rem;
  transition: color 220ms var(--ease-luxury);
}

.footer-bottom a:hover {
  color: var(--mint);
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 0 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 100;
  background: rgba(47, 93, 98, 0.06);
  pointer-events: none;
}

.reading-progress::before {
  content: "";
  display: block;
  height: 100%;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--mint), var(--deep-teal));
  transition: width 80ms linear;
}

.article-page {
  padding: clamp(58px, 8vw, 100px) 0 clamp(82px, 10vw, 140px);
  overflow: clip;
}

.article-page .eyebrow {
  margin-bottom: 18px;
}

.article-page h1 {
  max-width: 900px;
  font-size: clamp(2.35rem, 5.2vw, 4.7rem);
}

.article-intro {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.article-body {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 6vw, 84px);
  margin-top: clamp(44px, 7vw, 78px);
}

.article-aside {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(223, 246, 245, 0.32), rgba(255, 255, 255, 0.6)),
    var(--paper);
  box-shadow: 0 14px 40px rgba(47, 93, 98, 0.06);
}

.article-aside::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--deep-teal);
  border-radius: 2px;
}

.article-aside strong {
  display: block;
  color: var(--deep-teal);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-aside p {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
}

.aside-section + .aside-section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-toc {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  counter-reset: toc;
}

.article-toc li {
  counter-increment: toc;
}

.article-toc a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 12px 8px 14px;
  margin-left: -14px;
  border-left: 2px solid transparent;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
  transition: color 220ms var(--ease-luxury), border-color 220ms var(--ease-luxury), background 220ms var(--ease-luxury);
}

.article-toc a::before {
  content: counter(toc, decimal-leading-zero);
  flex: 0 0 auto;
  color: rgba(47, 93, 98, 0.42);
  font-family: "Manrope", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
}

.article-toc a:hover {
  color: var(--teal-dark);
  border-left-color: var(--mint);
  background: rgba(223, 246, 245, 0.24);
}

.article-toc a.is-active {
  color: var(--teal-dark);
  border-left-color: var(--deep-teal);
  font-weight: 700;
}

.article-toc a.is-active::before {
  color: var(--deep-teal);
}

.article-content {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.article-content > * {
  max-width: 680px;
}

.article-content h2 {
  position: relative;
  margin-top: 48px;
  padding-top: 24px;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  line-height: 1.25;
}

.article-content h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--mint);
  border-radius: 2px;
}

.article-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
}

.article-content h2:first-child::before {
  display: none;
}

.article-content p,
.article-content li {
  color: #465d60;
  font-size: 1.04rem;
  line-height: 1.7;
}

.article-content ul {
  padding-left: 20px;
}

.article-note {
  margin-top: 32px;
  padding: 18px;
  border: 1px solid rgba(47, 93, 98, 0.16);
  border-radius: 8px;
  background: rgba(223, 246, 245, 0.36);
  color: var(--teal-dark);
  font-size: 0.98rem;
}

.article-back {
  display: inline-flex;
  margin-top: 34px;
  color: var(--deep-teal);
  font-weight: 800;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.article-meta li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-meta li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
}

.article-content .article-pullquote,
.article-pullquote {
  margin: 36px 0;
  padding: 26px 28px;
  border-left: 3px solid var(--deep-teal);
  border-radius: 0 8px 8px 0;
  background: linear-gradient(90deg, rgba(223, 246, 245, 0.46), transparent 80%);
  color: var(--teal-dark);
  font-family: "Manrope", sans-serif;
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.5;
}

.article-hero {
  margin: 32px 0 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--cinematic-shadow);
}

.article-hero img {
  display: block;
  width: 100%;
  height: clamp(300px, 42vw, 480px);
  max-height: 480px;
  object-fit: cover;
  object-position: var(--article-image-position, center center);
}

.article-content .article-references-title {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--teal-dark);
  font-size: 1.15rem;
}

.article-references {
  margin: 16px 0 0;
  padding-left: 22px;
  list-style: disc;
}

.article-content .article-references li {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.article-references em {
  color: var(--ink);
  font-style: italic;
}

.related-articles {
  margin-top: clamp(60px, 8vw, 96px);
  padding-top: clamp(36px, 5vw, 56px);
  border-top: 1px solid var(--line);
}

.related-articles .eyebrow {
  margin-bottom: 18px;
}

.related-articles h2 {
  margin: 0 0 32px;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

.related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.related-list a {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(47, 93, 98, 0.05);
  transition: transform 240ms var(--ease-luxury), border-color 240ms var(--ease-luxury), box-shadow 240ms var(--ease-luxury);
}

.related-list a:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 93, 98, 0.28);
  box-shadow: 0 20px 50px rgba(47, 93, 98, 0.09);
}

.related-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--deep-teal);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.related-list strong {
  display: block;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 1.04rem;
  line-height: 1.3;
}

.article-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: clamp(48px, 6vw, 72px);
  padding: clamp(28px, 4vw, 44px);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 8% 0%, rgba(142, 209, 198, 0.22), transparent 44%),
    linear-gradient(145deg, var(--deep-teal), #203f44);
  color: var(--warm-white);
  box-shadow: var(--shadow);
}

.article-cta strong {
  display: block;
  margin-bottom: 6px;
  color: var(--warm-white);
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
}

.article-cta p {
  margin: 0;
  color: rgba(250, 250, 248, 0.78);
  font-size: 0.98rem;
}

.article-cta .button {
  flex-shrink: 0;
  background: var(--warm-white);
  color: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(5, 21, 24, 0.24);
}

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

@media (max-width: 720px) {
  .related-list {
    grid-template-columns: 1fr;
  }

  .article-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .related-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@keyframes imageBreath {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.025);
  }
}

@keyframes portraitFloat {
  from {
    transform: translateY(12px) translateX(-8px);
  }
  to {
    transform: translateY(-2px) translateX(2px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 760ms var(--ease-luxury) var(--delay, 0ms), transform 760ms var(--ease-luxury) var(--delay, 0ms);
}

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

@media (max-width: 980px) {
  .hero,
  .split-section,
  .signature-grid,
  .first-visit-grid,
  .article-layout,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .article-body {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-copy {
    order: 1;
  }

  .section-kicker {
    position: static;
  }

  .signature-copy {
    position: static;
  }

  .signature-card:nth-child(2),
  .signature-card:nth-child(3) {
    margin-top: 0;
    transform: none;
  }

  .first-visit-media,
  .visit-steps {
    transform: none;
  }

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

  .service-card {
    min-height: 280px;
  }

  .service-photo {
    height: 130px;
  }

  .first-visit-media {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    width: calc(100% - 20px);
    top: 10px;
    margin-top: 10px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 8px) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 8px;
    background:
      radial-gradient(ellipse at 20% 0%, rgba(255, 252, 245, 0.96), transparent 52%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(245, 252, 250, 0.72)),
      rgba(250, 250, 248, 0.9);
    backdrop-filter: blur(24px) saturate(1.16);
    -webkit-backdrop-filter: blur(24px) saturate(1.16);
    box-shadow:
      0 24px 70px rgba(47, 93, 98, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.78);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .compact-header {
    flex-wrap: wrap;
  }

  .compact-header .site-nav {
    position: static;
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 12px;
  }

  .brand strong {
    max-width: 170px;
    overflow-wrap: break-word;
  }

  .hero {
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.25rem);
  }

  .hero-actions,
  .footer-grid,
  .portrait-note {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .why-grid,
  .academic-cards,
  .education-grid {
    grid-template-columns: 1fr;
  }

  .visit-steps article {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }

  .visit-steps span {
    width: 44px;
    height: 44px;
  }

  .portrait-card {
    min-height: 400px;
    overflow: hidden;
    transform: none;
    animation: none;
  }

  .hero-atmosphere {
    display: none;
  }

  .hero-copy::before,
  .hero-visual::before,
  .hero-visual::after {
    display: none;
  }

  .first-visit-media img,
  .featured-article img {
    animation: none;
  }

  .portrait-card::before {
    inset: 18px;
  }

  .portrait-frame {
    min-height: 410px;
  }

  .first-visit-media {
    min-height: 360px;
  }

  .featured-article {
    grid-template-rows: auto 170px;
    min-height: auto;
  }

  .service-card {
    min-height: 240px;
  }
}

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

/* Görsel kopyalama korumaları (gerçek fotoğraflar için) */
.protected-img,
.protected-img img,
.doctor-portrait,
.about-cover img,
.first-visit-media img,
.contact-portrait img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: auto;
  -webkit-touch-callout: none;
}

/* === Scroll performans optimizasyonları === */

/* Animasyonlu elementlere GPU layer hint */
.portrait-card,
.first-visit-media img,
.featured-article img {
  will-change: transform;
}

/* CSS containment — kartların layout/paint izolasyonu */
.service-card,
.signature-card,
.why-card,
.academic-stat,
.visit-steps article,
.faq-list details {
  contain: layout style;
}

.site-header {
  contain: layout style;
}
