/* ============================================================
   Emirhan Tekeli Ağız & Diş Sağlığı Kliniği
   Aesthetic: Refined clinical luxury — warm ivory, deep teal, champagne gold
   ============================================================ */

:root {
  --ink: #0e2a28;          /* deep teal/pine */
  --ink-2: #123734;
  --ink-soft: #2c4744;
  --ivory: #f7f2e9;        /* warm off-white */
  --ivory-2: #efe7d8;
  --paper: #fffdf8;
  --gold: #c19a4b;         /* champagne gold */
  --gold-soft: #d8b877;
  --gold-glow: rgba(193, 154, 75, .18);
  --line: rgba(14, 42, 40, .12);
  --muted: #5d706c;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1200px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 30px 60px -25px rgba(14, 42, 40, .35);
  --shadow-soft: 0 18px 40px -24px rgba(14, 42, 40, .4);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 24px; }

.section { padding: clamp(64px, 9vw, 130px) 0; }

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

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

::selection { background: var(--gold); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  padding: 13px 24px; border-radius: 100px; border: 1px solid transparent;
  cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #fff; box-shadow: 0 12px 26px -12px var(--gold);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px var(--gold); }
.btn--ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-3px); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0; transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s;
}
.nav.scrolled {
  background: rgba(247, 242, 233, .85);
  backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px rgba(14,42,40,.5);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ivory); transition: color .4s var(--ease); }
.brand__mark {
  width: 40px; height: 40px; flex: none; background-color: var(--gold);
  -webkit-mask: url("logo-mark.png") center / contain no-repeat;
          mask: url("logo-mark.png") center / contain no-repeat;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; letter-spacing: .01em; }
.brand__text em { font-style: normal; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(247,242,233,.6); font-weight: 600; transition: color .4s var(--ease); }

.nav__links { display: flex; gap: 30px; }
.nav__links a { font-size: .92rem; font-weight: 500; color: rgba(247,242,233,.82); position: relative; padding: 4px 0; transition: color .3s var(--ease); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

/* When scrolled, nav sits on light ivory → switch text to dark */
.nav.scrolled .brand { color: var(--ink); }
.nav.scrolled .brand__text em { color: var(--muted); }
.nav.scrolled .nav__links a { color: var(--ink-soft); }
.nav.scrolled .nav__links a:hover { color: var(--ink); }
.nav.scrolled .nav__toggle span { background: var(--ink); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ivory); border-radius: 2px; transition: .3s var(--ease); }
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none; flex-direction: column; gap: 6px; padding: 0 24px;
  max-height: 0; overflow: hidden; transition: max-height .45s var(--ease), padding .45s var(--ease);
  background: rgba(247, 242, 233, .97); backdrop-filter: blur(14px);
}
.nav.open .nav__mobile { max-height: 400px; padding: 16px 24px 26px; }
.nav__mobile a { padding: 12px 4px; border-bottom: 1px solid var(--line); font-weight: 500; }
.nav__mobile a:last-child { border: 0; margin-top: 10px; }

/* ---------- HERO ---------- */
.hero {
  position: relative; padding: 150px 0 0; overflow: hidden;
  background:
    radial-gradient(120% 80% at 80% -10%, #123a37 0%, var(--ink) 55%) ;
  color: var(--ivory);
}
.hero__glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), transparent 65%);
  top: -180px; right: -140px; pointer-events: none;
}
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.35fr .85fr; gap: 60px; align-items: center;
  padding-bottom: 70px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-soft);
}
.eyebrow__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-glow); }

.hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(3rem, 7vw, 5.6rem); line-height: 1.02; letter-spacing: -.01em;
  margin: 22px 0 26px;
}
.hero__title em { font-style: italic; color: var(--gold-soft); }

.hero__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem); max-width: 34ch;
  color: rgba(247, 242, 233, .8); font-weight: 300;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 30px; }
.hero .btn--ghost { color: var(--ivory); border-color: rgba(247,242,233,.28); }
.hero .btn--ghost:hover { border-color: var(--gold-soft); color: #fff; }

.hero__rating { display: flex; align-items: center; gap: 14px; }
.stars { color: var(--gold-soft); letter-spacing: 2px; font-size: 1.05rem; }
.hero__rating p { font-size: .9rem; color: rgba(247,242,233,.7); }
.hero__rating strong { color: var(--ivory); }

/* hero card */
.hero__card {
  background: rgba(255, 253, 248, .06);
  border: 1px solid rgba(247, 242, 233, .16);
  backdrop-filter: blur(10px);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow);
}
.hero__card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.pill {
  font-size: .72rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: #0e2a28; background: var(--gold-soft); padding: 5px 12px; border-radius: 100px;
}
.hero__hours { font-size: .9rem; color: rgba(247,242,233,.75); font-weight: 500; }
.hero__card h3 { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; margin-bottom: 6px; }
.muted { color: rgba(247,242,233,.65); font-size: .92rem; }
.hero__list { list-style: none; margin: 20px 0 22px; display: flex; flex-direction: column; gap: 12px; }
.hero__list li { display: flex; align-items: flex-start; gap: 11px; font-size: .93rem; color: rgba(247,242,233,.88); }
.hero__list li span { color: var(--gold-soft); font-weight: 700; }
.hero__phone {
  display: flex; flex-direction: column; padding: 16px 18px; border-radius: var(--radius-sm);
  background: rgba(193,154,75,.14); border: 1px solid rgba(193,154,75,.3);
  transition: background .3s;
}
.hero__phone:hover { background: rgba(193,154,75,.24); }
.hero__phone strong { font-size: 1.4rem; font-family: var(--serif); letter-spacing: .02em; }

/* marquee */
.marquee {
  position: relative; z-index: 2; border-top: 1px solid rgba(247,242,233,.14);
  border-bottom: 1px solid rgba(247,242,233,.14); overflow: hidden; padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 32px; white-space: nowrap;
  animation: marquee 32s linear infinite; will-change: transform;
}
.marquee__track span { font-family: var(--serif); font-size: 1.5rem; font-style: italic; color: rgba(247,242,233,.55); }
.marquee__track span[aria-hidden] { color: var(--gold); font-style: normal; font-size: .9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section head ---------- */
.section__eyebrow {
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: var(--gold);
  display: inline-block; margin-bottom: 16px;
}
.section__eyebrow--light { color: var(--gold-soft); }
.section__title {
  font-family: var(--serif); font-weight: 500; letter-spacing: -.01em;
  font-size: clamp(2.1rem, 4.3vw, 3.4rem); line-height: 1.08;
}
.section__title--light { color: var(--ivory); }
.section__head { max-width: 640px; margin-bottom: 56px; }
.section__sub { margin-top: 16px; color: var(--muted); font-size: 1.08rem; }

/* ---------- ABOUT ---------- */
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.about__media-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  background: linear-gradient(160deg, var(--ink), var(--ink-2));
  padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow);
}
.stat-card {
  background: rgba(255,253,248,.05); border: 1px solid rgba(247,242,233,.12);
  border-radius: var(--radius-sm); padding: 22px 20px; color: var(--ivory);
}
.stat-card:first-child { grid-column: 1 / -1; }
.stat-card--gold { background: linear-gradient(150deg, var(--gold-soft), var(--gold)); border: 0; color: #0e2a28; }
.stat-card__num { display: block; font-family: var(--serif); font-size: 2.7rem; font-weight: 600; line-height: 1; }
.stat-card__label { font-size: .82rem; color: rgba(247,242,233,.7); margin-top: 8px; display: block; }
.stat-card--gold .stat-card__label { color: rgba(14,42,40,.7); }

.about__text p { color: var(--ink-soft); margin-bottom: 16px; max-width: 52ch; }
.about__text .section__title { margin-bottom: 22px; }
.checklist { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.checklist li { position: relative; padding-left: 34px; font-weight: 500; color: var(--ink); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px;
  display: grid; place-items: center; border-radius: 50%; font-size: .7rem; font-weight: 700;
  background: var(--gold); color: #fff;
}

/* ---------- SERVICES (editorial index list) ---------- */
.services { background: var(--paper); }
.services__wrap { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: start; }
.services__intro { position: sticky; top: 110px; }
.services__intro .section__title { margin-bottom: 22px; }
.services__note { color: var(--muted); font-size: 1.05rem; max-width: 34ch; margin-bottom: 28px; }

.services__list { list-style: none; border-top: 1px solid var(--line); }
.srv {
  display: grid; grid-template-columns: auto 52px 1fr auto; align-items: center; gap: 24px;
  padding: 26px 14px; border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden; transition: padding .45s var(--ease);
}
.srv::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(100deg, rgba(193,154,75,.1), rgba(193,154,75,0) 60%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.srv > * { position: relative; z-index: 1; }
.srv:hover { padding-left: 26px; }
.srv:hover::before { opacity: 1; }

.srv__no {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600; font-style: italic;
  color: var(--gold); width: 2.4ch; transition: color .35s;
}
.srv__icon {
  width: 52px; height: 52px; flex: none; display: grid; place-items: center;
  color: var(--ink); border: 1px solid var(--line); border-radius: 50%;
  background: var(--ivory); transition: background .4s var(--ease), color .4s var(--ease), border-color .4s, transform .5s var(--ease);
}
.srv__icon svg { width: 30px; height: 30px; }
.srv:hover .srv__icon { background: var(--ink); color: var(--gold-soft); border-color: var(--ink); transform: rotate(-6deg); }

.srv__text h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; line-height: 1.1; }
.srv__text p { font-size: .93rem; color: var(--muted); margin-top: 3px; max-width: 46ch; }

.srv__arrow {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center; color: var(--ink);
  border-radius: 50%; opacity: 0; transform: translateX(-8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s, color .3s;
}
.srv__arrow svg { width: 20px; height: 20px; }
.srv:hover .srv__arrow { opacity: 1; transform: none; background: var(--gold); color: #fff; }

/* ---------- DOCTORS ---------- */
.doctors__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.doc {
  display: flex; gap: 26px; align-items: center; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 32px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.doc:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.doc__avatar {
  flex: none; width: 96px; height: 96px; border-radius: 24px; display: grid; place-items: center;
  font-family: var(--serif); font-size: 2.2rem; font-weight: 600; color: #fff;
  background: linear-gradient(150deg, var(--ink-2), var(--ink)); box-shadow: var(--shadow-soft);
}
.doc__avatar--alt { background: linear-gradient(150deg, var(--gold-soft), var(--gold)); color: #0e2a28; }
.doc__body h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; }
.doc__role { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.doc__body p { font-size: .93rem; color: var(--muted); margin: 12px 0 12px; }
.doc__ig { font-size: .85rem; font-weight: 600; color: var(--ink-soft); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.doc__ig:hover { color: var(--gold); }

/* ---------- REVIEWS ---------- */
.reviews { position: relative; background: linear-gradient(160deg, var(--ink), #0a201e); color: var(--ivory); overflow: hidden; }
.reviews__glow {
  position: absolute; width: 620px; height: 620px; border-radius: 50%; bottom: -260px; left: -160px;
  background: radial-gradient(circle, var(--gold-glow), transparent 65%); pointer-events: none;
}
.reviews .section__head { position: relative; z-index: 2; }
.reviews__badge {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 22px;
  background: rgba(255,253,248,.06); border: 1px solid rgba(247,242,233,.16);
  padding: 10px 18px; border-radius: 100px; font-size: .9rem; color: rgba(247,242,233,.85);
}
.reviews__grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: rgba(255,253,248,.05); border: 1px solid rgba(247,242,233,.14);
  border-radius: var(--radius); padding: 32px 30px; backdrop-filter: blur(6px);
  transition: transform .4s var(--ease), border-color .4s;
}
.review:hover { transform: translateY(-6px); border-color: rgba(193,154,75,.5); }
.review__stars { color: var(--gold-soft); letter-spacing: 3px; margin-bottom: 16px; }
.review blockquote {
  font-family: var(--serif); font-size: 1.3rem; font-style: italic; line-height: 1.5;
  color: rgba(247,242,233,.92); margin-bottom: 26px;
}
.review figcaption { display: flex; align-items: center; gap: 14px; }
.review__avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; flex: none;
  background: rgba(193,154,75,.2); color: var(--gold-soft); font-weight: 700; font-size: .9rem;
  border: 1px solid rgba(193,154,75,.35);
}
.review figcaption strong { display: block; font-size: .98rem; }
.review figcaption em { font-style: normal; font-size: .78rem; color: rgba(247,242,233,.55); }

/* ---------- CONTACT (appointment card) ---------- */
.contact__panel {
  display: grid; grid-template-columns: 1.05fr .95fr;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--ink-2), #0a201e);
}
.contact__side { padding: clamp(32px, 4vw, 56px); color: var(--ivory); }
.contact__side .section__title { margin-bottom: 30px; }

.contact__rows { list-style: none; margin-bottom: 32px; }
.contact__rows li {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid rgba(247, 242, 233, .12);
}
.contact__rows li:first-child { padding-top: 0; }
.contact__ic {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center;
  color: var(--gold-soft); border: 1px solid rgba(193, 154, 75, .38); border-radius: 50%;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.contact__ic svg { width: 21px; height: 21px; }
.contact__rows li:hover .contact__ic { background: var(--gold); color: #0e2a28; border-color: var(--gold); }
.contact__label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; display: block; margin-bottom: 3px; }
.contact__rows p { color: rgba(247, 242, 233, .86); font-size: .96rem; line-height: 1.5; }
.contact__rows a:hover { color: var(--gold-soft); }

.contact__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn--ghost-light { background: transparent; color: var(--ivory); border-color: rgba(247, 242, 233, .3); }
.btn--ghost-light:hover { border-color: var(--gold-soft); color: #fff; transform: translateY(-3px); }

.contact__map { position: relative; min-height: 520px; }
.contact__map iframe { width: 100%; height: 100%; min-height: 520px; border: 0; filter: saturate(.92) contrast(1.02); }
.contact__pin {
  position: absolute; left: 22px; bottom: 22px; display: flex; align-items: center; gap: 13px;
  background: var(--paper); color: var(--ink); padding: 12px 20px 12px 13px; border-radius: 100px;
  box-shadow: var(--shadow-soft); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.contact__pin:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -18px rgba(14,42,40,.6); }
.contact__pin-ic {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(150deg, var(--gold-soft), var(--gold)); color: #fff;
}
.contact__pin-ic svg { width: 20px; height: 20px; }
.contact__pin-txt { display: flex; flex-direction: column; font-weight: 700; font-size: .95rem; line-height: 1.2; }
.contact__pin-txt em { font-style: normal; font-weight: 500; font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--ink); color: var(--ivory); padding: 64px 0 30px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(247,242,233,.12); }
.footer__brand { display: flex; gap: 14px; align-items: flex-start; max-width: 360px; }
.footer__brand .brand__mark { width: 36px; height: 36px; margin-top: 2px; }
.footer__brand strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; display: block; }
.footer__brand p { color: rgba(247,242,233,.6); font-size: .9rem; margin-top: 4px; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; align-items: center; }
.footer__links a { font-size: .92rem; color: rgba(247,242,233,.75); }
.footer__links a:hover { color: var(--gold-soft); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; }
.footer__bottom p { font-size: .82rem; color: rgba(247,242,233,.5); }

/* ---------- FAB ---------- */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #fff; box-shadow: 0 14px 30px -8px rgba(37,211,102,.6);
  transition: transform .35s var(--ease);
  animation: fabPulse 2.6s ease-in-out infinite;
}
.fab:hover { transform: scale(1.08); }
@keyframes fabPulse { 0%,100% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.6); } 50% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.6), 0 0 0 12px rgba(37,211,102,.12); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .marquee__track, .fab { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-top: 10px; }
  .hero__card { max-width: 480px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .services__wrap { grid-template-columns: 1fr; gap: 40px; }
  .services__intro { position: static; }
  .doctors__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .contact__panel { grid-template-columns: 1fr; }
  .contact__map { min-height: 380px; }
  .contact__map iframe { min-height: 380px; }
}
@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .srv { grid-template-columns: auto 44px 1fr; gap: 16px; padding: 22px 4px; }
  .srv__arrow { display: none; }
  .srv__icon { width: 44px; height: 44px; }
  .srv__icon svg { width: 26px; height: 26px; }
  .srv__text h3 { font-size: 1.35rem; }
  .hero { padding-top: 120px; }
  .doc { flex-direction: column; text-align: center; align-items: center; }
  .btn--lg { width: 100%; }
  .hero__actions .btn, .contact__actions .btn { flex: 1 1 auto; }
}
