:root {
  --primary: #1F6F78;
  --secondary: #2FA7A0;
  --bg-soft: #EAF7F8;
  --bg-page: #F6FAFB;
  --text: #222222;
  --text-body: #555555;
  --text-muted: #777777;
  --white: #FFFFFF;
  /* Tek yuvarlatma ölçüsü — buton, kart, bar, form, görsel */
  --radius: 6px;
  --container-max: 1240px;
  --container-pad: 94vw;
  --shadow: none;
  --header-h: 72px;
  --header-chip-h: 36px;
  /* Tipografi — Plus Jakarta Sans (tüm site) */
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-sans: var(--font);
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --lh-body: 1.62;
  --lh-heading: 1.28;
  --lh-tight: 1.22;
  --tracking-body: 0.01em;
  --tracking-heading: -0.02em;
  --tracking-caps: 0.06em;
  /* Tipografi ölçeği */
  --text-xs: .75rem;
  --text-sm: .875rem;
  --text-base: 1.0625rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: clamp(1.35rem, 2.4vw, 1.65rem);
  --text-2xl: clamp(1.5rem, 2.8vw, 2.125rem);
  --text-3xl: clamp(1.75rem, 3.5vw, 2.5rem);
  --text-section-lead: .9375rem;
  --text-ui: .9rem;
  --text-caption: .8125rem;
}

*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: var(--fw-regular);
  font-size: var(--text-base);
  color: var(--text-body);
  background: var(--bg-page);
  line-height: var(--lh-body);
  letter-spacing: var(--tracking-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--secondary); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  color: var(--text);
  line-height: var(--lh-heading);
  letter-spacing: var(--tracking-heading);
  margin: 0 0 .6em;
}
h1 { font-size: var(--text-3xl); font-weight: var(--fw-bold); }
h2 { font-size: var(--text-2xl); font-weight: var(--fw-semibold); }
h3, h4, h5, h6 {
  font-weight: var(--fw-semibold);
  line-height: 1.35;
}

p { margin: 0 0 1em; font-weight: var(--fw-regular); }
strong, b { font-weight: var(--fw-semibold); color: var(--text); }

.section__head h2 {
  font-weight: var(--fw-semibold);
  font-size: var(--text-2xl);
  color: var(--text);
  letter-spacing: var(--tracking-heading);
}
.section__head p {
  font-size: var(--text-section-lead);
  font-weight: var(--fw-regular);
  color: var(--text-muted);
  line-height: var(--lh-body);
}
.page-hero h1 {
  font-weight: var(--fw-bold);
}
.page-hero__lead { font-weight: var(--fw-regular); line-height: var(--lh-body); }
.prose {
  font-weight: var(--fw-regular);
  color: var(--text-body);
  line-height: var(--lh-body);
  font-size: var(--text-base);
}
.prose h2 {
  font-weight: var(--fw-semibold);
}
.container { width: min(var(--container-max), var(--container-pad)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 200;
  background: var(--primary);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: none;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.site-main {
  max-width: 100%;
  overflow-x: clip;
}
@supports not (overflow: clip) {
  .site-main {
    overflow-x: hidden;
  }
}
.site-header.is-scrolled {
  background: #185a61;
}
.header__shell { position: relative; }
.header__inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: .65rem 1rem;
}
.nav-desktop {
  min-width: 0;
  display: flex;
  justify-content: center;
  padding: 0 .25rem;
  overflow: hidden;
}
.brand {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  min-width: 0;
  max-width: 22rem;
  justify-self: start;
  line-height: 1.15;
}
.brand:hover { color: #fff; opacity: .92; }
.brand__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.brand__icon-img,
.brand__icon-svg {
  display: block;
  height: 2.4em;
  width: auto;
  aspect-ratio: 241 / 282;
  flex-shrink: 0;
  object-fit: contain;
}
.brand__icon-img {
  opacity: 1;
}
.brand__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .2rem;
  min-width: 0;
}
.brand__name {
  display: block;
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: .74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand__tagline {
  display: block;
  font-family: var(--font-sans);
  font-size: .64rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.brand--header .brand__name {
  color: #fff;
}
.brand--header .brand__tagline {
  color: rgba(255, 255, 255, 0.88);
}
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__tagline { color: rgba(255, 255, 255, 0.68); }
.brand--footer { margin-bottom: 0; }

.nav-desktop__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .08rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  max-width: 100%;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-sans);
  font-size: .84rem;
  font-weight: var(--fw-medium);
  text-transform: none;
  letter-spacing: var(--tracking-heading);
  padding: .4rem .48rem;
  border-radius: var(--radius);
  transition: background .15s, color .15s;
  text-decoration: none;
  line-height: 1.25;
  white-space: nowrap;
}
.nav-link.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}
.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-shrink: 0;
  justify-self: end;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  height: var(--header-chip-h);
  padding: 0 .25rem;
  box-sizing: border-box;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: calc(var(--header-chip-h) - 8px);
  padding: 0 .25rem;
  border-radius: var(--radius);
  line-height: 0;
  opacity: .75;
  transition: opacity .15s, box-shadow .15s;
}
.lang-flag:hover { opacity: 1; }
.lang-flag.is-active {
  opacity: 1;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.85);
}
.icon--flag { display: block; border-radius: var(--radius); }

.btn--header-cta {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}
.btn--header-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  height: var(--header-chip-h);
  min-height: var(--header-chip-h);
  padding: 0 .75rem;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  cursor: pointer;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: .78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background .15s, border-color .15s;
}
.menu-toggle:hover { background: rgba(255, 255, 255, 0.16); }
.menu-toggle__label {
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.menu-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
}

/* Font Awesome ikonları */
.icon--fa {
  display: inline-block;
  line-height: 1;
  vertical-align: -0.125em;
  text-align: center;
}
.btn--icon .icon--fa {
  font-size: 1.05rem;
  width: 1.15em;
}
.btn--whatsapp .icon--wa {
  font-size: 1.15rem;
}
.review-card__logo .icon--fa {
  font-size: 1.2rem;
}
.review-card--google .icon--brand-google { color: #4285F4; }
.review-card--doktorsitesi .icon--brand-doktorsitesi { color: var(--primary); }
.service-card__icon .icon--fa,
.treatment-card .icon--treatment {
  font-size: 1.35rem;
  color: var(--primary);
}
.video-tile__play-btn .icon--fa {
  font-size: 3.5rem;
  color: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.header__mobile-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #185a61;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 14px 32px rgba(10, 40, 45, 0.28);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height .35s ease, opacity .25s ease, visibility .35s;
}
.header__mobile-nav.is-open {
  max-height: min(85vh, 560px);
  opacity: 1;
  visibility: visible;
  border-radius: 0 0 var(--radius) var(--radius);
}
.header__mobile-nav-inner { padding: .5rem 0 1rem; }
.header__mobile-links {
  display: flex;
  flex-direction: column;
}
.header__mobile-links a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: .75rem 1rem;
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: .9rem;
  letter-spacing: var(--tracking-heading);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header__mobile-links a:hover,
.header__mobile-links a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.mobile-accordion { border-bottom: 1px solid rgba(31, 111, 120, 0.06); }
.mobile-accordion__toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: .85rem 0; margin: 0;
  border: 0; background: none; cursor: pointer;
  color: var(--text); font-family: var(--font); font-weight: 500;
  font-size: .88rem; text-transform: uppercase; letter-spacing: 0.05em;
  text-align: left;
}
.mobile-accordion__toggle:hover { color: var(--primary); }
.mobile-accordion__icon {
  flex-shrink: 0; color: var(--primary);
  transition: transform .25s ease;
}
.mobile-accordion__toggle[aria-expanded="true"] .mobile-accordion__icon {
  transform: rotate(180deg);
}
.mobile-accordion__panel {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.mobile-accordion__panel.is-open {
  max-height: 280px;
  padding-left: 1.15rem;
  padding-bottom: .15rem;
}
.mobile-accordion__link {
  display: block;
  margin: 0;
  padding: .7rem 0 .7rem .5rem;
  color: var(--text-muted); font-weight: 500; font-size: .8rem;
  text-transform: uppercase; letter-spacing: 0.04em;
  border-top: 1px solid rgba(31, 111, 120, 0.05);
}
.mobile-accordion__link:hover { color: var(--primary); }
.header__mobile-video {
  display: flex; gap: .75rem; align-items: center;
  margin-top: 1rem; padding: .75rem; background: var(--bg-soft);
  border-radius: var(--radius); color: var(--text);
}
.header__mobile-video img { border-radius: var(--radius); flex-shrink: 0; }
.header__mobile-video strong { display: block; font-size: .82rem; color: var(--primary); }
.header__mobile-video span { font-size: .85rem; color: var(--text-muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.25rem; border-radius: var(--radius);
  font-family: var(--font-sans); font-weight: var(--fw-medium); font-size: var(--text-ui); border: 2px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s;
  cursor: pointer; min-height: 44px;
}
.btn--primary { background: var(--primary); color: var(--white); }
.btn--primary:hover { background: #185a61; color: var(--white); transform: translateY(-1px); }
.btn--outline { background: var(--white); border-color: rgba(31,111,120,.25); color: var(--primary); }
.btn--outline:hover { border-color: var(--secondary); background: var(--bg-soft); }
.btn--whatsapp { background: #25D366; color: var(--white); }
.btn--whatsapp:hover { background: #1fb855; color: var(--white); }
.btn--sm { padding: .55rem .9rem; font-size: .82rem; min-height: 38px; }
.btn--block { width: 100%; }

/* Ana sayfa — banner (arkaplan görseli + metin + portre) */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: clamp(380px, 42vw, 520px);
}
.hero-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-banner__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-banner__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% 42%;
  display: block;
}
.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 42, 48, 0.9) 0%, rgba(31, 111, 120, 0.72) 42%, rgba(31, 111, 120, 0.35) 62%, rgba(31, 111, 120, 0.15) 100%),
    linear-gradient(0deg, rgba(10, 42, 48, 0.45) 0%, transparent 40%);
}
.hero-banner__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(2.25rem, 4.5vw, 3.5rem) 0;
  min-height: inherit;
}
.hero-banner__copy {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}
.hero-banner__title {
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin: 0 0 .4rem;
  line-height: 1.2;
}
.hero-banner__role {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.96);
  margin: 0 0 .35rem;
  line-height: 1.35;
}
.hero-banner__location {
  font-size: .95rem;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}
.hero-banner__intro p {
  margin: 0 0 .8rem;
  font-size: clamp(.92rem, 1.45vw, 1.02rem);
  font-weight: var(--fw-regular);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--lh-body);
  max-width: 56ch;
}
.hero-banner__intro p:last-child { margin-bottom: 0; }
@media (max-width: 719px) {
  .hero-banner__intro p {
    font-size: calc(clamp(.92rem, 1.45vw, 1.02rem) + 1px);
  }
}
.hero-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.35rem;
}
.btn--hero {
  min-height: 46px;
  padding: .7rem 1.15rem;
  font-weight: var(--fw-semibold);
  font-size: .9rem;
}
.hero-banner .btn--primary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.hero-banner .btn--primary:hover {
  background: var(--bg-soft);
  color: var(--primary);
}
.hero-banner__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.hero-banner__visual img {
  width: clamp(280px, 36vw, 440px);
  max-width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: none;
}
.btn--icon {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .45rem;
}
.btn--icon .icon--fa { flex-shrink: 0; }

/* Hizmetler — öne çıkan video slider + bilgi kartları */
.home-featured-video {
  margin-top: 1.35rem;
  margin-bottom: 1.75rem;
}
.home-featured-video__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(31, 111, 120, 0.1);
  border-radius: var(--radius);
  box-shadow: none;
  overflow: hidden;
}
.home-featured-video__slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .35rem;
  padding: .65rem .45rem .5rem;
  background: var(--bg-soft);
  border-bottom: 1px solid rgba(31, 111, 120, 0.08);
}
.home-featured-video__viewport {
  container-type: inline-size;
  container-name: home-video-slider;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  border-radius: var(--radius);
}
.home-featured-video__viewport::-webkit-scrollbar {
  display: none;
}
.home-featured-video__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}
.home-featured-video__slide {
  flex: 0 0 100cqw;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-width: 0;
}
@supports not (width: 1cqw) {
  .home-featured-video__slide {
    flex: 0 0 100%;
  }
}
.home-featured-video__nav {
  flex-shrink: 0;
  width: 1.65rem;
  min-height: 4.5rem;
  height: 72%;
  max-height: 5.5rem;
  align-self: center;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 111, 120, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(31, 111, 120, 0.08);
  transition: transform .2s, opacity .2s, background .2s, border-color .2s, box-shadow .2s;
}
.home-featured-video__nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(47, 167, 160, 0.32);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(31, 111, 120, 0.12);
}
.home-featured-video__nav:disabled {
  opacity: .45;
  cursor: not-allowed;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.5);
  color: rgba(31, 111, 120, 0.35);
  border-color: rgba(31, 111, 120, 0.08);
}
.home-featured-video__nav .icon--fa {
  font-size: .72rem;
  color: var(--primary);
}
.home-featured-video__nav:disabled .icon--fa {
  color: rgba(31, 111, 120, 0.35);
}
.home-featured-video__all-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  min-height: 100%;
  aspect-ratio: 16 / 9;
  padding: 1.15rem 1rem 1rem;
  text-align: center;
  background: linear-gradient(155deg, rgba(31, 111, 120, 0.08) 0%, rgba(47, 167, 160, 0.14) 100%);
  border: 1px dashed rgba(31, 111, 120, 0.28);
  border-radius: var(--radius);
  transition: border-color .15s, background .15s;
}
.home-featured-video__all-card:has(.home-featured-video__all-link:hover),
.home-featured-video__all-card:has(.home-featured-video__all-badge--videos:hover),
.home-featured-video__all-card:has(.home-featured-video__all-badge--yt:hover) {
  border-color: rgba(47, 167, 160, 0.55);
  background: linear-gradient(155deg, rgba(31, 111, 120, 0.12) 0%, rgba(47, 167, 160, 0.2) 100%);
}
.home-featured-video__all-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  flex-shrink: 0;
}
.home-featured-video__all-badge {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 111, 120, 0.12);
  box-shadow: 0 4px 14px rgba(31, 111, 120, 0.12);
}
.home-featured-video__all-badge .icon--fa {
  font-size: 1.15rem;
}
.home-featured-video__all-badge--videos,
.home-featured-video__all-badge--yt {
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.home-featured-video__all-badge--videos {
  color: var(--primary);
}
.home-featured-video__all-badge--videos:hover,
.home-featured-video__all-badge--yt:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(31, 111, 120, 0.16);
  background: rgba(255, 255, 255, 0.95);
}
.home-featured-video__all-badge--yt {
  color: #ff0000;
}
.home-featured-video__all-badge--yt .icon--fa {
  color: #ff0000;
}
.home-featured-video__all-link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  width: 100%;
  min-height: 0;
  text-decoration: none;
  color: var(--text);
  transition: color .15s;
}
.home-featured-video__all-link:hover {
  color: var(--primary);
}
.home-featured-video__all-title {
  font-size: .92rem;
  font-weight: var(--fw-bold);
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.25;
}
.home-featured-video__all-lead {
  margin: 0;
  max-width: 26ch;
  font-size: .78rem;
  line-height: 1.45;
  color: var(--text-muted);
}
.home-featured-video__all-go {
  display: inline-flex;
  color: var(--secondary);
}
.home-featured-video__all-go .icon--fa {
  font-size: .85rem;
}
.home-featured-video__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--bg-soft);
  line-height: 0;
}
.home-featured-video__play {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: var(--bg-soft);
  cursor: pointer;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.home-featured-video__play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: none;
  transform: none;
}
.home-featured-video__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 50, 56, 0.02) 40%,
    rgba(10, 50, 56, 0.22) 100%
  );
  pointer-events: none;
}
.home-featured-video__play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.42);
  border: 2px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}
.home-featured-video__play-btn .icon--fa {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.92);
  margin-left: 3px;
  filter: none;
}
.home-featured-video__play:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}
.home-featured-video__media.is-playing {
  aspect-ratio: 16 / 9;
  background: #000;
}
.home-featured-video__media.is-playing iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.home-featured-video__body {
  padding: .7rem 1.1rem .75rem;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.home-featured-video__title {
  margin: 0 auto;
  width: 100%;
  max-width: 34ch;
  font-size: .82rem;
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  letter-spacing: .03em;
  text-align: center;
  color: var(--text);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (min-width: 720px) {
  .home-featured-video {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .home-featured-video__card {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }
  .home-featured-video__slider {
    grid-row: 1;
    grid-column: 1;
    padding: .85rem .55rem .75rem;
    border-bottom: 1px solid rgba(31, 111, 120, 0.08);
    border-right: 0;
  }
  .home-featured-video__body {
    grid-row: 2;
    grid-column: 1;
    padding: .65rem 1rem .7rem;
    min-height: 0;
    justify-content: center;
    text-align: center;
  }
  .home-featured-video__title {
    font-size: .88rem;
    line-height: 1.38;
    -webkit-line-clamp: 2;
    text-align: center;
    margin-inline: auto;
    max-width: 42ch;
  }
  .home-featured-video__slide {
    flex: 0 0 calc((100cqw - 1.25rem) / 3);
    scroll-snap-align: start;
  }
  .home-featured-video__track {
    gap: .625rem;
  }
  .home-featured-video__play-btn {
    width: 52px;
    height: 52px;
  }
  .home-featured-video__play-btn .icon--fa {
    font-size: 1.2rem;
  }
  .home-featured-video__nav {
    width: 1.8rem;
    min-height: 5rem;
    max-height: 6.25rem;
  }
  .home-featured-video__nav .icon--fa {
    font-size: .78rem;
  }
  .home-featured-video__all-title {
    font-size: 1rem;
  }
  .home-featured-video__all-lead {
    font-size: .84rem;
  }
}
.home-info-cards {
  margin-top: 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(31, 111, 120, 0.1);
}
.home-info-cards__title {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 1.25rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
}
.info-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: .5rem;
}
.info-carousel__viewport {
  container-type: inline-size;
  container-name: info-carousel;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  /* pan-x mobilde kart alanında dikey sayfa kaydırmasını engelliyordu */
  touch-action: manipulation;
}
.info-carousel__viewport::-webkit-scrollbar {
  display: none;
}
.info-carousel__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: .75rem;
  width: max-content;
  padding: .15rem 0 .35rem;
}
.info-carousel__nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 111, 120, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(31, 111, 120, 0.08);
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s, opacity .2s;
}
.info-carousel__nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(47, 167, 160, 0.32);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(31, 111, 120, 0.12);
}
.info-carousel__nav:active:not(:disabled) {
  transform: translateY(0);
}
.info-carousel__nav:disabled {
  opacity: .45;
  cursor: not-allowed;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.5);
  color: rgba(31, 111, 120, 0.35);
  border-color: rgba(31, 111, 120, 0.08);
}
.info-carousel__nav .icon--fa {
  font-size: 1rem;
  color: var(--primary);
}
.info-carousel__nav:disabled .icon--fa {
  color: rgba(31, 111, 120, 0.35);
}
.info-card {
  flex: 0 0 clamp(200px, 76cqi, 252px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--white);
  border: 1px solid rgba(31, 111, 120, 0.1);
  border-radius: var(--radius);
  padding: 1.35rem 1rem 1.45rem;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  min-height: 14.5rem;
}
.info-card__label {
  margin: 0;
  font-size: .68rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  line-height: 1.3;
}
.info-card__question {
  font-family: var(--font-sans);
  font-size: .96rem;
  font-weight: var(--fw-semibold);
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}
.info-card__answer {
  margin: 0;
  font-size: .86rem;
  line-height: 1.52;
  color: var(--text-body);
  flex: 1 1 auto;
}

.trust-bar {
  background: var(--white);
  padding: 1.35rem 0 1.5rem;
  border-bottom: 1px solid rgba(31, 111, 120, 0.06);
}
.trust-bar__inner {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
}
.review-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  width: min(480px, 100%);
  list-style: none;
  margin: 0;
  padding: 0;
}
.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  width: 100%;
  min-height: 112px;
  padding: .95rem 2.35rem .95rem 1rem;
  background: var(--white);
  color: var(--text);
  border: 1px solid rgba(31, 111, 120, 0.14);
  border-radius: var(--radius);
  box-shadow: none;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .15s, transform .15s;
}
.review-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--secondary);
}
.review-card--google::before {
  background: linear-gradient(180deg, #4285F4 0%, #34A853 50%, #FBBC05 75%, #EA4335 100%);
}
.review-card--doktorsitesi::before {
  background: var(--primary);
}
.review-card:hover,
.review-card:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
  border-color: rgba(47, 167, 160, 0.45);
  outline: none;
}
.review-card:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}
.review-card__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .65rem;
}
.review-card__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .4rem;
  min-width: 0;
}
.review-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--bg-soft);
  border: 1px solid rgba(31, 111, 120, 0.08);
}
.review-card__name {
  font-size: .8rem;
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.review-card__score {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: .1rem;
  line-height: 1;
  flex-shrink: 0;
}
.review-card__value {
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  color: var(--primary);
  letter-spacing: -0.03em;
}
.review-card__of {
  font-size: .95rem;
  font-weight: var(--fw-medium);
  color: var(--text-muted);
}
.review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding-top: .15rem;
  border-top: 1px solid rgba(31, 111, 120, 0.08);
}
.review-card__stars {
  font-size: .78rem;
  letter-spacing: .06em;
  color: #e8a317;
  line-height: 1;
}
.review-card__count {
  font-size: .72rem;
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  white-space: nowrap;
}
.review-card__go {
  position: absolute;
  right: .75rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  background: var(--bg-soft);
  color: var(--primary);
  transition: background .15s, color .15s;
}
.review-card__go .icon--fa { font-size: .78rem; }
.review-card:hover .review-card__go,
.review-card:focus-visible .review-card__go {
  background: var(--primary);
  color: var(--white);
}

/* Yorum popup */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity .2s ease, visibility .2s ease;
}
.review-modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.review-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 45, 50, 0.55);
  backdrop-filter: blur(3px);
}
.review-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88vh, 760px);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(15, 45, 50, 0.28);
  overflow: hidden;
}
.review-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(31, 111, 120, 0.1);
  background: var(--bg-soft);
}
.review-modal__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
  color: var(--text);
}
.review-modal__hint {
  margin: .25rem 0 0;
  font-size: .82rem;
  color: var(--text-muted);
}
.review-modal__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(31, 111, 120, 0.15);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.review-modal__close:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.review-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  background: var(--bg-page);
}
.review-modal__frame {
  display: block;
  width: 100%;
  height: min(72vh, 620px);
  border: 0;
  background: var(--white);
}
.review-modal__frame[hidden],
.review-modal__panel[hidden] {
  display: none !important;
}
.review-modal__panel--google {
  padding: 1.5rem 1.25rem 1.75rem;
  text-align: center;
}
.review-modal__summary {
  margin-bottom: 1.25rem;
}
.review-modal__summary-label {
  margin: 0 0 .5rem;
  font-size: .82rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.review-modal__summary-score {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .15rem;
  line-height: 1;
}
.review-modal__summary-value {
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: var(--primary);
}
.review-modal__summary-of {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}
.review-modal__summary-stars {
  margin: .5rem 0 0;
  font-size: 1rem;
  letter-spacing: .08em;
  color: #e8a317;
}
.review-modal__summary-count {
  margin: .35rem 0 0;
  font-size: .9rem;
  color: var(--text-muted);
}
.review-modal__google-note {
  margin: 0 0 1.25rem;
  font-size: .88rem;
  line-height: 1.55;
  color: var(--text-body);
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}
.review-modal__google-cta {
  max-width: 320px;
  margin: 0 auto;
}
body.review-modal-open {
  overflow: hidden;
}
.contact-reviews {
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(31, 111, 120, 0.1);
}
.contact-reviews__title {
  font-size: .95rem;
  font-weight: var(--fw-semibold);
  margin: 0 0 .85rem;
  color: var(--text);
}
.contact-reviews .review-cards {
  width: 100%;
  max-width: none;
}
.trust-bar__highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem 1.25rem;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: .6rem;
  min-width: 0;
}
.trust-bar__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: rgba(47, 167, 160, 0.12);
  color: var(--primary);
}
.trust-bar__icon .icon--trust {
  font-size: .95rem;
}
.trust-bar__text {
  font-size: .9rem;
  font-weight: var(--fw-semibold);
  color: var(--text);
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.trust-bar__reviews {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: .35rem;
  padding-top: .65rem;
  border-top: 1px solid rgba(31, 111, 120, 0.1);
  background: var(--white);
}
.trust-bar__reviews .review-cards {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.section {
  padding: 3rem 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}
.section--alt {
  background: var(--bg-soft);
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}
.section__head { text-align: center; max-width: 640px; margin: 0 auto 2rem; }
.section__head p { color: var(--text-muted); }
.section__more { text-align: center; margin-top: 1.5rem; }

.grid { display: grid; gap: 1.25rem; }
.grid--services { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
/* EEG filigranı — seçili bölümler (trust-bar / yorum kartları hariç) */
.has-eeg-bg,
.page-hero,
.section:not(.section--alt):not(.cta-band) {
  position: relative;
  overflow: hidden;
  contain: layout paint;
}
.has-eeg-bg::before,
.page-hero::before,
.section:not(.section--alt):not(.cta-band)::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 55%;
  width: min(920px, 115%);
  height: 140px;
  transform: translate(-50%, -50%);
  background: url('../svg/eeg-wave-bg.svg') center / 100% auto no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.page-hero::before {
  top: 62%;
  height: 96px;
  opacity: 0.11;
}
#hizmetler,
.home-articles,
.cta-band {
  --treatment-section-title-size: clamp(1.55rem, 3vw, 2.25rem);
}
#hizmetler .section__head h2,
#hizmetler .treatment-section__title,
.home-articles .section__head h2,
.home-articles .treatment-section__title,
.cta-band .treatment-section__title,
.cta-band__title {
  font-size: var(--treatment-section-title-size);
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}
#hizmetler .section__head h2,
#hizmetler .treatment-section__title,
.home-articles .section__head h2,
.home-articles .treatment-section__title {
  margin-bottom: .55rem;
}
#hizmetler .section__head p,
.home-articles .section__head p {
  font-size: var(--text-section-lead);
  line-height: var(--lh-body);
  color: var(--text-muted);
}
#hizmetler::before {
  top: 52%;
  height: 150px;
  opacity: 0.13;
}
.has-eeg-bg .container,
.trust-bar .container,
.page-hero .container,
.section:not(.section--alt):not(.cta-band) .container {
  position: relative;
  z-index: 1;
}

.grid--home-treatments {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}
.treatments-index__grid {
  gap: 1rem;
}
.content-detail--index .treatments-index__grid {
  margin-top: 0.25rem;
}
@media (min-width: 720px) {
  .grid--home-treatments {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (min-width: 960px) {
  .grid--home-treatments { gap: 1.75rem; }
}
.home-treatments__action {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}
.btn--treatments-all {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-width: min(100%, 210px);
  justify-content: center;
  font-size: .69rem;
  padding: .56rem .94rem;
  min-height: 33px;
  gap: .4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn--treatments-all .icon--fa {
  font-size: .75rem;
}
.btn--treatments-all::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../svg/eeg-wave-bg.svg') center / 140% auto no-repeat;
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.btn--treatments-all > * { position: relative; z-index: 1; }
@media (min-width: 720px) {
  .has-eeg-bg::before,
  .page-hero::before,
  .section:not(.section--alt):not(.cta-band)::before {
    height: 160px;
    opacity: 0.14;
  }
  .page-hero::before { height: 110px; opacity: 0.12; }
  #hizmetler::before { height: 180px; opacity: 0.15; }
  .service-card::before,
  .article-card::before { opacity: 0.18; }
}
.grid--articles { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

/* —— Home: latest articles —— */
.home-articles__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.home-articles__item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .7rem .75rem;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(31, 111, 120, .08);
  box-shadow: none;
  transition: border-color .2s ease;
}
.home-articles__item:hover,
.home-articles__item:focus-visible {
  border-color: rgba(47, 167, 160, .35);
}
.home-articles__thumb {
  width: 4.75rem;
  height: 4.75rem;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: var(--radius);
  background: rgba(31, 111, 120, .06);
}
.home-articles__body {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  min-width: 0;
  flex: 1 1 auto;
}
.home-articles__date {
  font-size: .72rem;
  font-weight: var(--fw-medium);
  letter-spacing: .02em;
  color: var(--secondary);
}
.home-articles__title {
  font-size: .9375rem;
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  color: var(--primary);
}
.home-articles__excerpt {
  font-size: .8125rem;
  line-height: 1.45;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-articles__action {
  margin: 1.35rem 0 0;
  text-align: center;
}
@media (min-width: 768px) {
  .home-articles__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }
  .home-articles__item {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden;
  }
  .home-articles__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 0;
  }
  .home-articles__body {
    padding: .95rem 1rem 1.1rem;
    gap: .35rem;
  }
  .home-articles__title { font-size: 1rem; }
  .home-articles__excerpt { -webkit-line-clamp: 3; }
}

/* —— Article cards (listing + detail) —— */
.article-card {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.article-card__media {
  display: block;
  line-height: 0;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.article-card__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: rgba(31, 111, 120, .06);
}
.article-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.article-card__date {
  font-size: .75rem;
  font-weight: var(--fw-medium);
  color: var(--secondary);
  margin: 0 0 .4rem;
}
.article-card__title {
  margin: 0 0 .5rem;
  font-size: 1.05rem;
  line-height: 1.35;
}
.article-card__title a {
  color: inherit;
  text-decoration: none;
}
.article-card__title a:hover { color: var(--secondary); }
.article-card__excerpt {
  margin: 0 0 .75rem;
  flex: 1 1 auto;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.article-detail__date {
  display: block;
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: var(--fw-medium);
  color: var(--secondary);
}
.article-detail__figure {
  margin: 0;
  padding: 0 0 1.5rem;
  background: linear-gradient(180deg, rgba(31, 111, 120, .04) 0%, transparent 100%);
}
.article-detail__image {
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  display: block;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: none;
}
.page-hero--article h1 { margin-top: 0; }

.card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: none; padding: 1.25rem;
  border: 1px solid rgba(31, 111, 120, 0.12);
}
.service-card,
.article-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.service-card::before,
.article-card::before {
  content: '';
  position: absolute;
  right: -8%;
  bottom: -20%;
  width: 75%;
  height: 50%;
  background: url('../svg/eeg-wave-bg.svg') right bottom / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.service-card > *,
.article-card > * { position: relative; z-index: 1; }
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: .75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(31, 111, 120, 0.12);
  box-shadow: none;
  color: var(--primary);
}
.treatment-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
  padding: 1rem;
}
.treatment-card__body {
  flex: 1 1 auto;
  min-height: 0;
}
.treatment-card h3 {
  margin: 0 0 .45rem;
  font-size: calc(1rem - 1pt);
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .04em;
  min-height: calc((1rem - 1pt) * 1.35 * 2);
}
.treatment-card__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .1rem;
}
.treatment-card__title-line {
  display: block;
}
.treatment-card__title-link {
  display: block;
  color: var(--primary);
  text-decoration: none;
}
.treatment-card__title-link:hover { color: var(--secondary); }
.treatment-card p {
  font-size: .875rem;
  margin: 0;
  line-height: 1.5;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: calc(0.875rem * 1.5 * 2);
}
.treatment-card .card__link {
  margin-top: auto;
  padding-top: .85rem;
  align-self: flex-start;
  font-size: .7rem;
  font-weight: var(--fw-semibold);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.treatment-card .card__link--icon {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.treatment-card .card__link--icon .icon--fa { font-size: .65rem; }
@media (min-width: 720px) {
  .info-card {
    flex: 0 0 clamp(210px, 74cqi, 248px);
    min-height: 15.5rem;
    padding: 1.45rem 1.05rem 1.5rem;
  }
  #hizmetler {
    --treatment-section-title-size: clamp(1.65rem, 3.2vw, 2.35rem);
  }
  .treatment-card {
    padding: 1.45rem 1.35rem;
    min-height: 12.5rem;
  }
  .treatment-card h3 {
    min-height: 0;
    margin-bottom: .6rem;
  }
  .treatment-card__title {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: .4rem;
  }
  .treatment-card__title-line { display: inline-block; }
  .treatment-card__title-link { white-space: nowrap; }
  .treatment-card p {
    font-size: .92rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    min-height: calc(0.92rem * 1.5 * 3);
  }
  .treatment-card .card__link { font-size: .74rem; }
  .treatment-card .card__link--icon .icon--fa { font-size: .68rem; }
}
@media (min-width: 960px) {
  #hizmetler {
    --treatment-section-title-size: clamp(1.75rem, 3.4vw, 2.45rem);
  }
  .treatment-card {
    padding: 1.65rem 1.5rem;
    min-height: 13.25rem;
  }
  .treatment-card p {
    font-size: .98rem;
    min-height: calc(0.98rem * 1.5 * 3);
  }
  .treatment-card .card__link { font-size: .76rem; }
  .treatment-card .card__link--icon .icon--fa { font-size: .7rem; }
}
.card__link {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: .9rem;
  display: inline-block;
  margin-top: .5rem;
}

.container--wide {
  width: min(1320px, var(--container-pad));
}
.grid--video-tiles {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr);
}
.btn--videos-all { min-width: min(100%, 280px); justify-content: center; }

.video-tile {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(31, 111, 120, 0.1);
  box-shadow: none;
}
.video-tile__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0a3238;
  overflow: hidden;
}
.video-tile__media.is-playing iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-tile__play {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
}
.video-tile__play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-tile__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 50, 56, 0.05) 35%,
    rgba(10, 50, 56, 0.45) 100%
  );
  pointer-events: none;
}
.video-tile__play:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
}
.video-tile__play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(15, 55, 60, 0.28);
  pointer-events: none;
}
.video-tile__body {
  padding: 1.2rem 1.35rem 1.35rem;
  flex: 1 1 auto;
}
.video-tile__title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: var(--fw-medium);
  line-height: 1.45;
  color: var(--text);
}
@media (min-width: 720px) {
  .grid--video-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }
  .video-tile__title { font-size: 1.08rem; }
}
@media (min-width: 1024px) {
  .grid--video-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
  .video-tile__body { padding: 1.25rem 1.5rem 1.45rem; }
  .video-tile__title { font-size: 1.12rem; }
}

.about-full__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: start; }
.about-full__grid img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: none;
  object-fit: cover;
  aspect-ratio: 1;
}
.page-featured-media {
  margin: 0;
}
.page-featured-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: none;
}
.page-with-media__grid,
.eeg-service__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: start;
}
.contact-info .page-featured-media {
  margin-bottom: 1rem;
}
.contact-info .page-featured-media img {
  max-height: 220px;
  object-fit: cover;
  object-position: center 20%;
}

.eeg-service {
  padding-bottom: 1.5rem;
}
.faq-eeg__title {
  margin: 0 0 1.25rem;
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  text-align: center;
}
.faq-grid { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.faq-item {
  background: var(--white); border-radius: var(--radius); padding: 1rem 1.1rem;
  border: 1px solid rgba(31,111,120,.08);
}
.faq-item summary { font-weight: var(--fw-medium); cursor: pointer; color: var(--text); }
.faq-item p { margin: .65rem 0 0; color: var(--text-muted); font-size: .95rem; font-weight: var(--fw-regular); }

.tag {
  font-size: .75rem;
  background: var(--bg-soft);
  color: var(--primary);
  padding: .2rem .55rem;
  border-radius: var(--radius);
  font-weight: var(--fw-medium);
}

.page-hero { background: var(--white); padding: 2rem 0 1.5rem; border-bottom: 1px solid rgba(31,111,120,.06); }
.page-hero__lead { color: var(--text-muted); font-weight: var(--fw-regular); max-width: 60ch; margin: .75rem auto 0; }
.page-hero .container { text-align: center; }
.prose p { color: var(--text-muted); }
.prose h2 { margin-top: 1.5rem; color: var(--text); }

.cta-band.section { padding: 1.65rem 0; }
.cta-band { background: var(--primary); color: var(--white); }
.cta-band .treatment-section__title,
.cta-band__title {
  font-size: 15px;
  letter-spacing: var(--tracking-caps);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--white);
  margin-top: 0;
  margin-bottom: .2rem;
}
.cta-band p {
  opacity: .9;
  margin: 0;
  font-size: var(--text-section-lead);
  line-height: 1.4;
  max-width: 42rem;
}
.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: .5rem;
}
.cta-band__copy {
  flex: 0 0 auto;
}
.cta-band__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .4rem;
  width: 100%;
}
.cta-band__btn {
  width: 100%;
  min-width: 0;
}
.cta-band__btn span {
  text-align: center;
  line-height: 1.25;
}
.cta-band .btn {
  padding: .55rem .75rem;
  min-height: 40px;
  font-size: .875rem;
}
.cta-band .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .5);
  background: transparent;
}
.cta-band .btn--outline:hover,
.cta-band .btn--outline:focus-visible {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255, 255, 255, .1);
}
.cta-band .btn--primary {
  background: var(--white);
  color: var(--primary);
}
.cta-band .btn--primary:hover,
.cta-band .btn--primary:focus-visible {
  background: #f0fafa;
  color: var(--primary);
}

.contact-page__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.contact-form > label:not(.contact-form__consent) {
  display: block;
  margin-bottom: .85rem;
  font-weight: var(--fw-medium);
  font-size: .9rem;
  color: var(--text);
}
.contact-form > label:not(.contact-form__consent) input,
.contact-form > label:not(.contact-form__consent) textarea {
  display: block;
  width: 100%;
  margin-top: .35rem;
  padding: .7rem .85rem;
  border: 1px solid rgba(31, 111, 120, .2);
  border-radius: var(--radius);
  font: inherit;
}
.contact-form__consent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: .6rem;
  margin: .15rem 0 1rem;
  font-weight: var(--fw-regular);
  cursor: pointer;
}
.contact-form__checkbox {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin: .15rem 0 0;
  padding: 0;
  border: 1px solid rgba(31, 111, 120, .35);
  border-radius: 3px;
  accent-color: var(--primary);
  cursor: pointer;
}
.contact-form__consent-text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: calc(.8rem + 1px);
  line-height: 1.5;
  color: var(--text-muted);
}
.contact-form .btn--primary {
  width: 100%;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }
.map-embed__link { margin: 1rem 0 0; font-size: .88rem; }
.map-embed__link a { font-weight: var(--fw-medium); }
.map-embed iframe { width: 100%; height: 220px; border: 0; border-radius: var(--radius); margin-top: .65rem; }
.alert { padding: .75rem 1rem; border-radius: var(--radius); }
.alert--success { background: #e8f7ef; color: #1d6b3a; }
.alert--error { background: #fdecec; color: #9b2c2c; }

.site-footer {
  margin-top: 0;
  background: linear-gradient(168deg, #174e55 0%, var(--primary) 42%, #1a636b 100%);
  color: rgba(255, 255, 255, .88);
  font-weight: var(--fw-regular);
}
.site-footer a {
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  transition: color .15s ease;
}
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--white); }
.footer__shell { padding: 1.15rem 0 .65rem; }
.footer__columns {
  display: grid;
  gap: 0;
}
.footer__col { min-width: 0; }
.footer__col--brand .brand { margin: 0; }
.footer__brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
}
.footer__about {
  display: none;
  margin: .75rem 0 0;
  font-size: .84rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .75);
  max-width: 28rem;
}
.footer__col-body {
  display: none;
}
.footer__acc--mobile {
  display: block;
}
.footer__hours {
  font-size: .82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .72);
}
.footer__hours strong {
  display: block;
  margin-bottom: .15rem;
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, .88);
}
.footer__col-title {
  display: none;
  margin: 0 0 .5rem;
  font-size: .75rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
}
.footer__lang.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: .35rem;
  flex-shrink: 0;
}
.footer__lang .lang-flag {
  width: 30px;
  height: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .25);
}
.footer__signature {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .65rem;
  padding-top: .65rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer__agency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .82;
  transition: opacity .15s ease;
}
.footer__agency:hover,
.footer__agency:focus-visible {
  opacity: 1;
}
.footer__agency-logo {
  display: block;
  width: auto;
  height: 1.35rem;
  max-width: min(7.5rem, 38vw);
  object-fit: contain;
  object-position: center center;
  filter: brightness(0) invert(1);
}
.footer-acc { min-width: 0; }
.footer-acc__summary {
  display: flex;
  list-style: none;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .55rem 0;
  font-size: .82rem;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
}
.footer-acc__summary::-webkit-details-marker { display: none; }
.footer-acc__icon {
  display: inline-flex;
  transition: transform .2s ease;
}
.footer-acc__icon .icon--fa {
  font-size: .75rem;
  opacity: .85;
}
.footer-acc[open] .footer-acc__icon { transform: rotate(90deg); }
.footer-acc__panel { padding: 0 0 .15rem; }
.footer__links,
.footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-acc__panel .footer__links a,
.footer-acc__panel .footer__contact a {
  font-size: .84rem;
  line-height: 1.35;
}
.footer__links li,
.footer__contact li {
  margin: 0 0 .28rem;
}
.footer__links li:last-child,
.footer__contact li:last-child { margin-bottom: 0; }
.footer__address {
  font-size: .82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .72);
}
.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .12);
}
.footer__legal-inner {
  padding: .55rem 0 .7rem;
  text-align: center;
}
.footer__legal-inner p {
  margin: 0;
  font-size: .72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, .68);
  text-align: center;
}
.footer__legal-sep { margin: 0 .35rem; opacity: .55; }
.footer__copy { font-weight: var(--fw-medium); color: rgba(255, 255, 255, .78); }

@media (min-width: 769px) {
  .footer__shell { padding: 1.35rem 0 .65rem; }
  .footer__columns {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 1rem 1.5rem;
    align-items: start;
  }
  .footer__col-title {
    display: block;
    margin-bottom: .4rem;
  }
  .footer__about {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-top: .55rem;
    font-size: .8rem;
    line-height: 1.35;
  }
  .footer__col-body {
    display: block;
  }
  .footer__acc--mobile {
    display: none;
  }
  .footer__col-body .footer__links a,
  .footer__col-body .footer__contact a {
    font-size: .8rem;
    line-height: 1.28;
  }
  .footer__col-body .footer__links li,
  .footer__col-body .footer__contact li {
    margin-bottom: .16rem;
  }
  .footer__col--menu .footer__links {
    column-count: 2;
    column-gap: 1rem;
  }
  .footer__col--menu .footer__links li {
    break-inside: avoid;
  }
  .footer__col--contact .footer__contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 1rem;
  }
  .footer__col--contact .footer__address {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .footer__col--contact .footer__hours {
    font-size: .8rem;
    line-height: 1.3;
  }
  .footer__col--contact .footer__hours strong {
    display: inline;
    margin-bottom: 0;
  }
  .footer__lang {
    flex-shrink: 0;
  }
}

@media (min-width: 1025px) {
  .footer__columns {
    gap: 1.1rem 2rem;
  }
}

body.menu-open { overflow: hidden; }

/* İç sayfalar — ortak content-detail iskeleti (anasayfa hero hariç) */
.service-detail {
  --content-detail-pad-y: clamp(1.35rem, 3vw, 2.25rem);
  --content-detail-gap-x: clamp(1.25rem, 2.5vw, 2rem);
  --content-detail-gap-y: 1.15rem;
}
.service-detail__head h1,
.services-index-hero h1 {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.35;
}
.service-detail__main.section {
  padding: var(--content-detail-pad-y) 0 clamp(2rem, 4vw, 2.75rem);
  background: var(--white);
  border-bottom: 1px solid rgba(31, 111, 120, .06);
}
.service-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  grid-template-areas: "copy media";
  column-gap: var(--content-detail-gap-x);
  row-gap: var(--content-detail-gap-y);
  align-items: start;
}
.service-detail__layout--no-media {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "copy";
}
.service-detail__copy {
  grid-area: copy;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--content-detail-gap-y);
}
.service-detail__head {
  margin: 0;
}
/* Hizmet metinleri — anasayfa #hizmetler .treatment-card p ile aynı */
.service-detail__lead,
.service-detail__prose.prose,
.service-detail__prose.prose p,
.service-detail__intro,
.service-card__excerpt,
.services-index-hero .page-hero__lead {
  font-size: calc(.875rem + 1px);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  color: var(--text-muted);
}
.service-detail__lead,
.services-index-hero .page-hero__lead {
  margin: .75rem 0 0;
  max-width: none;
}
.service-detail__prose.prose p,
.service-detail__intro {
  margin: 0 0 1em;
}
.service-detail__prose.prose p:last-child {
  margin-bottom: 0;
}
.service-detail__content {
  min-width: 0;
}
.service-detail__aside {
  grid-area: media;
  align-self: start;
}
.service-detail__prose {
  max-width: none;
}
.service-detail__block {
  margin-top: 0;
}
.service-detail__prose.prose h2 {
  margin: 1.15rem 0 .45rem;
  font-size: calc(1rem - 1pt);
  font-weight: var(--fw-semibold);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text);
}
.service-detail__prose.prose > .service-detail__block:first-child h2 {
  margin-top: 0;
}
.service-detail__list {
  margin: 0 0 1em;
  padding-left: 1.15rem;
  font-size: calc(.875rem + 1px);
  line-height: 1.5;
  color: var(--text-muted);
}
.service-detail__list li {
  margin-bottom: .35rem;
}
.service-detail__list li:last-child {
  margin-bottom: 0;
}
@media (min-width: 720px) {
  .service-detail__lead,
  .service-detail__prose.prose,
  .service-detail__prose.prose p,
  .service-detail__intro,
  .service-detail__list,
  .service-card__excerpt,
  .services-index-hero .page-hero__lead {
    font-size: calc(.92rem + 1px);
  }
}
@media (min-width: 960px) {
  .service-detail__lead,
  .service-detail__prose.prose,
  .service-detail__prose.prose p,
  .service-detail__intro,
  .service-detail__list,
  .service-card__excerpt,
  .services-index-hero .page-hero__lead {
    font-size: calc(.98rem + 1px);
  }
}
.ssss {
  padding-top: 2rem;
}
.ssss__inner {
  max-width: 100%;
}
.ssss .info-card__answer {
  color: var(--text-body);
}
/* Son kart: diğer kartlardan %20 geniş */
.info-carousel__viewport .info-card--contact {
  flex: 0 0 clamp(240px, calc(76cqi * 1.2), 302px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
@supports not (width: 1cqi) {
  .info-carousel__viewport .info-card--contact {
    flex: 0 0 min(302px, 92vw);
  }
}
.info-card--contact {
  justify-content: flex-start;
  border: 1.5px solid var(--primary);
  box-shadow: none;
  background: linear-gradient(180deg, #fff 0%, rgba(244, 250, 251, 0.65) 100%);
}
.info-card--contact .info-card__question {
  font-size: 1rem;
}
.info-card--contact .info-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  margin-top: auto;
  padding-top: .35rem;
}
.info-card--contact .info-card__btn {
  width: 100%;
  justify-content: center;
  gap: .2rem;
  font-size: .78rem;
  padding: .55rem .65rem;
  min-height: 2.75rem;
}
.info-card--contact .info-card__btn .icon--fa {
  font-size: .95rem;
}
.info-card--contact .btn--whatsapp .icon--wa {
  font-size: 1rem;
}
@media (min-width: 720px) {
  .info-card--contact .info-card__actions {
    grid-template-columns: 1fr;
  }
}
.service-detail__aside .page-featured-media {
  margin: 0;
}
.service-detail__aside .page-featured-media img {
  position: sticky;
  top: calc(var(--header-h) + var(--content-detail-pad-y, 1.5rem));
}
.about-detail .service-detail__aside .page-featured-media img {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
}
.article-detail .service-detail__aside .page-featured-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}
.content-detail--index .service-detail__layout,
.content-detail--contact .service-detail__layout {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "copy";
}
.content-detail--index .service-detail__content {
  min-width: 0;
}
.content-detail .content-detail__grid {
  margin-top: .35rem;
}
.content-detail .service-detail__disclaimer {
  margin-top: 1.15rem;
  font-size: calc(.8rem + 1px);
  line-height: 1.5;
  color: var(--text-muted);
  font-style: italic;
}
.contact-detail__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.contact-detail__primary {
  background: var(--white);
  border: 1px solid rgba(31, 111, 120, 0.12);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem 1.45rem;
  box-shadow: none;
}
.contact-detail__primary-title,
.contact-detail__form-title {
  margin: 0 0 1rem;
  font-size: calc(1rem - 1pt);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--text);
}
.contact-detail__facts {
  margin: 0;
  display: grid;
  gap: .85rem;
}
.contact-detail__fact {
  margin: 0;
}
.contact-detail__fact dt {
  margin: 0 0 .2rem;
  font-size: .72rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
}
.contact-detail__fact dd {
  margin: 0;
  font-size: calc(.875rem + 1px);
  line-height: 1.5;
  color: var(--text-muted);
}
.contact-detail__fact dd a {
  color: var(--primary);
  font-weight: var(--fw-medium);
}
.contact-detail__fact dd a:hover {
  color: var(--secondary);
}
.contact-detail__note {
  margin: 1rem 0 0;
  font-size: calc(.8rem + 1px);
  line-height: 1.45;
  color: var(--text-muted);
}
.contact-detail__map-block {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(31, 111, 120, 0.1);
}
.contact-detail__reviews {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(31, 111, 120, 0.1);
}
.contact-detail__sub {
  margin: 0 0 .65rem;
  font-size: calc(.92rem + 1px);
  font-weight: var(--fw-semibold);
  color: var(--text);
}
.contact-detail__form-panel {
  background: var(--white);
  border: 1px solid rgba(31, 111, 120, 0.12);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem 1.45rem;
  box-shadow: none;
}
.contact-detail .contact-reviews {
  margin-top: 0;
}
.contact-detail .map-embed {
  margin-top: .65rem;
}
.contact-detail .contact-form {
  margin-top: 0;
}
@media (min-width: 960px) {
  .contact-detail__layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  }
}
.content-detail .article-card__excerpt,
.content-detail .service-card__excerpt {
  font-size: calc(.875rem + 1px);
  line-height: 1.5;
  color: var(--text-muted);
}
.service-detail__related-title {
  text-align: center;
  margin: 0 0 1.25rem;
  font-size: 15px;
  letter-spacing: var(--tracking-caps);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}
.service-detail__related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  justify-content: center;
}
.service-detail__related-list a {
  display: inline-block;
  padding: .45rem .85rem;
  background: var(--white);
  border: 1px solid rgba(31, 111, 120, .12);
  border-radius: var(--radius);
  font-weight: var(--fw-medium);
  font-size: var(--text-sm);
}
.service-detail__related-list a:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}
.services-index-hero .container {
  text-align: center;
}
.services-index-hero .page-hero__lead {
  margin-left: auto;
  margin-right: auto;
}
.services-index .grid--services {
  gap: 1.25rem;
}
.services-index .service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.services-index .service-card .card__link {
  margin-top: auto;
}
.service-card__title {
  margin: 0 0 .5rem;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.35;
}
.service-card__title a {
  color: var(--text);
}
.service-card__title a:hover {
  color: var(--primary);
}
.service-card__excerpt {
  margin: 0 0 .75rem;
}
