:root {
  --navy: #004876;
  --teal: #0f4f78;
  --mint: #edf5fb;
  --ink: #14374f;
  --muted: #61788d;
  --line: #d7e4ef;
  --white: #fff;
  --shadow: 0 18px 50px rgba(7, 53, 91, 0.12)
}

* {
  box-sizing: border-box
}

body {margin:0;font-family:Arial,Helvetica,sans-serif;color:var(--ink);background:#fff;line-height:1.6}
a {color:inherit;text-decoration:none}
img {max-width:100%;display:block}

.container {width:min(1180px,calc(100% - 32px));margin:0 auto}

.topbar {background:var(--navy);color:#d9eaf7;font-size:14px}
.topbar-inner {min-height:46px;display:flex;align-items:center;justify-content:space-between;gap:18px;padding:8px 0;flex-wrap:wrap;row-gap:8px}
.topbar-meta {display:flex;align-items:center;gap:12px;row-gap:8px;flex:1 1 auto;flex-wrap:wrap}
.topbar-meta .topbar-item {display:inline-flex;align-items:center;gap:10px;color:#d9eaf7;padding:3px 10px;border:1px solid rgba(217,234,247,.32);border-radius:999px;background:rgba(217,234,247,.12);white-space:nowrap}
.topbar-meta .topbar-item + .topbar-item::before {content:'';display:none}
.topbar-meta a {color:#d9eaf7;white-space:nowrap}
.topbar-meta a {text-decoration:underline;text-underline-offset:3px}
.topbar-meta > .topbar-item > span {color:#d9eaf7;white-space:nowrap}
.topbar-social{display:flex;align-items:center;gap:10px;margin-left:auto}
.topbar-social a{display:inline-grid;place-items:center;width:29px;height:29px;color:#d9eaf7;border:1px solid rgba(217,234,247,.42);border-radius:999px;transition:all .2s ease}
.topbar-social a:hover {background:rgba(217,234,247,.14);transform:translateY(-1px)}
.topbar-social svg{width:14px;height:14px}

.site-header {position:sticky;top:0;background:rgba(255,255,255,.95);backdrop-filter:blur(14px);z-index:30;border-bottom:1px solid var(--line)}
.site-header nav>a.is-current,.site-header .nav-dropdown-trigger.is-current{color:#563523;background:#f7eee8;box-shadow:0 8px 22px rgba(74,50,35,.08),inset 0 0 0 1px rgba(147,86,49,.16)}
.site-header .nav-cta.is-current{color:#fff!important;background:#754328;box-shadow:0 8px 20px rgba(117,67,40,.24)}
.nav {height:78px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand {display:flex;align-items:center;gap:12px;min-width:0}
.brand-mark {height:46px;width:auto;display:block;object-fit:contain}
.brand small {display:block;color:var(--muted);max-width:360px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:12px}

.nav nav {display:flex;align-items:center;gap:24px}
.nav nav a {font-weight:700;color:#2f5269}
.lang-switch {
    display:inline-flex;
    align-items:center;
    position:relative;
    border:1px solid #c8dded;
    border-radius:999px;
    overflow:hidden;
    background:rgba(248,251,255,.94);
    padding:3px;
    transition:border-color .2s ease, box-shadow .2s ease;
}
.lang-switch::before {
    content:"";
    position:absolute;
    top:3px;
    left:3px;
    width:calc(50% - 3px);
    height:calc(100% - 6px);
    border-radius:999px;
    background:linear-gradient(180deg, #0f4f78, #004876);
    transition:transform .28s cubic-bezier(.2,.7,.2,1);
    z-index:0;
}
.lang-switch.is-tr::before {transform:translateX(0)}
.lang-switch.is-en::before {transform:translateX(100%)}
.lang-switch-link {
    font-size:12px;
    line-height:1;
    letter-spacing:.02em;
    font-weight:800;
    color:var(--ink);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:8px 12px;
    min-height:32px;
    min-width:58px;
    border:0;
    transition:color .2s ease, transform .2s ease;
    position:relative;
    z-index:1;
}
.lang-switch-link span.lang-full{
    font-size:11px;
    opacity:.6;
    white-space:nowrap;
}
.lang-switch-link + .lang-switch-link {border-left:1px solid transparent}
.lang-switch-link.is-active{
    color:#fff;
}
.lang-switch-link.is-active span.lang-full {opacity:1}
.lang-switch-link:focus-visible{
    outline:none;
    box-shadow:inset 0 0 0 2px rgba(255,255,255,.45);
}
.lang-switch:hover{
    border-color:#96bdd7;
    box-shadow:0 10px 24px rgba(5, 65, 106, .15);
}
.lang-switch-link:hover{
    transform:translateY(-1px);
}

.nav-cta,
.btn {display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 20px;border-radius:8px;background:var(--teal);color:#fff!important;font-weight:800;border:0;cursor:pointer}
.btn-dark {background:var(--navy)}
.nav-toggle {display:none;border:1px solid var(--line);background:#fff;border-radius:8px;width:42px;height:42px;font-size:20px}

.hero {
  position:relative;
  min-height:clamp(590px, 72vh, 710px);
  overflow:hidden;
  background:linear-gradient(150deg,#004876,#0f4f78 52%, #0f6c9c);
  color:#fff
}
.hero::before {
  content:'';
  position:absolute;
  inset:-220px auto auto -180px;
  width:460px;
  height:460px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  filter:blur(18px);
}
.hero::after {
  content:'';
  position:absolute;
  inset:auto -240px -170px auto;
  width:420px;
  height:420px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  filter:blur(16px);
}
.hero-layout {
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:clamp(18px, 3.2vw, 34px);
  padding:clamp(44px, 6vw, 72px) 0 0;
  align-items:end;
  align-content:end;
  min-height:100%;
}
.hero-content {
  width:min(100%, 730px);
  max-width:100%;
}
.hero-main-title {
  margin: 8px 0 12px;
  font-size:clamp(34px,5vw,54px);
  line-height:1.06;
  font-weight:800;
  color:#fff;
}
.eyebrow {display:inline-flex;color:#9fd2f3;font-weight:900;text-transform:uppercase;letter-spacing:0;font-size:13px}
.hero-intro {margin:14px 0 18px;font-size:clamp(18px,2.5vw,22px);color:#e2f0fc}
.hero-content {position:relative;z-index:2;max-width:100%}
.hero-figure-wrap {display:none}
.hero-figure-frame {
  position:relative;
  width:min(980px, 78vw);
  max-width:100%;
  margin:0 auto;
  justify-self:start;
  padding:0;
  border-radius:0;
  background:transparent;
  border:0;
  box-shadow:none;
  backdrop-filter:none;
  overflow:visible;
  z-index:2;
  margin-bottom:0;
  user-select:none;
  -webkit-user-select:none;
  -webkit-touch-callout:none;
}
.hero-figure {
  width:100%;
  aspect-ratio:auto;
  height:auto;
  max-height:none;
  object-fit:contain;
  object-position:center;
  border-radius:0;
  display:block;
  user-select:none;
  -webkit-user-select:none;
  pointer-events:none;
  -webkit-touch-callout:none;
  -webkit-user-drag:none;
}
.typewriter-card {max-width:none}
.typewriter-title {
  max-width:none;
  font-size:clamp(34px, 4.1vw, 46px);
  line-height:1.04;
  margin:0 0 14px;
  font-weight:800;
  color:#fff;
  -webkit-text-stroke: 0.45px rgba(0, 0, 0, 0.58);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.25),
    0 0 6px rgba(0, 0, 0, 0.1);
  height:clamp(84px, 16vw, 166px);
  min-height:clamp(84px, 16vw, 166px);
  max-height:clamp(84px, 16vw, 166px);
  overflow:hidden;
}
.hero-subtitle {
  max-width:none;
  font-size:clamp(16px, 2vw, 20px);
  color:#dbeffc;
  text-shadow:
    0 0 1px rgba(7, 35, 66, 0.28),
    0 1px 2px rgba(11, 46, 86, 0.25);
  margin:0 0 28px;
  min-height:clamp(74px, 9.5vw, 88px);
  max-height:clamp(74px, 9.5vw, 88px);
  height:clamp(74px, 9.5vw, 88px);
  overflow:hidden;
}
.type-cursor {display:inline-block;animation:blink 1s infinite}
.typewriter-card .btn {padding-inline:28px}

.type-controls {margin:22px 0 18px;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.type-option {display:flex;flex-direction:column;align-items:center;gap:10px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.32);border-radius:12px;padding:18px 14px;color:#fff;font-weight:800;text-align:center;min-height:118px;justify-content:center}
.type-option:hover,
.type-option.is-active {background:#fff;color:#0f4f78;border-color:#fff}
.type-option span:last-child {font-size:14px;line-height:1.35;font-weight:700}
.type-option-icon {width:28px;height:28px;display:inline-flex;align-items:center;justify-content:center}
.type-option-icon {width:38px;height:38px}
.type-option-icon svg {width:33px;height:33px;display:block}

@keyframes blink {
  0%, 50% {opacity:1}
  50.01%, 100% {opacity:0}
}

.trust-band {background:var(--mint);border-bottom:1px solid var(--line)}
.trust-grid {display:grid;grid-template-columns:repeat(4,1fr);gap:1px}
.trust-grid div {padding:28px 22px;background:rgba(255,255,255,.55)}
.trust-grid strong {display:block;color:var(--navy);font-size:19px}
.trust-grid span {color:var(--muted)}

.section {padding:86px 0}
.section-head {text-align:center;margin-bottom:34px}
.section-head h2,.about-grid h2,.cta h2 {font-size:clamp(30px,4vw,48px);line-height:1.12;margin:8px 0 12px;color:var(--navy)}
.section-head p {color:var(--muted);margin:0 auto;max-width:620px}
.section-corporate {background:#f8fbff}

.service-grid {display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.service-card {border:1px solid var(--line);border-radius:8px;overflow:hidden;background:#fff;box-shadow:var(--shadow)}
.service-card img {width:100%;aspect-ratio:4/3;object-fit:cover}
.service-card div {padding:24px}
.service-card h3 {margin:0 0 10px;color:var(--navy);font-size:23px}
.service-card p {color:var(--muted);margin:0 0 18px}
.service-card a {font-weight:900;color:var(--teal)}

.about-band {padding:86px 0;background:#f7fbff}
.about-grid {display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center}
.about-grid img {border-radius:8px;box-shadow:var(--shadow);aspect-ratio:16/11;object-fit:cover}
.about-grid p {font-size:18px;color:var(--muted)}

.cta {background:linear-gradient(140deg, var(--navy), #0f4f78);color:#fff;padding:58px 0}
.cta-inner {display:flex;align-items:center;justify-content:space-between;gap:30px}
.cta h2 {color:#fff;margin:8px 0 0;max-width:760px}

.page-hero {padding:86px 0;background:linear-gradient(135deg,var(--navy),#0f4f78);color:#fff}
.page-hero h1 {font-size:clamp(38px,5vw,62px);line-height:1.08;margin:10px 0}
.page-hero p {font-size:19px;color:#d7edf9}
.page-hero--team {position:relative;overflow:hidden}
.page-hero--team::before {content:'';position:absolute;inset:0;background:radial-gradient(circle at 85% 0%,rgba(255,255,255,.22) 0,rgba(255,255,255,0) 45%),radial-gradient(circle at 15% 95%,rgba(255,255,255,.16) 0,rgba(255,255,255,0) 48%);pointer-events:none}
.team-hero-content {display:grid;grid-template-columns:minmax(0,1fr);gap:18px;align-items:end;position:relative;z-index:2}
.team-hero-metrics {display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.team-hero-metrics div {background:rgba(255,255,255,.18);border:1px solid rgba(255,255,255,.35);padding:16px 14px;border-radius:12px;backdrop-filter:blur(2px)}
.team-hero-metrics strong {display:block;font-size:27px;line-height:1}
.team-hero-metrics span {font-size:12px;color:#cde6f8;display:block;margin-top:6px}
.page-hero--team .team-hero-content {grid-template-columns:minmax(0,1fr) minmax(0,1fr);align-items:end}
.team-hero-metrics {max-width:520px}

.detail-hero {min-height:460px;background-size:cover;background-position:center;display:flex;align-items:end;color:#fff;padding:90px 0}
.detail-hero h1 {font-size:clamp(38px,5vw,68px);line-height:1.08;margin:10px 0}
.detail-hero p {font-size:20px;max-width:720px}

.narrow {max-width:820px}
.content p {font-size:20px;color:#496077}

.contact-grid {display:grid;grid-template-columns:1.1fr .9fr;gap:36px}
.form-card,.contact-info {border:1px solid var(--line);border-radius:8px;background:#fff;box-shadow:var(--shadow);padding:28px}
.contact-info--with-map{position:relative;display:flex;min-width:0;flex-direction:column;gap:22px;padding:0;overflow:hidden;background:linear-gradient(155deg,#fff 0,#fff 62%,#f6eee8 100%)}
.contact-info--with-map::after{content:'';position:absolute;right:-85px;bottom:-90px;width:230px;height:230px;border:1px solid rgba(165,102,63,.13);border-radius:50%;box-shadow:0 0 0 38px rgba(165,102,63,.035);pointer-events:none}
.contact-info-copy{position:relative;z-index:1;display:flex;flex:1;flex-direction:column;padding:34px 30px 0}
.contact-info-copy h2{margin:6px 0 8px;font-size:28px}
.contact-info-address{margin:0 0 23px;color:var(--muted);font-size:15px}
.contact-detail-list{display:grid;gap:9px}
.contact-detail-list a{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:13px 15px;border:1px solid #eadbd0;border-radius:11px;background:rgba(255,255,255,.82);transition:border-color .2s ease,transform .2s ease,box-shadow .2s ease}
.contact-detail-list a:hover{border-color:#bd805b;transform:translateY(-1px);box-shadow:0 8px 20px rgba(72,43,27,.08)}
.contact-detail-list span{color:var(--muted);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.contact-detail-list strong{min-width:0;color:#2b211c;font-size:14px;text-align:right;overflow-wrap:anywhere}
.contact-hours-card{display:grid;gap:5px;margin-top:18px;padding:18px;border-left:4px solid #b36b3e;border-radius:12px;background:#f7eee8}
.contact-hours-card span{color:#8d512f;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.06em}
.contact-hours-card strong{color:#2b211c;font-size:16px;white-space:pre-line}
.contact-hours-card small{margin-top:3px;color:var(--muted);line-height:1.45}
.contact-quick-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:auto;padding-top:20px}
.contact-quick-actions .btn{padding:0 12px}
.contact-whatsapp-btn{background:#168755}
.contact-info-map{min-height:360px;flex:1;margin:0 20px;overflow:hidden;border:1px solid #dfcdbf;border-radius:16px;background:#f5eee8}
.contact-info-map iframe{display:block;width:100%;height:100%;min-height:360px;border:0;filter:saturate(.86) contrast(1.02)}
.contact-info-directions{position:relative;z-index:1;align-self:stretch;margin:0 30px 30px}
.form-card label {display:block;font-weight:800;margin-bottom:16px}
.form-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.form-card input,.form-card textarea,.admin input,.admin textarea,.admin select {width:100%;margin-top:7px;border:1px solid var(--line);border-radius:8px;padding:13px 14px;font:inherit}

.notice {background:var(--mint);border:1px solid #bfdaf1;color:#0f4f78;padding:12px;border-radius:8px;margin-bottom:16px}
.map iframe {width:100%;border:0;border-radius:8px}

.footer {background:#082c48;color:#ccdeee;padding:48px 0}
.footer-grid {display:grid;grid-template-columns:1.1fr .8fr .8fr;gap:32px}
.footer h3 {color:#fff;margin-top:0}

.team-grid,
.post-grid {display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.team-grid--featured {grid-template-columns:repeat(2,1fr)}
.team-grid--corporate {grid-template-columns:repeat(2,1fr)}
.team-grid--standards {grid-template-columns:repeat(3,1fr)}
.team-card,
.post-card {border:1px solid var(--line);border-radius:8px;background:#fff;box-shadow:var(--shadow);padding:24px}
.corp-card {background:#fff;border:1px solid #d4e2ef;padding:22px;border-radius:10px;box-shadow:var(--shadow)}
.corp-card h3 {margin:0 0 10px;color:var(--navy);font-size:22px}
.corp-card p {color:#496077;margin:0}
.team-card {position:relative;overflow:hidden;transition:transform .25s ease, box-shadow .25s ease}
.team-card:hover {transform:translateY(-8px);box-shadow:0 30px 48px rgba(7,53,91,.14)}
.team-card::after {content:'';position:absolute;inset:0;background:linear-gradient(0deg,rgba(239,244,251,.88),rgba(255,255,255,0));opacity:.05;transition:opacity .25s ease}
.team-card:hover::after {opacity:.26}
.team-card__badge {display:inline-flex;align-items:center;justify-content:center;padding:6px 10px;border-radius:999px;background:#f3f9ff;border:1px solid var(--line);font-size:12px;font-weight:800;color:#245f82;margin-bottom:12px;position:relative;z-index:1}
.team-portrait-wrap {width:100%;aspect-ratio:4 / 3;border-radius:14px;overflow:hidden;border:1px solid var(--line);box-shadow:0 18px 26px rgba(7,53,91,.10);margin-bottom:14px;position:relative;z-index:1}
.team-portrait-wrap::after {content:'';position:absolute;inset:0;pointer-events:none;background:linear-gradient(180deg,rgba(0,0,0,0) 52%,rgba(0,0,0,.12));}
.team-portrait {width:100%;height:100%;object-fit:cover;display:block;object-position:center;transform:scale(1.03);transition:transform .4s ease}
.team-card:hover .team-portrait {transform:scale(1.08)}
.team-card h3,
.post-card h3 {margin:8px 0;color:var(--navy);font-size:22px}
.team-role {font-weight:800;color:#1f4763;margin-bottom:12px}
.team-cert {font-weight:700;font-size:14px;color:#245f82;margin:0 0 8px}
.team-card p,
.post-card p {color:var(--muted);margin:0 0 12px}
.team-focus {font-size:14px;font-weight:700;color:#0f4f78;border-left:3px solid #0f4f78;padding-left:10px;margin:0 0 12px}
.team-tags {list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:8px;position:relative;z-index:1}
.team-tags li {display:inline-flex;padding:6px 10px;border-radius:999px;background:var(--mint);font-size:12px;color:#1f4763;border:1px solid #cce0f0}
.post-card a {font-weight:900;color:var(--teal)}

.whatsapp{position:fixed;right:24px;bottom:24px;z-index:50;display:flex;align-items:center;gap:12px;min-height:64px;padding:8px 18px 8px 8px;border:1px solid rgba(255,255,255,.22);border-radius:18px;color:#fff;background:linear-gradient(145deg,#276f54,#174d3b);box-shadow:0 16px 38px rgba(25,66,51,.28),inset 0 1px rgba(255,255,255,.14);font-weight:700;transition:transform .22s ease,box-shadow .22s ease}
.whatsapp:hover{transform:translateY(-4px);box-shadow:0 22px 44px rgba(25,66,51,.35),inset 0 1px rgba(255,255,255,.14)}
.whatsapp-icon{position:relative;display:grid;place-items:center;width:48px;height:48px;flex:0 0 48px;border-radius:14px;color:#fff;background:#25b96b;box-shadow:inset 0 0 0 1px rgba(255,255,255,.2)}
.whatsapp-icon svg{width:29px;height:29px}.whatsapp-icon i{position:absolute;right:-2px;top:-2px;width:11px;height:11px;border:2px solid #174d3b;border-radius:50%;background:#83e7a6}
.whatsapp-copy{display:grid;line-height:1.2}.whatsapp-copy small{margin-bottom:3px;color:#b9d8cc;font-size:10px;font-weight:700;letter-spacing:.08em;text-transform:uppercase}.whatsapp-copy strong{color:#fff;font-size:14px;white-space:nowrap}
@media(max-width:600px){.whatsapp{right:16px;bottom:16px;min-height:58px;padding:7px;border-radius:17px}.whatsapp-icon{width:44px;height:44px;flex-basis:44px;border-radius:12px}.whatsapp-copy{display:none}}

.home-team-section{position:relative;overflow:hidden;background:#f7f0ea}
.home-team-section::before{content:'';position:absolute;right:-140px;top:-180px;width:430px;height:430px;border:1px solid rgba(165,102,63,.18);border-radius:50%;box-shadow:0 0 0 55px rgba(165,102,63,.035),0 0 0 110px rgba(165,102,63,.025)}
.home-team-heading{position:relative;z-index:1;display:grid;grid-template-columns:1.15fr .85fr;gap:60px;align-items:end;margin-bottom:34px}
.home-team-heading h2{max-width:700px;margin:8px 0 0;color:var(--navy);font-size:clamp(31px,4vw,48px);line-height:1.12}
.home-team-intro{padding-left:24px;border-left:2px solid #a5663f}.home-team-intro p{margin:0 0 14px;color:var(--muted)}.home-team-intro a{display:inline-flex;align-items:center;gap:10px;color:#754328;font-weight:900}.home-team-intro a span{font-size:20px;transition:transform .2s}.home-team-intro a:hover span{transform:translateX(5px)}
.home-team-grid{position:relative;z-index:1;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:26px}
.home-team-card{overflow:hidden;border:1px solid #e2d2c6;border-radius:16px;background:#fff;box-shadow:0 16px 38px rgba(72,43,27,.08);transition:transform .25s,box-shadow .25s}.home-team-card:hover{transform:translateY(-7px);box-shadow:0 24px 45px rgba(72,43,27,.14)}
.home-team-photo{position:relative;overflow:hidden;aspect-ratio:4/3;background:#eadfd6}.home-team-photo img{width:100%;height:100%;object-fit:cover;transition:transform .45s}.home-team-card:hover .home-team-photo img{transform:scale(1.05)}.home-team-photo>span{position:absolute;right:14px;bottom:14px;display:grid;place-items:center;width:42px;height:42px;border:1px solid rgba(255,255,255,.55);border-radius:50%;color:#fff;background:rgba(43,33,28,.72);backdrop-filter:blur(7px);font-size:11px;font-weight:800}
.home-team-card-body{padding:22px}.home-team-card-body p{margin:0 0 9px;color:#a5663f;font-size:11px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}.home-team-card-body h3{margin:0 0 4px;color:var(--navy);font-size:22px}.home-team-card-body>span{color:var(--muted);font-size:14px;font-weight:600}
@media(max-width:900px){.home-team-heading{grid-template-columns:1fr;gap:22px}.home-team-intro{padding-left:18px}.home-team-grid{gap:18px}}
@media(max-width:600px){.home-team-grid{grid-template-columns:1fr}.home-team-heading{margin-bottom:25px}.home-team-photo{aspect-ratio:5/4}}
.doctor-card-link{position:relative;z-index:3;display:flex;align-items:center;justify-content:center;gap:12px;width:100%;min-height:45px;margin-top:18px;padding:10px 16px;border:1px solid rgba(255,255,255,.32);border-radius:12px;color:#fff!important;background:linear-gradient(135deg,#754328,#b9794e);box-shadow:0 9px 22px rgba(117,67,40,.28);font-size:13px;font-weight:900;transition:transform .2s,box-shadow .2s}.doctor-card-link::before{content:'';position:absolute;z-index:4;inset:auto;top:50%;left:50%;width:100%;height:100%;transform:translate(-50%,-50%);border-radius:inherit;box-shadow:0 0 0 0 rgba(185,121,78,.42);animation:doctor-link-glow 2.2s ease-out infinite;pointer-events:none}.doctor-card-link::after{content:'';position:absolute;z-index:2;inset:calc(-1000px);cursor:pointer}.doctor-card-link>*{position:relative;z-index:5}.doctor-card-link:hover{transform:translateY(-2px);box-shadow:0 13px 29px rgba(117,67,40,.38)}.home-team-card,.team-card{position:relative}.home-team-card>*:not(.home-team-card-body),.team-card>*:not(.doctor-card-link){position:relative;z-index:1}@keyframes doctor-link-glow{0%{box-shadow:0 0 0 0 rgba(185,121,78,.42)}65%,100%{box-shadow:0 0 0 12px rgba(185,121,78,0)}}
.doctor-profile-hero{padding:70px 0;background:linear-gradient(140deg,#f7f0ea,#fff 62%)}.doctor-profile-grid{display:grid;grid-template-columns:minmax(320px,.8fr) 1.2fr;gap:clamp(38px,6vw,80px);align-items:center}.doctor-profile-photo{overflow:hidden;aspect-ratio:4/5;border-radius:24px 24px 120px 24px;background:#eadfd6;box-shadow:0 28px 60px rgba(72,43,27,.16)}.doctor-profile-photo img{width:100%;height:100%;object-fit:cover}.doctor-back{display:block;margin-bottom:38px;color:#75675e;font-size:13px}.doctor-profile-intro h1{margin:9px 0 7px;color:#2b211c;font-size:clamp(42px,6vw,72px);line-height:1.03}.doctor-profile-role{color:#a5663f;font-size:20px;font-weight:800}.doctor-profile-intro blockquote{margin:25px 0;padding-left:20px;border-left:3px solid #a5663f;color:#59463b;font-size:19px}.doctor-profile-tags{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:28px}.doctor-profile-tags span{padding:7px 12px;border:1px solid #dfcabc;border-radius:999px;background:#fff;font-size:12px}.doctor-content-grid{display:grid;grid-template-columns:1.3fr .7fr;gap:60px}.doctor-biography h2{font-size:clamp(32px,4vw,48px)}.doctor-biography p{color:#65574f;font-size:18px;line-height:1.9}.doctor-facts{border:1px solid var(--line);border-radius:18px;background:#fbf8f5}.doctor-facts div{display:grid;gap:6px;padding:22px}.doctor-facts div+div{border-top:1px solid var(--line)}.doctor-facts small{color:#a5663f;font-weight:800}.doctor-resume-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:55px}.doctor-resume-card{position:relative;padding:30px;border:1px solid var(--line);border-radius:18px;background:#fcf8f4}.doctor-resume-card>span{position:absolute;right:24px;color:#d7bca9;font-size:32px;font-weight:900}.doctor-profile-cta{padding:55px 0;color:#fff;background:linear-gradient(135deg,#2b211c,#754328)}.doctor-profile-cta .container{display:flex;align-items:center;justify-content:space-between;gap:30px}.doctor-profile-cta h2{margin:6px 0;color:#fff;font-size:clamp(27px,4vw,42px)}@media(max-width:800px){.doctor-profile-grid,.doctor-content-grid{grid-template-columns:1fr}.doctor-profile-photo{width:min(460px,100%);margin:auto}.doctor-resume-grid{grid-template-columns:1fr}.doctor-profile-cta .container{align-items:flex-start;flex-direction:column}}@media(prefers-reduced-motion:reduce){.doctor-card-link::before{animation:none}}

@media (max-width:900px){
  .nav-toggle {display:block}
  .nav nav {position:absolute;left:16px;right:16px;top:78px;display:none;flex-direction:column;align-items:stretch;background:#fff;border:1px solid var(--line);border-radius:8px;padding:16px;box-shadow:var(--shadow)}
  .nav nav.is-open {display:flex}
  .lang-switch {margin-top:4px;align-self:flex-start}
  .lang-switch-link {padding:9px 12px;justify-content:center}
  .brand small {display:none}
  .hero {min-height:clamp(460px, 78vh, 640px)}
  .hero-layout {grid-template-columns:minmax(0,1fr);padding:78px 0 90px}
  .hero-figure-wrap {
    display:none;
  }
  .hero-content {
    order:2;
    z-index:2;
    width:min(100%, 100%);
  }
  .type-controls {grid-template-columns:1fr}
  .trust-grid,.service-grid,.about-grid,.contact-grid,.footer-grid,.team-grid,.team-grid--standards,.post-grid {grid-template-columns:1fr}
  .team-hero-content {grid-template-columns:1fr}
  .cta-inner {align-items:flex-start;flex-direction:column}
  .topbar-inner {font-size:12px}
  .section {padding:58px 0}
  .type-option{min-height:94px}
  .type-option-icon {width:32px;height:32px}
  .type-option-icon svg {width:28px;height:28px}
  .type-option span:last-child {font-size:14px}
  .hero-figure-frame {width:min(520px, 92vw)}
}

@media (min-width:901px){
  .hero-layout {
    position:relative;
    grid-template-columns:minmax(0,.98fr) minmax(0,1.02fr);
    align-items:end;
    align-content:end;
    padding-top:72px;
    padding-bottom:0;
    min-height:clamp(630px, 75vh, 710px);
  }
  .hero {min-height:clamp(630px, 75vh, 710px); overflow:hidden;}
  .hero-figure-wrap {
    position:absolute;
    left:-270px;
    bottom:0;
    display:block;
    margin:0;
    transform:none;
    order:1;
    align-self:auto;
    justify-self:auto;
  }
  .hero-figure-frame {width:min(890px, 72vw)}
  .hero-figure {align-self:end}
  .hero-content {
    order:2;
    align-self:end;
    padding-bottom:clamp(24px, 3vw, 48px);
    grid-column:2;
    justify-self:end;
    margin-left:auto;
  }
  .type-controls {grid-template-columns:repeat(4,minmax(0,1fr))}
}

@media (min-width:1200px) and (max-width:1500px){
  .hero-figure-wrap {
    left: calc(612px - clamp(700px, 58vw, 870px));
  }
  .hero-figure-frame {
    width: clamp(700px, 58vw, 870px);
  }
}

@media (min-width:760px) and (max-width:900px){
  .hero {
    min-height:clamp(520px, 74vh, 640px);
  }
  .hero-layout {
    position:relative;
  }
  .hero-layout {
    column-gap:clamp(16px, 2.8vw, 30px);
  }
  .hero-figure-wrap {
    display:block;
    position: absolute;
    left: clamp(-205px, -24vw, -165px);
    bottom: 0;
    right: auto;
    top: auto;
    z-index: 0;
    pointer-events: none;
  }
  .hero-figure-frame {
    width:min(760px, 82vw);
  }
  .hero-content {
    width:min(100%, 100%);
    transform:none;
    z-index: 2;
  }
}

@media (max-width:600px){
  .hero {min-height:clamp(430px, 86vh, 560px)}
  .hero-layout {padding-top:52px;padding-bottom:68px}
  .hero-figure-wrap {
    display:none;
  }
  .hero-figure-frame {width:min(480px, 96vw)}
}

/* Ramel Dental logo color system */
:root {
  --navy:#2b211c;
  --teal:#a5663f;
  --mint:#f7f0ea;
  --ink:#29231f;
  --muted:#75675e;
  --line:#e7d9ce;
  --shadow:0 18px 50px rgba(72,43,27,.12)
}
.topbar{background:#2b211c;color:#f4e9df}
.topbar-meta .topbar-item,.topbar-meta a,.topbar-meta>.topbar-item>span,.topbar-social a{color:#f4e9df;border-color:rgba(244,233,223,.3)}
.nav nav a{color:#4c3a30}
.lang-switch{border-color:#decbbd;background:#fffaf6}
.lang-switch::before{background:linear-gradient(180deg,#b87a50,#8b5231)}
.lang-switch:hover{border-color:#b98968;box-shadow:0 10px 24px rgba(104,62,37,.15)}
.hero{background:linear-gradient(145deg,#2b211c,#704126 52%,#aa6a42)}
.eyebrow{color:#e9c5aa}.hero-intro,.hero-subtitle{color:#f5e8dd}.hero-subtitle{text-shadow:0 1px 2px rgba(44,27,18,.38)}
.type-option:hover,.type-option.is-active{color:#704126}
.section-corporate,.about-band{background:#fcf8f4}
.cta{background:linear-gradient(140deg,#2b211c,#855034)}
.page-hero{background:linear-gradient(135deg,#2b211c,#9b5e39)}
.page-hero p,.team-hero-metrics span{color:#f0d7c5}
.content p,.corp-card p{color:#67564c}
.notice{border-color:#dfc5b1;color:#704126}
.footer{background:#241c18;color:#ddcec3}
.corp-card{border-color:#e5d5c9}
.team-card:hover{box-shadow:0 30px 48px rgba(72,43,27,.15)}
.team-card::after{background:linear-gradient(0deg,rgba(247,240,234,.9),rgba(255,255,255,0))}
.team-card__badge{background:#fbf3ed;color:#8b5231}
.team-portrait-wrap{box-shadow:0 18px 26px rgba(72,43,27,.11)}
.team-role,.team-cert{color:#795039}
.team-focus{color:#704126;border-left-color:#a5663f}
.team-tags li{color:#654736;border-color:#e4cdbd}

.brand{width:calc(300px * var(--logo-header-scale,1));height:calc(96px * var(--logo-header-scale,1));overflow:visible}
.brand-mark{width:calc(300px * var(--logo-header-scale,1));max-width:100%;height:calc(96px * var(--logo-header-scale,1));object-fit:contain;object-position:center;transform:none;transform-origin:center}
.nav{height:112px}
@media(max-width:900px){.brand{width:240px;height:80px}.brand-mark{width:240px;height:80px;transform:none}.nav{height:94px}}
@media(max-width:420px){.brand{width:200px}.brand-mark{width:200px;transform:none}}

/* Corporate footer */
.about-hero{position:relative;overflow:hidden;padding:92px 0;color:#fff;background:linear-gradient(135deg,#211915,#563525)}.about-hero::after{content:'';position:absolute;right:-170px;top:-260px;width:570px;height:570px;border:1px solid rgba(218,169,132,.17);border-radius:50%;box-shadow:0 0 0 75px rgba(218,169,132,.035)}.about-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:1.25fr .75fr;gap:60px;align-items:end}.about-hero h1{max-width:900px;margin:11px 0 17px;font-size:clamp(42px,6vw,73px);line-height:1.03}.about-hero p{max-width:650px;color:#e5d3c7;font-size:18px}.about-hero-mark{display:grid;place-items:center;justify-self:end;width:210px;height:210px;border:1px solid rgba(255,255,255,.18);border-radius:50%;background:rgba(255,255,255,.06);backdrop-filter:blur(7px)}.about-hero-mark span{color:#e2b18f;font-size:46px;font-weight:900}.about-hero-mark strong{margin-top:-35px;font-size:12px}
.about-story{background:#fff}.about-story-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(40px,6vw,80px);align-items:center}.about-story-image{position:relative}.about-story-image>img{width:100%;aspect-ratio:4/4.5;object-fit:cover;border-radius:22px 22px 110px 22px;box-shadow:0 28px 60px rgba(72,43,27,.15)}.about-story-image>div{position:absolute;right:-25px;bottom:35px;display:flex;align-items:center;gap:12px;width:240px;padding:15px;border:1px solid #e1cdbf;border-radius:14px;background:#fff;box-shadow:0 14px 32px rgba(72,43,27,.15)}.about-story-image>div span{display:grid;place-items:center;width:42px;height:42px;border-radius:11px;color:#fff;background:#a5663f;font-weight:900}.about-story-image>div p{margin:0;color:#4e3c32;font-size:11px;font-weight:800}.about-story article h2{margin:8px 0 24px;color:#2b211c;font-size:clamp(33px,4vw,50px);line-height:1.1}.about-rich-text{color:#685950;font-size:16px;line-height:1.9}.about-team-link{display:flex;align-items:center;justify-content:space-between;margin-top:28px;padding:15px 0;border-top:1px solid var(--line);color:#754328;font-weight:900}.about-team-link span{font-size:21px}
.about-values{background:#f7f0ea}.about-values-heading{display:grid;grid-template-columns:1fr .6fr;gap:50px;align-items:end;margin-bottom:35px}.about-values-heading h2{margin:8px 0 0;color:#2b211c;font-size:clamp(32px,4vw,49px)}.about-values-heading>p{margin:0;color:#75675e}.about-values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.about-values-grid article{position:relative;min-height:235px;padding:25px;border:1px solid #e1cfc2;border-radius:17px;background:#fff}.about-values-grid article>span{position:absolute;right:19px;top:14px;color:#d9bda9;font-size:24px;font-weight:900}.about-values-grid h3{margin:55px 0 12px;color:#34271f;font-size:20px}.about-values-grid p{margin:0;color:#75675e;font-size:14px;line-height:1.7}
.about-clinical{background:#fff}.about-clinical-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:70px}.about-clinical h2{margin:8px 0;color:#2b211c;font-size:clamp(33px,4vw,49px);line-height:1.1}.about-clinical-points{display:grid}.about-clinical-points>div{padding:20px 0;border-bottom:1px solid var(--line)}.about-clinical-points>div:first-child{padding-top:0}.about-clinical-points strong{color:#754328;font-size:17px}.about-clinical-points p{margin:6px 0 0;color:#75675e}.about-commitment{padding:65px 0;color:#fff;background:linear-gradient(135deg,#2b211c,#754328)}.about-commitment .container{display:flex;align-items:center;justify-content:space-between;gap:35px}.about-commitment h2{max-width:850px;margin:8px 0;color:#fff;font-size:clamp(29px,4vw,44px)}
@media(max-width:900px){.about-hero-grid,.about-story-grid,.about-values-heading,.about-clinical-grid{grid-template-columns:1fr}.about-hero-mark{display:none}.about-values-grid{grid-template-columns:repeat(2,1fr)}.about-story-image{max-width:600px}.about-story-image>div{right:15px}}@media(max-width:600px){.about-hero{padding:62px 0}.about-values-grid{grid-template-columns:1fr}.about-values-grid article{min-height:auto}.about-values-grid h3{margin-top:35px}.about-commitment .container{align-items:flex-start;flex-direction:column}.about-commitment .btn{width:100%}.about-story-image>div{position:relative;right:auto;bottom:auto;width:calc(100% - 30px);margin:-25px auto 0}}

/* Corporate footer */
.kvkk-inventory-table{display:grid;overflow:hidden;margin:20px 0;border:1px solid #e2d3c8;border-radius:12px}.kvkk-inventory-table>div{display:grid;grid-template-columns:1.25fr 1.5fr .65fr .65fr;gap:10px;padding:13px 15px;border-bottom:1px solid #eadfd7;align-items:center}.kvkk-inventory-table>div:last-child{border-bottom:0}.kvkk-inventory-table .is-head{color:#fff;background:#754328;font-size:11px}.kvkk-inventory-table strong{color:#49362c;font-size:12px}.kvkk-inventory-table span{color:#75675e;font-size:12px}.kvkk-inventory-table em{width:max-content;padding:4px 7px;border-radius:99px;color:#754328;background:#f2e3d8;font-size:10px;font-style:normal;font-weight:800}@media(max-width:650px){.kvkk-inventory-table .is-head{display:none}.kvkk-inventory-table>div{grid-template-columns:1fr;gap:4px}.kvkk-inventory-table>div:not(.is-head){padding:16px}.kvkk-inventory-table span:nth-child(3)::before{content:'Süre: ';font-weight:800}}

/* Corporate footer */
.footer-legal{display:flex;gap:16px}.footer-legal a,.footer-legal button{padding:0;border:0;color:#a89487;background:none;font:inherit;font-size:12px;font-weight:700;cursor:pointer}.footer-legal a:hover,.footer-legal button:hover{color:#e5b18d}.cookie-panel{position:fixed;left:20px;right:20px;bottom:20px;z-index:9999;display:grid;grid-template-columns:1fr auto;gap:18px;align-items:center;max-width:1050px;margin:auto;padding:20px;border:1px solid #dac6b8;border-radius:18px;background:rgba(255,252,249,.97);box-shadow:0 25px 70px rgba(43,27,18,.24);backdrop-filter:blur(16px)}.cookie-panel[hidden]{display:none}.cookie-panel-copy strong{color:#2b211c;font-size:17px}.cookie-panel-copy p{margin:5px 0 0;color:#6e5e54;font-size:13px}.cookie-panel-copy a{color:#8b5231;text-decoration:underline}.cookie-actions{display:flex;gap:7px}.cookie-actions button{min-height:40px;padding:0 14px;border:1px solid #d8c5b7;border-radius:10px;color:#654736;background:#fff;font:inherit;font-size:12px;font-weight:800;cursor:pointer}.cookie-actions button[data-consent=all],.cookie-actions button[data-cookie-save]{color:#fff;border-color:#754328;background:#754328}.cookie-preferences{grid-column:1/-1;display:flex;gap:18px;padding:12px;border-radius:10px;background:#f7f0ea}.cookie-preferences[hidden]{display:none}.cookie-preferences label{display:flex;align-items:center;gap:7px;color:#58473e;font-size:12px;font-weight:700}.cookie-preferences input{accent-color:#a5663f}@media(max-width:760px){.cookie-panel{grid-template-columns:1fr;left:10px;right:10px;bottom:10px}.cookie-actions{display:grid;grid-template-columns:repeat(3,1fr)}.cookie-actions button{padding:0 8px}.cookie-preferences{flex-wrap:wrap}}
.kvkk-hero{padding:90px 0;color:#fff;background:linear-gradient(135deg,#211915,#5d3927)}.kvkk-hero h1{max-width:920px;margin:12px 0 18px;font-size:clamp(41px,6vw,72px);line-height:1.03}.kvkk-hero>div>p{max-width:700px;color:#e3d2c6;font-size:18px}.kvkk-meta{display:grid;grid-template-columns:auto 1fr;gap:5px 15px;width:max-content;max-width:100%;margin-top:32px;padding:17px 20px;border:1px solid rgba(255,255,255,.15);border-radius:13px;background:rgba(255,255,255,.06)}.kvkk-meta span{color:#c79d80;font-size:10px;text-transform:uppercase}.kvkk-meta strong{font-size:12px}.kvkk-nav{position:sticky;top:116px;z-index:20;border-bottom:1px solid #e4d5ca;background:rgba(255,250,246,.94);backdrop-filter:blur(12px)}.kvkk-nav .container{display:flex;gap:8px;padding-top:11px;padding-bottom:11px;overflow:auto}.kvkk-nav a{flex:0 0 auto;padding:8px 11px;border-radius:8px;color:#725541;font-size:11px;font-weight:800}.kvkk-nav a:hover{background:#f0dfd3}.kvkk-content{background:#fcf9f6}.kvkk-layout{display:grid;grid-template-columns:230px minmax(0,850px);gap:55px;align-items:start;justify-content:center}.kvkk-layout>aside{position:sticky;top:190px;padding:19px;border:1px solid #e1d1c5;border-radius:14px;background:#fff}.kvkk-layout>aside>strong{display:block;margin-bottom:12px;color:#2b211c}.kvkk-layout>aside nav{display:grid}.kvkk-layout>aside a{padding:7px 0;border-bottom:1px solid #eee4dd;color:#78685e;font-size:11px}.kvkk-document{display:grid;gap:17px}.kvkk-intro,.kvkk-document article{padding:clamp(23px,4vw,38px);border:1px solid #e2d3c8;border-radius:18px;background:#fff;box-shadow:0 10px 30px rgba(72,43,27,.05)}.kvkk-intro{color:#58473e;font-size:16px;line-height:1.8;border-left:4px solid #a5663f}.kvkk-document article{position:relative;scroll-margin-top:190px}.kvkk-document article>span{position:absolute;right:26px;top:20px;color:#dcc1ae;font-size:25px;font-weight:900}.kvkk-document h2{margin:0 55px 20px 0;color:#2b211c;font-size:27px}.kvkk-document p,.kvkk-document li{color:#66574e;line-height:1.85}.kvkk-document ul{display:grid;gap:8px;padding-left:20px}.kvkk-document li::marker{color:#a5663f}.kvkk-document dl{display:grid;gap:7px}.kvkk-document dl div{display:grid;grid-template-columns:120px 1fr;padding:9px;border-radius:8px;background:#f8f3ef}.kvkk-document dt{color:#9a6b4c;font-size:11px;font-weight:800}.kvkk-document dd{margin:0;color:#46362e}.kvkk-data-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}.kvkk-data-grid>div{padding:16px;border-radius:11px;background:#f8f3ef}.kvkk-data-grid strong{color:#754328}.kvkk-data-grid p{margin:5px 0 0;font-size:13px}.kvkk-cookie-table{display:grid;gap:9px}.kvkk-cookie-table>div{display:grid;grid-template-columns:120px 1fr;gap:4px 15px;padding:15px;border:1px solid #e6d8ce;border-radius:11px}.kvkk-cookie-table strong{grid-row:1/3;color:#754328}.kvkk-cookie-table span{font-size:12px;font-weight:800}.kvkk-cookie-table p{margin:0;font-size:12px}.kvkk-print{margin-top:12px}@media(max-width:900px){.kvkk-nav{top:90px}.kvkk-layout{grid-template-columns:1fr}.kvkk-layout>aside{display:none}}@media(max-width:600px){.kvkk-hero{padding:60px 0}.kvkk-data-grid{grid-template-columns:1fr}.kvkk-cookie-table>div{grid-template-columns:1fr}.kvkk-cookie-table strong{grid-row:auto}.footer-bottom{flex-wrap:wrap}.footer-legal{width:100%}}
@media print{.topbar,.site-header,.kvkk-nav,.footer,.whatsapp,.cookie-panel,.kvkk-layout>aside{display:none!important}.kvkk-content{padding:0;background:#fff}.kvkk-layout{display:block}.kvkk-document article,.kvkk-intro{box-shadow:none;break-inside:avoid}.kvkk-print{display:none}}

/* Corporate footer */
.home-team-card-body{justify-content:flex-start}.home-team-card-body .doctor-card-link{margin-top:auto}.home-team-card-body>span{margin-bottom:20px}

/* Corporate footer */
.treatments-list-section .service-card{position:relative;transition:transform .24s,box-shadow .24s,border-color .24s}.treatments-list-section .service-card:hover{transform:translateY(-7px);border-color:#c99c7d;box-shadow:0 25px 48px rgba(72,43,27,.14)}.treatments-list-section .service-card>div{position:relative;z-index:2;display:flex;flex-direction:column;min-height:255px}.treatments-list-section .service-card a{position:relative;z-index:4;display:flex;align-items:center;justify-content:center;min-height:45px;margin-top:auto;padding:10px 16px;border:1px solid rgba(255,255,255,.3);border-radius:12px;color:#fff!important;background:linear-gradient(135deg,#754328,#b9794e);box-shadow:0 9px 22px rgba(117,67,40,.28);font-size:13px;font-weight:900;transition:transform .2s,box-shadow .2s}.treatments-list-section .service-card a::before{content:'';position:absolute;top:50%;left:50%;width:100%;height:100%;transform:translate(-50%,-50%);border-radius:inherit;animation:service-page-link-glow 2.25s ease-out infinite;pointer-events:none}.treatments-list-section .service-card a::after{content:'';position:absolute;z-index:2;inset:-1000px;cursor:pointer}.treatments-list-section .service-card:hover a{transform:translateY(-2px);box-shadow:0 13px 29px rgba(117,67,40,.38)}@keyframes service-page-link-glow{0%{box-shadow:0 0 0 0 rgba(185,121,78,.4)}65%,100%{box-shadow:0 0 0 12px rgba(185,121,78,0)}}@media(prefers-reduced-motion:reduce){.treatments-list-section .service-card a::before{animation:none}}

/* Corporate footer */
.home-team-section{padding-top:78px;padding-bottom:92px;background:linear-gradient(145deg,#f8f1eb,#fffaf6)}.home-team-heading{align-items:center;margin-bottom:40px}.home-team-heading h2{font-size:clamp(34px,4vw,51px);letter-spacing:-.025em}.home-team-intro{padding:4px 0 4px 25px}.home-team-intro p{max-width:500px;font-size:16px;line-height:1.75}.home-team-grid{gap:30px;max-width:1120px}.home-team-card{display:grid;grid-template-columns:minmax(220px,.92fr) 1.08fr;min-height:330px;overflow:hidden;border:1px solid #deccbf;border-radius:22px;background:#fff;box-shadow:0 20px 48px rgba(72,43,27,.1)}.home-team-card:hover{transform:translateY(-6px);border-color:#c79d80;box-shadow:0 28px 55px rgba(72,43,27,.15)}.home-team-photo{height:100%;min-height:330px;border-radius:0;background:#ddc3b1}.home-team-photo::after{content:'';position:absolute;inset:0;background:linear-gradient(0deg,rgba(43,33,28,.2),transparent 48%)}.home-team-photo>span{right:auto;left:17px;bottom:17px;background:rgba(43,33,28,.72)}.home-team-card-body{display:flex;flex-direction:column;justify-content:center;padding:32px}.home-team-card-body p{margin:0 0 17px;color:#9b5c38;font-size:12px;line-height:1.55;letter-spacing:.035em;text-transform:none}.home-team-card-body h3{margin:0 0 7px;color:#241c18;font-size:clamp(24px,2.4vw,31px);line-height:1.1}.home-team-card-body>span{color:#75675e;font-size:14px}.home-team-card-body .doctor-card-link{margin-top:27px}.home-team-card .doctor-card-link::after{inset:-1000px}
@media(max-width:1000px){.home-team-card{grid-template-columns:1fr}.home-team-photo{height:250px;min-height:250px}.home-team-card-body{padding:25px}}@media(max-width:600px){.home-team-section{padding-top:58px;padding-bottom:65px}.home-team-grid{gap:18px}.home-team-card{border-radius:17px}.home-team-photo{height:225px;min-height:225px}}

/* Corporate footer */
.appointment-note{display:none}
.appointment-privacy{display:none}

/* Corporate footer */
.blog-featured,.blog-editorial-card{position:relative}.blog-featured-content,.blog-editorial-card>div{position:relative;z-index:2}.blog-read-link{position:relative;z-index:4;justify-content:center;gap:13px;min-height:46px;margin-top:23px;padding:10px 17px;border:1px solid rgba(255,255,255,.28);border-radius:12px;color:#fff!important;background:linear-gradient(135deg,#754328,#b9794e);box-shadow:0 9px 22px rgba(117,67,40,.27);transition:transform .2s,box-shadow .2s}.blog-read-link::before{content:'';position:absolute;top:50%;left:50%;width:100%;height:100%;transform:translate(-50%,-50%);border-radius:inherit;animation:blog-link-glow 2.3s ease-out infinite;pointer-events:none}.blog-read-link::after{content:'';position:absolute;z-index:2;inset:-1000px;cursor:pointer}.blog-read-link span{position:relative;z-index:4}.blog-featured:hover .blog-read-link,.blog-editorial-card:hover .blog-read-link{transform:translateY(-2px);box-shadow:0 13px 30px rgba(117,67,40,.38)}@keyframes blog-link-glow{0%{box-shadow:0 0 0 0 rgba(185,121,78,.4)}65%,100%{box-shadow:0 0 0 12px rgba(185,121,78,0)}}@media(prefers-reduced-motion:reduce){.blog-read-link::before{animation:none}}

/* Corporate footer */
.blog-hero{position:relative;overflow:hidden;padding:95px 0 85px;color:#fff;background:linear-gradient(135deg,#211915,#4a3023)}.blog-hero::after{content:'';position:absolute;right:-140px;top:-260px;width:560px;height:560px;border:1px solid rgba(215,162,126,.16);border-radius:50%;box-shadow:0 0 0 75px rgba(215,162,126,.035),0 0 0 150px rgba(215,162,126,.02)}.blog-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:1.25fr .75fr;gap:70px;align-items:end}.blog-hero h1{max-width:850px;margin:11px 0 0;font-size:clamp(43px,6vw,75px);line-height:1.02}.blog-hero-copy>p{color:#dfcfc4;font-size:17px;line-height:1.75}.blog-hero-copy>div{display:grid;grid-template-columns:auto 1fr;gap:8px 13px;margin-top:25px}.blog-hero-copy>div span{color:#d9a47f;font-weight:900}.blog-hero-copy>div strong{font-size:13px}
.blog-featured-section{background:#f7f0ea}.blog-section-label{display:flex;align-items:center;gap:14px;margin-bottom:25px;color:#754328;font-size:11px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.blog-section-label i{height:1px;flex:1;background:#decabd}.blog-section-label small{color:#a39084}.blog-featured{display:grid;grid-template-columns:1.12fr .88fr;overflow:hidden;border:1px solid #e0cdbf;border-radius:23px;background:#fff;box-shadow:0 25px 55px rgba(72,43,27,.12)}.blog-featured-image{position:relative;min-height:470px;overflow:hidden}.blog-featured-image img{width:100%;height:100%;object-fit:cover;transition:transform .5s}.blog-featured:hover img{transform:scale(1.04)}.blog-featured-image>span{position:absolute;left:22px;top:22px;padding:7px 11px;border-radius:99px;color:#fff;background:rgba(43,33,28,.72);backdrop-filter:blur(7px);font-size:10px;font-weight:900}.blog-featured-content{display:flex;flex-direction:column;justify-content:center;padding:clamp(30px,5vw,60px)}.blog-meta{display:flex;align-items:center;justify-content:space-between;gap:15px;color:#a5663f;font-size:10px;font-weight:900;letter-spacing:.06em;text-transform:uppercase}.blog-featured h2{margin:16px 0;color:#2b211c;font-size:clamp(30px,4vw,45px);line-height:1.12}.blog-featured p{color:#75675e;font-size:16px;line-height:1.75}
.blog-read-link{display:flex;align-items:center;justify-content:space-between;margin-top:22px;padding-top:17px;border-top:1px solid #e9ddd4;color:#754328!important;font-size:13px;font-weight:900}.blog-read-link span{font-size:20px;transition:transform .2s}.blog-read-link:hover span{transform:translateX(5px)}.blog-latest-section{background:#fff}.blog-latest-heading{display:grid;grid-template-columns:1fr .65fr;gap:50px;align-items:end;margin-bottom:35px}.blog-latest-heading h2{margin:8px 0 0;color:#2b211c;font-size:clamp(32px,4vw,48px)}.blog-latest-heading p{margin:0;color:#75675e}.blog-editorial-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:26px}.blog-editorial-card{display:grid;grid-template-columns:.8fr 1.2fr;overflow:hidden;border:1px solid #e4d5ca;border-radius:18px;background:#fff;box-shadow:0 15px 35px rgba(72,43,27,.07);transition:.25s}.blog-editorial-card:hover{transform:translateY(-5px);box-shadow:0 22px 45px rgba(72,43,27,.12)}.blog-card-image{position:relative;min-height:330px;overflow:hidden}.blog-card-image img{width:100%;height:100%;object-fit:cover}.blog-card-image>span{position:absolute;left:14px;bottom:14px;display:grid;place-items:center;width:40px;height:40px;border-radius:50%;color:#fff;background:rgba(43,33,28,.7);font-size:11px;font-weight:900}.blog-editorial-card>div{display:flex;flex-direction:column;padding:25px}.blog-editorial-card h3{margin:15px 0 10px;color:#2b211c;font-size:23px;line-height:1.25}.blog-editorial-card p{margin:0;color:#75675e;line-height:1.7}.blog-editorial-card .blog-read-link{margin-top:auto}
.blog-featured .blog-read-link,.blog-editorial-card .blog-read-link{padding:10px 17px;border-top:0;color:#fff!important}
.treatment-number{position:static;display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;margin-bottom:15px;border-radius:50%;color:#8f5939;background:#f2e3d8;font-size:13px}
.treatment-path h2{max-width:none}
.blog-clinic-note{padding:62px 0;color:#fff;background:linear-gradient(135deg,#2b211c,#754328)}.blog-clinic-note .container{display:flex;align-items:center;justify-content:space-between;gap:35px}.blog-clinic-note h2{max-width:800px;margin:8px 0;color:#fff;font-size:clamp(29px,4vw,44px)}.blog-clinic-note p{margin:0;color:#dfcfc4}
@media(max-width:900px){.blog-hero-grid,.blog-featured,.blog-latest-heading{grid-template-columns:1fr}.blog-hero-grid{gap:28px}.blog-featured-image{min-height:380px}.blog-editorial-grid{grid-template-columns:1fr}}@media(max-width:650px){.blog-hero{padding:65px 0}.blog-editorial-card{grid-template-columns:1fr}.blog-card-image{min-height:240px}.blog-clinic-note .container{align-items:flex-start;flex-direction:column}.blog-clinic-note .btn{width:100%}}

/* Corporate footer */
.treatment-methods{background:#fff}.treatment-method-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:17px}.treatment-method-grid article{position:relative;min-height:185px;padding:27px;border:1px solid #e5d6cb;border-radius:17px;background:linear-gradient(145deg,#fff,#fcf8f4);box-shadow:0 12px 28px rgba(72,43,27,.06)}.treatment-method-grid article>span{position:absolute;right:20px;top:17px;color:#dabda9;font-size:25px;font-weight:900}.treatment-method-grid h3{max-width:80%;margin:0 0 12px;color:#342820;font-size:20px}.treatment-method-grid p{margin:0;color:#6e5e54;line-height:1.7}.treatment-decisions{background:#f7f0ea}.treatment-decisions-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}.treatment-decisions article{padding:30px;border:1px solid #e1cdbf;border-radius:19px;background:#fff}.treatment-decisions h2{margin:8px 0 17px;color:#2b211c;font-size:27px}.treatment-decisions p{margin:0;color:#65564d;line-height:1.85}@media(max-width:700px){.treatment-method-grid,.treatment-decisions-grid{grid-template-columns:1fr}.treatment-method-grid article{min-height:auto}}

/* Corporate footer */
.treatments-hero{position:relative;display:flex;align-items:end;min-height:560px;overflow:hidden;color:#fff}.treatments-hero>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.treatments-hero::after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(35,25,20,.9) 0,rgba(55,34,23,.68) 45%,rgba(55,34,23,.12) 100%)}.treatments-hero-content{position:relative;z-index:1;padding-bottom:75px}.treatments-hero h1{max-width:760px;margin:10px 0;font-size:clamp(42px,6vw,72px);line-height:1.03}.treatments-hero p{max-width:650px;color:#ead8cb;font-size:19px}.treatments-list-section{background:#fcf8f4}.treatments-list-section .service-card{border-color:#e4d2c5;border-radius:17px}.treatments-list-section .service-card img{aspect-ratio:16/10}.treatments-list-section .service-card a{display:flex;justify-content:space-between;padding-top:14px;border-top:1px solid var(--line);color:#8b5231}
.treatment-detail-hero{position:relative;display:flex;align-items:end;min-height:600px;overflow:hidden;color:#fff}.treatment-detail-hero>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}.treatment-detail-hero::after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(31,22,18,.92),rgba(65,39,25,.68) 55%,rgba(65,39,25,.15))}.treatment-detail-hero .container{position:relative;z-index:1;padding-bottom:72px}.treatment-detail-hero .container>a:first-child{display:block;width:max-content;margin-bottom:45px;color:#e4c3aa;font-size:13px}.treatment-detail-hero h1{max-width:850px;margin:10px 0 15px;font-size:clamp(42px,6vw,75px);line-height:1.02}.treatment-detail-hero p{max-width:720px;margin-bottom:26px;color:#f0dfd3;font-size:19px}
.treatment-overview-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:65px;align-items:center}.treatment-overview h2{margin:8px 0 22px;color:#2b211c;font-size:clamp(32px,4vw,49px)}.treatment-overview p{color:#65564d;font-size:18px;line-height:1.9}.treatment-disclaimer{margin-top:25px;padding:17px 19px;border-left:3px solid #a5663f;background:#f8f1eb;color:#6d5b50;font-size:13px}.treatment-overview aside{overflow:hidden;border:1px solid #e3d3c7;border-radius:22px;background:#fff;box-shadow:0 24px 50px rgba(72,43,27,.12)}.treatment-overview aside img{width:100%;aspect-ratio:4/3;object-fit:cover}.treatment-overview aside div{display:grid;gap:5px;padding:21px}.treatment-overview aside small{color:#a5663f;font-weight:800}.treatment-overview aside strong{color:#392c25}
.treatment-path{background:#f7f0ea}.treatment-path-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:25px}.treatment-path article{position:relative;padding:32px;border:1px solid #e2cfc0;border-radius:20px;background:#fff}.treatment-number{position:absolute;right:25px;top:20px;color:#d6b7a1;font-size:28px;font-weight:900}.treatment-path h2{max-width:80%;margin:0 0 25px;color:#2b211c;font-size:27px}.treatment-path ul{display:grid;gap:12px;margin:0;padding:0;list-style:none}.treatment-path ul li{position:relative;padding-left:24px;color:#65564d}.treatment-path ul li::before{content:'✓';position:absolute;left:0;color:#a5663f;font-weight:900}.treatment-path ol{display:grid;gap:0;margin:0;padding:0;list-style:none}.treatment-path ol li{display:grid;grid-template-columns:38px 1fr;gap:12px;padding:12px 0;border-bottom:1px solid #eee2d9}.treatment-path ol li:last-child{border-bottom:0}.treatment-path ol li>span{color:#a5663f;font-weight:900}.treatment-path ol p{margin:0;color:#65564d}
.treatment-aftercare{padding:65px 0;color:#fff;background:linear-gradient(135deg,#2b211c,#754328)}.treatment-aftercare .container{display:grid;grid-template-columns:.7fr 1.3fr;gap:55px;align-items:center}.treatment-aftercare h2{margin:7px 0;color:#fff;font-size:38px}.treatment-aftercare p{margin:0;color:#ead8cb;font-size:17px;line-height:1.8}.treatment-faq details{border-bottom:1px solid var(--line)}.treatment-faq summary{display:flex;justify-content:space-between;gap:20px;padding:20px 0;color:#3b2d26;font-size:17px;font-weight:800;cursor:pointer;list-style:none}.treatment-faq summary::-webkit-details-marker{display:none}.treatment-faq summary span{color:#a5663f;font-size:22px}.treatment-faq details p{margin:0;padding:0 35px 20px 0;color:#6d5d53}.treatment-cta{padding:58px 0;background:#f7f0ea}.treatment-cta .container{display:flex;align-items:center;justify-content:space-between;gap:30px}.treatment-cta h2{max-width:780px;margin:7px 0;color:#2b211c;font-size:clamp(28px,4vw,43px)}
@media(max-width:800px){.treatments-hero,.treatment-detail-hero{min-height:500px}.treatment-overview-grid,.treatment-path-grid,.treatment-aftercare .container{grid-template-columns:1fr}.treatment-aftercare .container{gap:20px}.treatment-cta .container{align-items:flex-start;flex-direction:column}}@media(max-width:520px){.treatments-hero-content,.treatment-detail-hero .container{padding-bottom:45px}.treatment-path article{padding:24px}.treatment-detail-hero h1,.treatments-hero h1{font-size:39px}}

/* Corporate footer */
.doctor-resume-grid{align-items:stretch}.doctor-resume-card{overflow:hidden;padding:32px 30px 34px;background:linear-gradient(145deg,#fff,#fcf7f2);box-shadow:0 16px 38px rgba(72,43,27,.07)}.doctor-resume-card::before{content:'';position:absolute;left:0;top:0;width:100%;height:4px;background:linear-gradient(90deg,#754328,#c88a61)}.doctor-resume-card>span{top:23px;right:25px;display:grid;place-items:center;width:45px;height:45px;border:1px solid #e4cdbd;border-radius:50%;color:#a5663f!important;background:#fff;font-size:14px!important}.doctor-resume-card h3{margin:0 60px 27px 0;color:#2b211c;font-size:25px}.doctor-resume-card ul{position:relative;display:grid;gap:0;margin:0;padding:0;list-style:none}.doctor-resume-card li{position:relative;margin:0;padding:0 0 22px 28px;color:#65574f;line-height:1.65}.doctor-resume-card li:last-child{padding-bottom:0}.doctor-resume-card li::before{content:'';position:absolute;left:3px;top:8px;width:9px;height:9px;border:3px solid #f5e8df;border-radius:50%;background:#a5663f;box-shadow:0 0 0 1px #b77a52}.doctor-resume-card li:not(:last-child)::after{content:'';position:absolute;left:8px;top:20px;bottom:3px;width:1px;background:linear-gradient(#d7b69f,#eadbd1)}.doctor-resume-card li::first-line{color:#3e3029;font-weight:800}@media(max-width:520px){.doctor-resume-card{padding:27px 22px}.doctor-resume-card h3{font-size:22px}.doctor-resume-card li{padding-left:25px;font-size:14px}}

/* Corporate footer */
.home-team-photo,.team-portrait-wrap{height:280px;aspect-ratio:auto}.home-team-photo img,.team-portrait{object-fit:cover;object-position:center 22%}@media(max-width:900px){.home-team-photo,.team-portrait-wrap{height:250px}}@media(max-width:600px){.home-team-photo,.team-portrait-wrap{height:235px;aspect-ratio:auto}}

/* Corporate footer */
.appointment-success{position:relative;overflow:hidden;isolation:isolate;animation:success-card-in .65s cubic-bezier(.2,.8,.2,1) both}.appointment-success::before,.appointment-success::after{content:'✦  ·  ✦  ·  ✦';position:absolute;z-index:-1;color:#c98a60;font-size:20px;letter-spacing:18px;opacity:0;pointer-events:none;animation:success-confetti 1.4s .2s ease-out both}.appointment-success::before{left:7%;top:12%;transform:rotate(-18deg)}.appointment-success::after{right:3%;top:20%;transform:rotate(22deg);animation-delay:.35s}.appointment-success>span{position:relative;animation:success-check-in .65s .28s cubic-bezier(.2,1.5,.4,1) both}.appointment-success>span::before,.appointment-success>span::after{content:'';position:absolute;inset:-1px;border:2px solid rgba(165,102,63,.4);border-radius:50%;animation:success-ring 1.5s .55s ease-out both}.appointment-success>span::after{animation-delay:.78s}.appointment-success h2{animation:success-copy-in .5s .5s ease-out both}.appointment-success p{animation:success-copy-in .5s .62s ease-out both}.appointment-success .btn,.appointment-success .appointment-whatsapp{animation:success-copy-in .5s .75s ease-out both}
@keyframes success-card-in{from{opacity:0;transform:translateY(22px) scale(.97)}to{opacity:1;transform:none}}@keyframes success-check-in{from{opacity:0;transform:scale(.35) rotate(-20deg)}to{opacity:1;transform:scale(1) rotate(0)}}@keyframes success-ring{0%{opacity:.8;transform:scale(.8)}100%{opacity:0;transform:scale(1.9)}}@keyframes success-copy-in{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}@keyframes success-confetti{0%{opacity:0;translate:0 -12px}35%{opacity:.8}100%{opacity:0;translate:0 35px}}
@media(prefers-reduced-motion:reduce){.appointment-success,.appointment-success::before,.appointment-success::after,.appointment-success>span,.appointment-success>span::before,.appointment-success>span::after,.appointment-success h2,.appointment-success p,.appointment-success .btn,.appointment-success .appointment-whatsapp{animation:none}}

/* Corporate footer */
.appointment-whatsapp{display:flex;align-items:center;justify-content:center;gap:7px;width:100%;min-height:48px;margin-top:11px;padding:0 18px;border:1px solid rgba(255,255,255,.25);border-radius:12px;color:#fff!important;background:linear-gradient(135deg,#176b48,#25a968);box-shadow:0 10px 24px rgba(26,120,78,.25);font-size:14px;font-weight:800;transition:.2s}.appointment-whatsapp:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(26,120,78,.34)}.appointment-whatsapp span{font-weight:900}
.appointment-whatsapp svg{width:22px;height:22px;flex:0 0 22px}
.home-booking-errors{margin:18px 24px 0;padding:12px 14px;border:1px solid #e3b9a6;border-radius:4px;color:#843c27;background:#fff2ed;font-size:12px;font-weight:700;line-height:1.6}.home-booking-success{display:grid;place-items:center;align-content:center;min-height:420px;padding:42px;text-align:center}.home-booking-success>span{display:grid;place-items:center;width:64px;height:64px;margin-bottom:16px;border-radius:50%;color:#fff;background:linear-gradient(145deg,#bd7c51,#8b5131);font-size:29px;box-shadow:0 12px 25px rgba(117,67,40,.22)}.home-booking-success h3{max-width:520px;margin:0;color:#35271f;font-family:Georgia,'Times New Roman',serif;font-size:30px;font-weight:400}.home-booking-success p{max-width:520px;margin:12px 0 0;color:#756257;line-height:1.7}@media(max-width:550px){.home-booking-errors{margin:14px 14px 0}.home-booking-success{min-height:350px;padding:28px 20px}.home-booking-success h3{font-size:25px}}
.home-booking-form .booking-email-field{grid-column:1/-1}

/* Corporate footer */
.booking-step-title span,.appointment-form-head strong{display:none}

/* Corporate footer */
.slot-feedback{display:block;margin-top:6px;color:#a5663f;font-size:11px;font-weight:700}

/* Corporate footer */
.home-booking{position:relative;z-index:4;padding:34px 0 42px;background:#f7f0ea}.home-booking-shell{display:grid;grid-template-columns:.7fr 1.3fr;gap:clamp(28px,5vw,70px);align-items:center}.home-booking-copy h2{margin:7px 0 12px;color:#2b211c;font-size:clamp(28px,3.5vw,42px);line-height:1.08}.home-booking-copy p{margin:0;color:#75675e}.home-booking-form{overflow:hidden;border:1px solid #e2d1c4;border-radius:20px;background:#fff;box-shadow:0 20px 45px rgba(72,43,27,.11)}.booking-progress{display:flex;align-items:center;padding:18px 25px;border-bottom:1px solid #eee2d9;background:#fcf9f6}.booking-progress button{display:flex;align-items:center;gap:7px;padding:0;border:0;color:#9a887d;background:none;font:inherit;font-size:11px;font-weight:800}.booking-progress button span{display:grid;place-items:center;width:25px;height:25px;border:1px solid #d9c8bc;border-radius:50%}.booking-progress button.is-active{color:#754328}.booking-progress button.is-active span,.booking-progress button.is-complete span{color:#fff;border-color:#a5663f;background:#a5663f}.booking-progress i{flex:1;height:1px;margin:0 10px;background:#e5d7cd}.booking-step{display:none;padding:25px}.booking-step.is-active{display:grid;gap:17px;animation:booking-reveal .25s ease}.booking-step-title{display:flex;align-items:center;gap:13px}.booking-step-title>small{display:grid;place-items:center;width:43px;height:43px;border-radius:12px;color:#a5663f;background:#f5e8df;font-weight:900}.booking-step-title div{display:grid}.booking-step-title strong{color:#2b211c;font-size:18px}.booking-step-title span{color:#8b7a70;font-size:12px}.home-booking-form label{color:#514038;font-size:12px;font-weight:800}.home-booking-form input,.home-booking-form select{display:block;width:100%;margin-top:6px;padding:11px 12px;border:1px solid #dfd3ca;border-radius:10px;background:#fdfbf9;font:inherit}.booking-actions{display:flex;justify-content:flex-end;gap:9px}.booking-actions .btn{min-height:42px}.booking-summary{display:grid;grid-template-columns:repeat(2,1fr);gap:9px}.booking-summary div{display:grid;gap:3px;padding:12px;border-radius:10px;background:#f8f3ef}.booking-summary small{color:#9a887d;font-size:10px}.booking-summary strong{color:#49372e;font-size:13px}@keyframes booking-reveal{from{opacity:0;transform:translateX(10px)}to{opacity:1;transform:none}}@media(max-width:850px){.home-booking-shell{grid-template-columns:1fr}.home-booking-copy{text-align:center}}@media(max-width:550px){.home-booking{padding:25px 0}.booking-progress{padding:14px}.booking-progress button{font-size:0}.booking-progress button span{font-size:11px}.booking-step{padding:18px}.booking-step .grid-2,.booking-summary{grid-template-columns:1fr}.booking-actions{display:grid;grid-template-columns:1fr 1fr}.booking-actions:has(:only-child){grid-template-columns:1fr}.booking-actions .btn{width:100%;padding:0 10px}}

/* Corporate footer */
.appointment-hero{position:relative;overflow:hidden;padding:82px 0;color:#fff;background:linear-gradient(135deg,#2b211c,#754328)}.appointment-hero::after{content:'';position:absolute;right:-130px;top:-240px;width:520px;height:520px;border:1px solid rgba(255,255,255,.13);border-radius:50%;box-shadow:0 0 0 70px rgba(255,255,255,.025)}.appointment-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:1.2fr .8fr;gap:70px;align-items:end}.appointment-hero h1{max-width:780px;margin:10px 0 16px;font-size:clamp(38px,5vw,65px);line-height:1.04}.appointment-hero p{max-width:650px;color:#ead7c9;font-size:18px}.appointment-assurance{display:grid;grid-template-columns:auto 1fr;gap:12px 15px;padding:25px;border:1px solid rgba(255,255,255,.17);border-radius:18px;background:rgba(255,255,255,.07);backdrop-filter:blur(8px)}.appointment-assurance span{color:#d6a17c;font-weight:900}.appointment-assurance strong{font-size:14px}
.appointment-section{background:linear-gradient(180deg,#fff,#fcf8f4)}.appointment-layout{display:grid;grid-template-columns:.75fr 1.25fr;gap:clamp(35px,6vw,80px);align-items:start}.appointment-copy h2{margin:8px 0 20px;color:#2b211c;font-size:clamp(32px,4vw,48px);line-height:1.1}.appointment-copy>p{color:#75675e;font-size:17px}.appointment-privacy{margin-top:30px;padding:20px;border-left:3px solid #a5663f;border-radius:0 13px 13px 0;background:#f7eee7}.appointment-privacy p{margin:5px 0 0;color:#75675e;font-size:14px}.appointment-form{display:grid;gap:17px;padding:clamp(22px,4vw,38px);border:1px solid #e2d3c8;border-radius:22px;background:#fff;box-shadow:0 24px 55px rgba(72,43,27,.11)}.appointment-form-head{display:flex;justify-content:space-between;gap:20px;padding-bottom:18px;border-bottom:1px solid var(--line)}.appointment-form-head span{color:#2b211c;font-size:20px;font-weight:900}.appointment-form-head strong{color:#a5663f;font-size:11px}.appointment-form label{color:#49382f;font-size:13px;font-weight:800}.appointment-form label small{float:right;color:#9a877b;font-weight:500}.appointment-form input,.appointment-form select{display:block;width:100%;margin-top:7px;padding:13px 14px;border:1px solid #dfd3ca;border-radius:11px;background:#fdfbf9;font:inherit}.appointment-form input:focus,.appointment-form select:focus{outline:none;border-color:#a5663f;box-shadow:0 0 0 4px rgba(165,102,63,.1)}.appointment-consent{display:flex!important;align-items:flex-start;gap:11px;padding:14px;border-radius:11px;background:#f8f3ef}.appointment-consent input{width:18px!important;flex:0 0 18px;margin:3px 0 0!important;accent-color:#a5663f}.appointment-consent span{color:#6d5d53;font-size:12px;font-weight:500}.appointment-submit{width:100%}.appointment-note{text-align:center;margin:0;color:#94847a;font-size:11px}.appointment-success{padding:45px;text-align:center;border:1px solid #dfcdbf;border-radius:22px;background:#fff;box-shadow:var(--shadow)}.appointment-success>span{display:grid;place-items:center;width:60px;height:60px;margin:0 auto 20px;border-radius:50%;color:#fff;background:#a5663f;font-size:28px}.appointment-success h2{font-size:32px}.appointment-success p{color:#75675e}
@media(max-width:800px){.appointment-hero-grid,.appointment-layout{grid-template-columns:1fr}.appointment-hero{padding:55px 0}.appointment-form-head{align-items:flex-start;flex-direction:column;gap:5px}}@media(max-width:550px){.appointment-form .grid-2{grid-template-columns:1fr}.appointment-form{padding:20px}.appointment-assurance{padding:18px}}

/* Corporate footer */
.contact-map-section{position:relative;padding:76px 0 90px;overflow:hidden;background:#f7f0ea}.contact-map-section::before{content:'';position:absolute;right:-130px;top:-190px;width:390px;height:390px;border:1px solid rgba(165,102,63,.14);border-radius:50%;box-shadow:0 0 0 55px rgba(165,102,63,.03)}.contact-map-heading{position:relative;z-index:1;display:flex;align-items:end;justify-content:space-between;gap:30px;margin-bottom:30px}.contact-map-heading h2{margin:7px 0 6px;color:#2b211c;font-size:clamp(30px,4vw,46px);line-height:1.1}.contact-map-heading p{margin:0;color:#75675e}.contact-map-frame{position:relative;z-index:1;overflow:hidden;height:clamp(390px,52vw,590px);padding:8px;border:1px solid #dfcdbf;border-radius:24px;background:#fff;box-shadow:0 25px 55px rgba(72,43,27,.14)}.contact-map-frame iframe{display:block;width:100%;height:100%;border:0;border-radius:17px;filter:saturate(.82) contrast(1.03)}@media(max-width:650px){.contact-map-section{padding:55px 0}.contact-map-heading{align-items:flex-start;flex-direction:column}.contact-map-heading .btn{width:100%}.contact-map-frame{height:420px;padding:6px;border-radius:18px}.contact-map-frame iframe{border-radius:12px}}

/* Corporate footer */
.footer{position:relative;overflow:hidden;padding:0;color:#d8cbc2;background:linear-gradient(145deg,#211915,#30221b 58%,#432b20)}.footer::before{content:'';position:absolute;right:-190px;top:-250px;width:520px;height:520px;border:1px solid rgba(201,139,97,.15);border-radius:50%;box-shadow:0 0 0 70px rgba(201,139,97,.035),0 0 0 140px rgba(201,139,97,.025)}
.footer-main{position:relative;z-index:1;display:grid;grid-template-columns:1.35fr .65fr 1fr .85fr;gap:clamp(28px,4vw,64px);padding-top:72px;padding-bottom:58px}.footer-logo-wrap{display:grid;place-items:center;width:calc(280px * var(--logo-footer-scale,1));height:calc(118px * var(--logo-footer-scale,1));margin-bottom:22px;overflow:visible;border-radius:16px;background:#fff;box-shadow:0 16px 34px rgba(0,0,0,.18)}.footer-logo-wrap img{width:calc(250px * var(--logo-footer-scale,1));height:calc(98px * var(--logo-footer-scale,1));object-fit:contain;transform:none}
.footer-brand>p{max-width:370px;margin:0 0 22px;color:#bdaea4;line-height:1.75}.footer-appointment{display:inline-flex;align-items:center;gap:14px;color:#e5b18d!important;font-weight:800}.footer-appointment span{font-size:21px}.footer h3{margin:5px 0 23px;color:#fff;font-size:13px;letter-spacing:.1em;text-transform:uppercase}.footer-links{display:grid;gap:12px}.footer-links a{width:max-content;color:#c8b9af;font-weight:600;transition:.2s}.footer-links a:hover{color:#e5b18d;transform:translateX(4px)}
.footer-contact-list{display:grid;align-content:start;gap:17px}.footer-contact-list h3{margin-bottom:6px}.footer-contact-list div{display:grid;gap:2px}.footer-contact-list small{color:#977d6c;font-size:10px;font-weight:800;letter-spacing:.09em;text-transform:uppercase}.footer-contact-list a,.footer-contact-list span{color:#dfd2ca;font-size:14px;font-weight:600}.footer-hours p{margin:0 0 24px;color:#c8b9af}.footer-socials{display:flex;gap:9px}.footer-socials a{display:grid;place-items:center;width:38px;height:38px;border:1px solid rgba(229,177,141,.3);border-radius:11px;color:#e5b18d;font-size:12px;font-weight:900}.footer-socials a:hover{color:#2b211c;background:#e5b18d}
.footer-bottom{position:relative;z-index:1;display:flex;justify-content:space-between;gap:20px;padding-top:22px;padding-bottom:22px;border-top:1px solid rgba(255,255,255,.1)}.footer-bottom p{margin:0;color:#8f7c70;font-size:12px}
@media(max-width:980px){.footer-main{grid-template-columns:1.3fr .7fr 1fr}.footer-hours{grid-column:2/4}}@media(max-width:700px){.footer-main{grid-template-columns:1fr 1fr;padding-top:50px}.footer-brand{grid-column:1/-1}.footer-hours{grid-column:auto}.footer-bottom{align-items:flex-start;flex-direction:column;gap:5px}}@media(max-width:460px){.footer-main{grid-template-columns:1fr}.footer-brand,.footer-hours{grid-column:auto}.footer-logo-wrap{width:190px;height:90px}.footer-bottom p:last-child{display:none}}

/* Home services */
.home-services-section{position:relative;overflow:hidden;background:linear-gradient(180deg,#fff 0,#fcf8f4 100%)}.home-services-section::before{content:'';position:absolute;left:-180px;top:90px;width:360px;height:360px;border:1px solid rgba(165,102,63,.12);border-radius:50%;box-shadow:0 0 0 55px rgba(165,102,63,.025)}.home-services-section .section-head{position:relative;z-index:1;margin-bottom:44px}.home-services-section .service-grid{position:relative;z-index:1;gap:26px}
.home-services-section .service-card{position:relative;overflow:hidden;border:1px solid #e5d5c9;border-radius:18px;background:#fff;box-shadow:0 16px 40px rgba(72,43,27,.08);transition:.25s}.home-services-section .service-card:hover{transform:translateY(-8px);border-color:#cfaa8f;box-shadow:0 25px 50px rgba(72,43,27,.14)}.home-services-section .service-card-media{position:relative;overflow:hidden;aspect-ratio:16/11;background:#eadfd6}.home-services-section .service-card-media::after{content:'';position:absolute;inset:45% 0 0;background:linear-gradient(0deg,rgba(43,33,28,.48),transparent)}.home-services-section .service-card-media img{width:100%;height:100%;aspect-ratio:auto;object-fit:cover;transition:transform .45s}.home-services-section .service-card:hover img{transform:scale(1.055)}.home-services-section .service-card-media>span{position:absolute;right:16px;bottom:15px;z-index:2;display:grid;place-items:center;width:42px;height:42px;border:1px solid rgba(255,255,255,.5);border-radius:50%;color:#fff;background:rgba(43,33,28,.55);backdrop-filter:blur(7px);font-size:11px;font-weight:900}
.home-services-section .service-card>div:last-child{position:relative;z-index:2;display:flex;flex-direction:column;min-height:250px;padding:25px}.home-services-section .service-card h3{margin:0 0 10px;color:#2b211c;font-size:22px}.home-services-section .service-card p{margin:0 0 20px;color:#75675e;line-height:1.65}.home-services-section .service-card a{position:relative;z-index:3;display:flex;align-items:center;justify-content:center;gap:12px;min-height:45px;margin-top:auto;padding:10px 16px;border:1px solid rgba(255,255,255,.32);border-radius:12px;color:#fff!important;background:linear-gradient(135deg,#754328,#b9794e);box-shadow:0 9px 22px rgba(117,67,40,.28);font-size:13px;font-weight:900;transition:transform .2s,box-shadow .2s}.home-services-section .service-card a::before{content:'';position:absolute;top:50%;left:50%;width:100%;height:100%;transform:translate(-50%,-50%);border-radius:inherit;animation:service-link-glow 2.2s ease-out infinite;pointer-events:none}.home-services-section .service-card a::after{content:'';position:absolute;z-index:2;inset:-1000px;cursor:pointer}.home-services-section .service-card a span{position:relative;z-index:4;font-size:19px;transition:transform .2s}.home-services-section .service-card:hover a{transform:translateY(-2px);box-shadow:0 13px 29px rgba(117,67,40,.38)}.home-services-section .service-card:hover a span{transform:translateX(5px)}@keyframes service-link-glow{0%{box-shadow:0 0 0 0 rgba(185,121,78,.42)}65%,100%{box-shadow:0 0 0 12px rgba(185,121,78,0)}}@media(max-width:900px){.home-services-section .service-card>div:last-child{min-height:auto}.home-services-section .service-grid{gap:18px}}@media(prefers-reduced-motion:reduce){.home-services-section .service-card a::before{animation:none}}
/* Clinic gallery and About dropdown */
.nav-dropdown{position:relative;display:flex;align-items:center;align-self:stretch}.nav-dropdown>.nav-dropdown-trigger{display:flex;align-items:center;height:100%;padding-top:0;padding-bottom:0}.nav-dropdown-trigger span{display:inline-flex;margin-left:4px;font-size:12px;line-height:1;transform:translateY(-1px)}.nav-dropdown-menu{position:absolute;z-index:30;top:calc(100% + 8px);left:50%;display:grid;min-width:210px;padding:8px;border:1px solid rgba(165,102,63,.18);border-radius:14px;background:#fff;box-shadow:0 22px 50px rgba(60,34,20,.16);opacity:0;visibility:hidden;transform:translate(-50%,8px);transition:.2s}.nav-dropdown-menu:before{content:'';position:absolute;left:0;right:0;bottom:100%;height:12px}.nav-dropdown-menu a{padding:11px 13px!important;border-radius:9px;color:#3b2920!important;white-space:nowrap}.nav-dropdown-menu a:hover{background:#f6ece4}.nav-dropdown:hover .nav-dropdown-menu,.nav-dropdown:focus-within .nav-dropdown-menu{opacity:1;visibility:visible;transform:translate(-50%,0)}
.gallery-hero{position:relative;overflow:hidden;padding:clamp(82px,10vw,148px) 0 70px;background:radial-gradient(circle at 82% 15%,rgba(203,145,103,.2),transparent 28%),linear-gradient(135deg,#2b1e17,#4f3223);color:#fff}.gallery-hero:after{content:'R';position:absolute;right:4vw;bottom:-.3em;color:rgba(255,255,255,.035);font-family:Georgia,serif;font-size:min(42vw,560px);line-height:1}.gallery-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);gap:8vw;align-items:end}.gallery-hero .eyebrow{color:#dda982}.gallery-hero h1{max-width:820px;margin:15px 0 0;color:#fff;font-family:Georgia,serif;font-size:clamp(42px,6vw,82px);font-weight:400;line-height:1.02;letter-spacing:-.035em}.gallery-hero p{margin:0;padding-left:25px;border-left:1px solid #c48861;color:#eadfd7;font-size:16px;line-height:1.8}.clinic-gallery-section{background:#f8f3ee}.gallery-intro{display:flex;justify-content:space-between;gap:30px;align-items:center;margin-bottom:35px;padding-bottom:22px;border-bottom:1px solid #ddcfc4}.gallery-intro span{color:#a5663f;font-size:12px;font-weight:900;letter-spacing:.1em;text-transform:uppercase}.gallery-intro p{max-width:560px;margin:0;color:#74645a}.clinic-gallery-grid{display:grid;grid-template-columns:repeat(12,1fr);grid-auto-flow:dense;gap:18px}.clinic-gallery-card{position:relative;grid-column:span 4;min-height:340px;padding:0;overflow:hidden;border:0;border-radius:4px;background:#31231b;cursor:zoom-in;box-shadow:0 16px 40px rgba(61,38,24,.1)}.clinic-gallery-card.gallery-shape-1,.clinic-gallery-card.gallery-shape-6{grid-column:span 8;min-height:520px}.clinic-gallery-card.gallery-shape-3{grid-column:span 5;min-height:430px}.clinic-gallery-card.gallery-shape-4{grid-column:span 7;min-height:430px}.clinic-gallery-card img{width:100%;height:100%;object-fit:cover;transition:transform .7s,filter .4s}.clinic-gallery-card:after{content:'';position:absolute;inset:0;background:linear-gradient(180deg,transparent 50%,rgba(24,15,10,.82))}.clinic-gallery-card>span{position:absolute;z-index:2;left:24px;right:24px;bottom:22px;display:grid;grid-template-columns:auto 1fr auto;gap:13px;align-items:center;color:#fff;text-align:left}.clinic-gallery-card small{color:#d7a47f;font-weight:800}.clinic-gallery-card strong{font-family:Georgia,serif;font-size:20px;font-weight:400}.clinic-gallery-card i{display:grid;place-items:center;width:38px;height:38px;border:1px solid rgba(255,255,255,.55);border-radius:50%;font-style:normal}.clinic-gallery-card:hover img{transform:scale(1.045);filter:saturate(1.08)}.gallery-empty{padding:80px 20px;text-align:center}.gallery-visit{padding:48px 0;background:#a5663f;color:#fff}.gallery-visit .container{display:flex;align-items:center;justify-content:space-between;gap:30px}.gallery-visit h2{margin:6px 0 0;color:#fff;font-family:Georgia,serif;font-size:clamp(28px,4vw,44px);font-weight:400}.gallery-visit .btn{background:#fff!important;color:#633b25!important}.gallery-lightbox{width:100vw;max-width:none;height:100vh;max-height:none;margin:0;padding:0;border:0;background:rgba(24,15,10,.94)}.gallery-lightbox::backdrop{background:rgba(24,15,10,.94)}.gallery-lightbox figure{display:grid;place-items:center;width:100%;height:100%;margin:0;padding:5vw}.gallery-lightbox img{max-width:92vw;max-height:82vh;object-fit:contain}.gallery-lightbox figcaption{color:#eadfd7}.gallery-lightbox>button{position:fixed;z-index:3;top:20px;right:25px;width:48px;height:48px;border:1px solid #fff;border-radius:50%;color:#fff;background:transparent;font-size:28px}
@media(max-width:900px){.nav-dropdown{display:block;width:100%;align-self:auto}.nav-dropdown>.nav-dropdown-trigger{display:flex;height:auto}.nav-dropdown-menu{position:static;min-width:0;margin-left:15px;padding:0 0 0 12px;border:0;border-left:1px solid #d5b59f;border-radius:0;background:transparent;box-shadow:none;opacity:1;visibility:visible;transform:none}.gallery-hero-grid{grid-template-columns:1fr}.clinic-gallery-card,.clinic-gallery-card.gallery-shape-1,.clinic-gallery-card.gallery-shape-3,.clinic-gallery-card.gallery-shape-4,.clinic-gallery-card.gallery-shape-6{grid-column:span 6;min-height:380px}}@media(max-width:620px){.gallery-hero{padding:70px 0 52px}.gallery-hero h1{font-size:42px}.gallery-intro,.gallery-visit .container{align-items:flex-start;flex-direction:column}.clinic-gallery-card,.clinic-gallery-card.gallery-shape-1,.clinic-gallery-card.gallery-shape-3,.clinic-gallery-card.gallery-shape-4,.clinic-gallery-card.gallery-shape-6{grid-column:1/-1;min-height:350px}.gallery-visit .btn{width:100%}}

/* Gallery editorial refinement */
.gallery-hero{min-height:560px;display:flex;align-items:flex-end;padding-bottom:84px}.gallery-hero-grid{width:min(1180px,calc(100% - 32px))}.gallery-hero h1{max-width:900px}.gallery-hero p{max-width:430px}.clinic-gallery-section{padding-top:86px;padding-bottom:110px}.gallery-intro{align-items:flex-end;margin-bottom:48px;padding-bottom:28px}.gallery-intro>div{display:grid;gap:7px}.gallery-intro small{color:#a5663f;font-size:10px;font-weight:900;letter-spacing:.18em;text-transform:uppercase}.gallery-intro h2{margin:0;color:#30231c;font-family:Georgia,'Times New Roman',serif;font-size:clamp(30px,4vw,48px);font-weight:400;letter-spacing:-.025em}.gallery-intro>span{padding:8px 13px;border:1px solid #d8c4b5;border-radius:99px;color:#7c543a;background:rgba(255,255,255,.65)}.clinic-gallery-grid{grid-template-columns:repeat(12,minmax(0,1fr));grid-auto-rows:105px;gap:14px}.clinic-gallery-card,.clinic-gallery-card.gallery-shape-1,.clinic-gallery-card.gallery-shape-2,.clinic-gallery-card.gallery-shape-3,.clinic-gallery-card.gallery-shape-4,.clinic-gallery-card.gallery-shape-5,.clinic-gallery-card.gallery-shape-6,.clinic-gallery-card.gallery-shape-7{min-height:0;grid-column:span 4;grid-row:span 4;border-radius:2px;box-shadow:none}.clinic-gallery-card.gallery-shape-1{grid-column:span 8;grid-row:span 6}.clinic-gallery-card.gallery-shape-2{grid-column:span 4;grid-row:span 3}.clinic-gallery-card.gallery-shape-3{grid-column:span 4;grid-row:span 3}.clinic-gallery-card.gallery-shape-4{grid-column:span 5;grid-row:span 5}.clinic-gallery-card.gallery-shape-5{grid-column:span 7;grid-row:span 5}.clinic-gallery-card.gallery-shape-6{grid-column:span 4;grid-row:span 4}.clinic-gallery-card.gallery-shape-7{grid-column:span 8;grid-row:span 4}.clinic-gallery-card:after{background:linear-gradient(180deg,transparent 58%,rgba(25,15,10,.58));opacity:.75;transition:opacity .35s}.clinic-gallery-card>span{left:18px;right:18px;bottom:16px;grid-template-columns:auto 1fr auto}.clinic-gallery-card small{display:grid;place-items:center;width:31px;height:31px;border:1px solid rgba(255,255,255,.48);border-radius:50%;color:#fff;font-size:9px}.clinic-gallery-card strong{font-size:17px}.clinic-gallery-card i{width:35px;height:35px;opacity:0;transform:translateY(6px);transition:.3s}.clinic-gallery-card:hover:after{opacity:1}.clinic-gallery-card:hover i{opacity:1;transform:none}.clinic-gallery-card:focus-visible{outline:3px solid #b6764e;outline-offset:3px}.gallery-lightbox figure{grid-template-rows:1fr auto;gap:15px}.gallery-lightbox img{max-width:88vw;max-height:84vh;border:1px solid rgba(255,255,255,.12);box-shadow:0 30px 90px rgba(0,0,0,.7)}.gallery-lightbox figcaption{min-height:20px;font-family:Georgia,serif;font-size:18px}.gallery-lightbox>button{top:24px;right:30px;transition:.2s}.gallery-lightbox>button:hover{color:#332117;background:#fff}
@media(max-width:900px){.gallery-hero{min-height:500px}.clinic-gallery-grid{grid-auto-rows:90px}.clinic-gallery-card,.clinic-gallery-card.gallery-shape-1,.clinic-gallery-card.gallery-shape-2,.clinic-gallery-card.gallery-shape-3,.clinic-gallery-card.gallery-shape-4,.clinic-gallery-card.gallery-shape-5,.clinic-gallery-card.gallery-shape-6,.clinic-gallery-card.gallery-shape-7{grid-column:span 6;grid-row:span 4}.clinic-gallery-card.gallery-shape-1,.clinic-gallery-card.gallery-shape-5{grid-column:1/-1;grid-row:span 5}}
@media(max-width:620px){.gallery-hero{min-height:460px;padding-bottom:55px}.clinic-gallery-section{padding-top:58px;padding-bottom:72px}.gallery-intro{gap:20px;margin-bottom:28px}.gallery-intro h2{font-size:34px}.clinic-gallery-grid{display:grid;grid-template-columns:1fr;grid-auto-rows:auto;gap:12px}.clinic-gallery-card,.clinic-gallery-card.gallery-shape-1,.clinic-gallery-card.gallery-shape-2,.clinic-gallery-card.gallery-shape-3,.clinic-gallery-card.gallery-shape-4,.clinic-gallery-card.gallery-shape-5,.clinic-gallery-card.gallery-shape-6,.clinic-gallery-card.gallery-shape-7{grid-column:1;grid-row:auto;min-height:0;aspect-ratio:4/3}.clinic-gallery-card:nth-child(3n+1){aspect-ratio:4/5}.clinic-gallery-card i{opacity:1;transform:none}}

/* Home doctors - executive editorial layout */
.home-team-section{padding:105px 0 115px;background:linear-gradient(180deg,#faf6f2 0%,#f6eee8 100%)}.home-team-section::before{right:-230px;top:-250px;width:560px;height:560px;box-shadow:0 0 0 80px rgba(165,102,63,.025),0 0 0 160px rgba(165,102,63,.018)}.home-team-heading{grid-template-columns:minmax(0,1.25fr) minmax(320px,.6fr);gap:90px;max-width:1240px;margin-bottom:52px}.home-team-heading .eyebrow{color:#a5663f;letter-spacing:.15em}.home-team-heading h2{max-width:760px;margin-top:13px;font-family:Georgia,'Times New Roman',serif;font-size:clamp(42px,4.7vw,64px);font-weight:400;line-height:1.04;letter-spacing:-.035em}.home-team-intro{padding:8px 0 8px 29px;border-left:1px solid #bd7d52}.home-team-intro p{font-size:15px;line-height:1.85}.home-team-intro a{position:relative;padding-bottom:5px;font-size:13px;letter-spacing:.025em}.home-team-intro a:after{content:'';position:absolute;left:0;right:0;bottom:0;height:1px;background:#9b5c38;transform-origin:left;transition:transform .25s}.home-team-grid{max-width:1240px;gap:24px}.home-team-card{grid-template-columns:minmax(240px,.8fr) minmax(0,1.2fr);min-height:390px;border:0;border-radius:3px;background:#fff;box-shadow:0 20px 55px rgba(66,39,23,.075)}.home-team-card:hover{transform:translateY(-4px);border-color:transparent;box-shadow:0 30px 70px rgba(66,39,23,.13)}.home-team-photo,.home-team-card .home-team-photo{height:100%;min-height:390px;background:linear-gradient(155deg,#76503c,#c49b80)}.home-team-photo:before{content:'';position:absolute;z-index:1;inset:0;border:10px solid rgba(255,255,255,.09);pointer-events:none}.home-team-photo::after{z-index:1;background:linear-gradient(180deg,transparent 55%,rgba(39,23,15,.28))}.home-team-photo img{filter:saturate(.76) contrast(.98);transform:scale(1.01)}.home-team-card:hover .home-team-photo img{transform:scale(1.035);filter:saturate(.9)}.home-team-photo>span{z-index:2;left:24px;bottom:22px;width:auto;height:auto;padding:0;border:0;border-radius:0;color:rgba(255,255,255,.88);background:transparent;backdrop-filter:none;font-family:Georgia,serif;font-size:14px;letter-spacing:.12em}.home-team-card-body{position:relative;padding:45px 42px 38px}.home-team-card-body:before{content:'RAMEL DENTAL';display:block;margin-bottom:30px;color:#b58465;font-size:9px;font-weight:900;letter-spacing:.2em}.home-team-card-body p{display:-webkit-box;min-height:76px;margin:0 0 24px;overflow:hidden;color:#765a49;font-size:11px;line-height:1.75;letter-spacing:.045em;-webkit-box-orient:vertical;-webkit-line-clamp:4}.home-team-card-body h3{margin:0 0 9px;font-family:Georgia,'Times New Roman',serif;font-size:clamp(28px,2.5vw,38px);font-weight:400;line-height:1.05;letter-spacing:-.025em}.home-team-card-body>span{margin:0;color:#8b7669;font-size:12px;font-weight:700;letter-spacing:.045em;text-transform:uppercase}.home-team-card-body .doctor-card-link{position:relative;justify-content:flex-start;width:max-content;min-height:auto;margin-top:auto;padding:22px 35px 5px 0;border:0;border-bottom:1px solid #b5754c;border-radius:0;color:#754328!important;background:transparent;box-shadow:none;font-size:12px;letter-spacing:.035em}.home-team-card-body .doctor-card-link::before{display:none}.home-team-card-body .doctor-card-link::after{inset:-1000px}.home-team-card-body .doctor-card-link:hover{transform:none;box-shadow:none;color:#3b281d!important}.home-team-card-body .doctor-card-link span:last-child{transition:transform .2s}.home-team-card-body .doctor-card-link:hover span:last-child{transform:translateX(5px)}
@media(max-width:1050px){.home-team-heading{gap:45px}.home-team-card{grid-template-columns:1fr}.home-team-photo,.home-team-card .home-team-photo{height:300px;min-height:300px}.home-team-card-body{min-height:330px;padding:34px}.home-team-card-body:before{margin-bottom:20px}}
@media(max-width:760px){.home-team-section{padding:70px 0 78px}.home-team-heading{grid-template-columns:1fr;gap:25px;margin-bottom:35px}.home-team-heading h2{font-size:43px}.home-team-intro{padding-left:20px}.home-team-grid{grid-template-columns:1fr}.home-team-card{grid-template-columns:minmax(180px,.75fr) minmax(0,1.25fr)}.home-team-photo,.home-team-card .home-team-photo{height:360px;min-height:360px}.home-team-card-body{min-height:360px;padding:30px}.home-team-card-body p{min-height:68px;-webkit-line-clamp:4}}
@media(max-width:560px){.home-team-heading h2{font-size:38px}.home-team-card{grid-template-columns:1fr}.home-team-photo,.home-team-card .home-team-photo{height:290px;min-height:290px}.home-team-card-body{min-height:315px;padding:27px 25px}.home-team-card-body h3{font-size:31px}.home-team-card-body p{min-height:0}.home-team-card-body .doctor-card-link{margin-top:25px}}

/* Quick booking conversion section */
.home-booking{isolation:isolate;overflow:hidden;padding:88px 0 0;background:radial-gradient(circle at 8% 20%,rgba(185,121,78,.13),transparent 27%),linear-gradient(145deg,#f8f1eb 0%,#fffaf6 62%,#f3e7dd 100%)}.home-booking:before{content:'';position:absolute;z-index:-1;right:-170px;top:-260px;width:580px;height:580px;border:1px solid rgba(165,102,63,.14);border-radius:50%;box-shadow:0 0 0 70px rgba(165,102,63,.025),0 0 0 140px rgba(165,102,63,.018)}.home-booking-shell{grid-template-columns:minmax(320px,.72fr) minmax(580px,1.28fr);gap:clamp(55px,7vw,110px);align-items:center;padding-bottom:72px}.home-booking-copy{position:relative}.booking-availability{display:inline-flex;align-items:center;gap:9px;margin-bottom:25px;padding:8px 13px;border:1px solid rgba(165,102,63,.22);border-radius:99px;color:#754328;background:rgba(255,255,255,.7);font-size:10px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.booking-availability i{position:relative;width:8px;height:8px;border-radius:50%;background:#3a9b72;box-shadow:0 0 0 5px rgba(58,155,114,.12)}.booking-availability i:after{content:'';position:absolute;inset:-5px;border:1px solid rgba(58,155,114,.4);border-radius:50%;animation:booking-status 2s ease-out infinite}.home-booking-copy .eyebrow{color:#a5663f;letter-spacing:.16em}.home-booking-copy h2{max-width:510px;margin:13px 0 18px;font-family:Georgia,'Times New Roman',serif;font-size:clamp(43px,4.6vw,66px);font-weight:400;line-height:1.01;letter-spacing:-.04em}.home-booking-copy>p{max-width:465px;color:#756257;font-size:16px;line-height:1.75}.booking-direct{display:grid;grid-template-columns:1fr 1fr;max-width:490px;margin-top:30px;border-top:1px solid #ddc7b7;border-bottom:1px solid #ddc7b7}.booking-direct a{display:grid;gap:4px;padding:17px 18px 17px 0;color:#33251e}.booking-direct a+a{padding-left:22px;border-left:1px solid #ddc7b7}.booking-direct small{color:#9b755e;font-size:9px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}.booking-direct strong{font-size:13px}.booking-assurance{display:flex;align-items:center;gap:9px;margin-top:18px;color:#806d61;font-size:11px}.booking-assurance span{display:grid;place-items:center;width:21px;height:21px;border-radius:50%;color:#fff;background:#a5663f;font-size:10px}.home-booking-form{position:relative;overflow:visible;border:1px solid rgba(165,102,63,.22);border-radius:4px;background:rgba(255,255,255,.94);box-shadow:0 35px 80px rgba(69,40,23,.14)}.home-booking-form:before{content:'RAMEL';position:absolute;right:22px;top:-42px;color:rgba(117,67,40,.08);font-family:Georgia,serif;font-size:70px;letter-spacing:.09em;pointer-events:none}.booking-progress{position:relative;z-index:1;padding:22px 30px;border-bottom-color:#eadcd2;background:#fcf9f7}.booking-progress button{gap:10px;color:#9b887c;font-size:10px;letter-spacing:.04em;text-transform:uppercase}.booking-progress button span{width:30px;height:30px;background:#fff}.booking-progress button.is-active{color:#623b26}.booking-progress button.is-active span,.booking-progress button.is-complete span{border-color:#a5663f;background:linear-gradient(145deg,#bd7c51,#8b5131);box-shadow:0 6px 13px rgba(117,67,40,.22)}.booking-step{min-height:318px;padding:34px 31px 30px}.booking-step-title{gap:15px}.booking-step-title>small{width:50px;height:50px;border-radius:2px;color:#8d5332;background:#f3e3d7;font-family:Georgia,serif;font-size:16px}.booking-step-title strong{font-family:Georgia,serif;font-size:23px;font-weight:400}.home-booking-form label{color:#4c392f;font-size:11px;letter-spacing:.025em}.home-booking-form input,.home-booking-form select{min-height:50px;margin-top:8px;padding:13px 15px;border-color:#decbbd;border-radius:3px;background:#fdfbf9;transition:.2s}.home-booking-form input:focus,.home-booking-form select:focus{outline:0;border-color:#a5663f;background:#fff;box-shadow:0 0 0 4px rgba(165,102,63,.1)}.booking-actions{margin-top:2px}.booking-actions .btn{min-height:49px;padding:0 24px;border-radius:3px;background:linear-gradient(135deg,#875032,#b87549);box-shadow:0 12px 25px rgba(117,67,40,.24);letter-spacing:.025em}.booking-actions .btn:hover{transform:translateY(-2px);box-shadow:0 17px 32px rgba(117,67,40,.32)}.booking-actions .btn.ghost{color:#644735!important;background:#f5ede7;box-shadow:none}.home-booking+section,.home-booking>.container:last-child{position:relative}.home-booking .trust-strip,.home-booking .feature-strip{box-shadow:0 -1px rgba(165,102,63,.12)}@keyframes booking-status{0%{opacity:1;transform:scale(.55)}75%,100%{opacity:0;transform:scale(1.35)}}
@media(max-width:1050px){.home-booking-shell{grid-template-columns:.8fr 1.2fr;gap:40px}.home-booking-copy h2{font-size:50px}.booking-direct{grid-template-columns:1fr}.booking-direct a+a{padding-left:0;border-top:1px solid #ddc7b7;border-left:0}}
@media(max-width:850px){.home-booking{padding-top:65px}.home-booking-shell{grid-template-columns:1fr;padding-bottom:55px}.home-booking-copy{text-align:left}.home-booking-copy>p{margin-left:0}.booking-direct{grid-template-columns:1fr 1fr}.booking-direct a+a{padding-left:22px;border-top:0;border-left:1px solid #ddc7b7}.home-booking-form{margin-top:15px}}
@media(max-width:550px){.home-booking{padding-top:48px}.home-booking-shell{gap:38px}.home-booking-copy h2{font-size:42px}.booking-direct{grid-template-columns:1fr}.booking-direct a+a{padding-left:0;border-top:1px solid #ddc7b7;border-left:0}.home-booking-form:before{display:none}.booking-progress{padding:16px 18px}.booking-step{min-height:0;padding:24px 19px}.booking-step-title strong{font-size:20px}}

/* Quick booking - polished responsive composition */
.home-booking{padding:76px 0;background:radial-gradient(circle at 92% 10%,rgba(196,139,97,.12),transparent 26%),#f5eee8}.home-booking-shell{grid-template-columns:minmax(360px,.78fr) minmax(540px,1.22fr);gap:0;max-width:1240px;padding-bottom:0;border:1px solid rgba(107,65,40,.14);background:#fff;box-shadow:0 30px 85px rgba(65,38,22,.12)}.home-booking-copy{align-self:stretch;display:flex;flex-direction:column;justify-content:center;min-width:0;padding:58px 54px;color:#fff;background:radial-gradient(circle at 0 0,rgba(218,160,117,.24),transparent 34%),linear-gradient(145deg,#332219,#65402c)}.booking-availability{align-self:flex-start;order:0;margin:0 0 27px;border-color:rgba(255,255,255,.24);color:#f6dfcf;background:rgba(255,255,255,.08);backdrop-filter:blur(6px)}.home-booking-copy>.eyebrow{display:block;order:1;margin:0 0 13px;color:#d9a57e}.home-booking-copy h2{order:2;margin:0 0 20px;color:#fff;font-size:clamp(45px,4.2vw,62px)}.home-booking-copy>p{order:3;margin:0;color:#eadfd7;font-size:15px}.booking-direct{order:4;width:100%;margin-top:32px;border-color:rgba(255,255,255,.18)}.booking-direct a{color:#fff}.booking-direct a+a{border-color:rgba(255,255,255,.18)}.booking-direct small{color:#d6a886}.booking-direct strong{color:#fff}.booking-assurance{order:5;margin-top:20px;color:#d7c7bd;line-height:1.5}.booking-assurance span{background:#bd7b4f}.home-booking-form{align-self:center;width:calc(100% - 64px);margin:32px;border-color:#e4d4c8;border-radius:14px;box-shadow:0 18px 50px rgba(61,35,20,.1)}.home-booking-form:before{display:none}.booking-progress{padding:19px 24px;border-radius:14px 14px 0 0}.booking-progress i{margin:0 13px}.booking-step{min-height:325px;padding:32px}.booking-step-title>small{border-radius:10px}.home-booking-form input,.home-booking-form select{border-radius:9px}.booking-actions .btn{border-radius:9px}.booking-actions{margin-top:auto}.booking-step.is-active{height:325px;grid-template-rows:auto auto 1fr}.booking-step.is-active .booking-actions{align-self:end}.booking-summary{align-self:start}
@media(max-width:1100px){.home-booking{padding:58px 24px}.home-booking-shell{grid-template-columns:minmax(320px,.85fr) minmax(470px,1.15fr)}.home-booking-copy{padding:48px 38px}.home-booking-copy h2{font-size:49px}.home-booking-form{width:calc(100% - 40px);margin:26px 20px}.booking-step{padding:28px}}
@media(max-width:860px){.home-booking{padding:48px 20px}.home-booking-shell{grid-template-columns:1fr;max-width:720px}.home-booking-copy{padding:48px}.home-booking-copy h2{max-width:590px;font-size:54px}.home-booking-copy>p{max-width:560px}.booking-direct{max-width:540px;grid-template-columns:1fr 1fr}.booking-direct a+a{padding-left:22px;border-top:0;border-left:1px solid rgba(255,255,255,.18)}.home-booking-form{width:calc(100% - 64px);margin:32px}.booking-step.is-active{height:auto;min-height:325px}}
@media(max-width:600px){.home-booking{padding:0;background:#fff}.home-booking-shell{border:0;box-shadow:none}.home-booking-copy{padding:44px 22px}.booking-availability{margin-bottom:22px;font-size:9px}.home-booking-copy h2{font-size:clamp(39px,12vw,48px)}.home-booking-copy>p{font-size:14px}.booking-direct{grid-template-columns:1fr;margin-top:26px}.booking-direct a{padding:15px 0}.booking-direct a+a{padding-left:0;border-top:1px solid rgba(255,255,255,.18);border-left:0}.home-booking-form{width:calc(100% - 28px);margin:20px 14px 30px;border-radius:12px}.booking-progress{padding:15px 14px}.booking-progress i{margin:0 6px}.booking-progress button{font-size:0}.booking-progress button span{width:28px;height:28px;font-size:10px}.booking-step{padding:22px 18px}.booking-step.is-active{min-height:350px}.booking-step-title>small{width:44px;height:44px}.booking-step-title strong{font-size:20px}.booking-step .grid-2{grid-template-columns:1fr;gap:13px}.booking-actions{width:100%}.booking-actions .btn{width:100%;min-height:50px}}
@media(max-width:380px){.home-booking-copy{padding:38px 18px}.home-booking-copy h2{font-size:38px}.home-booking-form{width:calc(100% - 20px);margin:16px 10px 26px}.booking-progress{padding:13px 10px}.booking-step{padding:20px 14px}.booking-step-title{gap:10px}}

/* Corporate trust pillars */
.trust-band{position:relative;z-index:5;padding:0 0 82px;background:linear-gradient(180deg,#f5eee8 0%,#faf6f2 100%)}.trust-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;max-width:1240px}.trust-item{position:relative;display:flex;flex-direction:column;min-height:245px;padding:28px 26px 25px;overflow:hidden;border:1px solid rgba(165,102,63,.16);background:rgba(255,255,255,.82);box-shadow:0 15px 42px rgba(66,39,23,.055);transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease}.trust-item:before{content:'';position:absolute;left:0;right:0;bottom:0;height:3px;background:linear-gradient(90deg,#754328,#c68a60);transform:scaleX(0);transform-origin:left;transition:transform .3s ease}.trust-item:after{content:'';position:absolute;right:-40px;top:-55px;width:130px;height:130px;border:1px solid rgba(165,102,63,.09);border-radius:50%;box-shadow:0 0 0 22px rgba(165,102,63,.025)}.trust-item:hover{z-index:2;transform:translateY(-8px);border-color:rgba(165,102,63,.35);box-shadow:0 25px 55px rgba(66,39,23,.12)}.trust-item:hover:before{transform:scaleX(1)}.trust-icon{position:relative;z-index:1;display:grid;place-items:center;width:52px;height:52px;margin-bottom:30px;border:1px solid #dbc3b2;border-radius:50%;color:#8d5232;background:#fbf5f0;transition:.3s}.trust-icon svg{width:24px;height:24px;fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}.trust-item:hover .trust-icon{color:#fff;border-color:#a5663f;background:#a5663f;transform:rotate(-4deg)}.trust-item>small{position:absolute;top:31px;right:25px;color:#c1a897;font-family:Georgia,serif;font-size:12px;letter-spacing:.08em}.trust-item>strong{margin-bottom:8px;color:#30231c;font-family:Georgia,'Times New Roman',serif;font-size:22px;font-weight:400;letter-spacing:-.015em}.trust-item>span{color:#806d61;font-size:13px;line-height:1.6}.trust-item:nth-child(2),.trust-item:nth-child(4){margin-top:18px}
@media(max-width:950px){.trust-band{padding:0 20px 64px}.trust-grid{grid-template-columns:repeat(2,1fr)}.trust-item:nth-child(2),.trust-item:nth-child(4){margin-top:0}.trust-item:nth-child(even){transform:translateY(12px)}.trust-item:nth-child(even):hover{transform:translateY(4px)}}
@media(max-width:600px){.trust-band{padding:12px 14px 52px;background:#fff}.trust-grid{grid-template-columns:1fr;gap:10px}.trust-item,.trust-item:nth-child(even){display:grid;grid-template-columns:52px 1fr;grid-template-rows:auto auto;column-gap:17px;min-height:0;padding:20px;transform:none}.trust-item:hover,.trust-item:nth-child(even):hover{transform:translateY(-3px)}.trust-icon{grid-row:1/3;margin:0}.trust-item>small{top:20px;right:20px}.trust-item>strong{align-self:end;margin:0;padding-right:35px;font-size:20px}.trust-item>span{grid-column:2;align-self:start}.trust-item:after{display:none}}

/* Trust band - restrained corporate treatment */
.trust-band{padding:0 0 82px;background:#f5eee8}.trust-grid{position:relative;display:grid;grid-template-columns:repeat(4,1fr);gap:0;max-width:1240px;padding:0;background:linear-gradient(120deg,#302119,#4a3022);box-shadow:0 30px 70px rgba(48,28,17,.16)}.trust-grid:before{content:'KLİNİK STANDARTLARIMIZ';position:absolute;left:30px;top:-30px;color:#8d5b3c;font-size:9px;font-weight:900;letter-spacing:.2em}.trust-item,.trust-item:nth-child(2),.trust-item:nth-child(4){position:relative;display:grid;grid-template-columns:34px 1fr;grid-template-rows:auto auto;column-gap:15px;align-content:center;min-height:170px;margin:0;padding:32px 27px;border:0;border-right:1px solid rgba(255,255,255,.12);background:transparent;box-shadow:none;transform:none;transition:background .25s}.trust-item:last-child{border-right:0}.trust-item:before{left:27px;right:27px;bottom:20px;height:1px;background:#bd7a50;transform:scaleX(0)}.trust-item:after{display:none}.trust-item:hover,.trust-item:nth-child(even):hover{transform:none;border-color:rgba(255,255,255,.12);background:rgba(255,255,255,.055);box-shadow:none}.trust-item:hover:before{transform:scaleX(1)}.trust-icon{grid-row:1/3;align-self:start;width:34px;height:34px;margin:0;border:0;border-radius:0;color:#d69a71;background:transparent}.trust-icon svg{width:25px;height:25px;stroke-width:1.35}.trust-item:hover .trust-icon{color:#efc5a8;border:0;background:transparent;transform:none}.trust-item>small{position:absolute;top:20px;right:20px;color:rgba(255,255,255,.34);font-family:inherit;font-size:9px;letter-spacing:.12em}.trust-item>strong{align-self:end;margin:0 0 6px;padding:0;color:#fff;font-family:inherit;font-size:16px;font-weight:700;letter-spacing:0}.trust-item>span{grid-column:2;align-self:start;color:#cdbdb3;font-size:11px;line-height:1.55}.trust-item:nth-child(even){transform:none}
@media(max-width:950px){.trust-band{padding:0 20px 64px}.trust-grid{grid-template-columns:repeat(2,1fr)}.trust-item{border-bottom:1px solid rgba(255,255,255,.12)}.trust-item:nth-child(2){border-right:0}.trust-item:nth-child(3),.trust-item:nth-child(4){border-bottom:0}.trust-item:nth-child(even),.trust-item:nth-child(even):hover{transform:none}}
@media(max-width:600px){.trust-band{padding:38px 14px 50px;background:#f5eee8}.trust-grid{grid-template-columns:1fr}.trust-grid:before{left:4px;top:-25px}.trust-item,.trust-item:nth-child(even){grid-template-columns:38px 1fr;min-height:112px;padding:23px 20px;border-right:0;border-bottom:1px solid rgba(255,255,255,.12)}.trust-item:nth-child(3){border-bottom:1px solid rgba(255,255,255,.12)}.trust-item:last-child{border-bottom:0}.trust-icon{grid-row:1/3;width:30px;height:30px}.trust-item>small{top:18px;right:18px}.trust-item>strong{font-size:16px}.trust-item>span{grid-column:2}.trust-item:hover,.trust-item:nth-child(even):hover{transform:none}}

/* Trust standards - bright premium panel */
.trust-band{padding:54px 0 92px;background:linear-gradient(180deg,#f5eee8 0%,#fff 100%);border:0}.trust-grid{position:relative;display:grid;grid-template-columns:repeat(4,1fr);gap:0;max-width:1240px;padding:0;border:1px solid #dfcdbf;background:#fff;box-shadow:0 24px 65px rgba(63,36,20,.1)}.trust-grid:before{content:'KLİNİK STANDARTLARIMIZ';left:0;top:-31px;color:#925b39;font-size:9px;letter-spacing:.2em}.trust-grid .trust-item,.trust-grid .trust-item:nth-child(2),.trust-grid .trust-item:nth-child(4){position:relative;display:grid;grid-template-columns:48px 1fr;grid-template-rows:auto auto;column-gap:18px;align-content:center;min-height:190px;margin:0;padding:32px 27px;overflow:hidden;border:0;border-right:1px solid #eadfd7;background:#fff;box-shadow:none;transform:none;transition:background .25s,transform .25s}.trust-grid .trust-item:last-child{border-right:0}.trust-grid .trust-item:before{content:'';position:absolute;left:0;right:auto;top:0;bottom:0;width:4px;height:auto;background:linear-gradient(180deg,#cc9065,#8d5232);transform:scaleY(0);transform-origin:bottom;transition:transform .3s}.trust-grid .trust-item:after{content:attr(data-empty);display:block;position:absolute;right:-34px;bottom:-55px;width:125px;height:125px;border:1px solid rgba(165,102,63,.07);border-radius:50%;box-shadow:0 0 0 20px rgba(165,102,63,.025);pointer-events:none}.trust-grid .trust-item:hover,.trust-grid .trust-item:nth-child(even):hover{z-index:2;transform:translateY(-6px);border-color:#eadfd7;background:#fffaf6;box-shadow:0 19px 45px rgba(71,42,25,.12)}.trust-grid .trust-item:hover:before{transform:scaleY(1)}.trust-grid .trust-icon,.trust-grid .trust-item:nth-child(even) .trust-icon{grid-row:1/3;align-self:center;display:grid;width:48px;height:48px;margin:0;padding:0;border:1px solid #d6b8a3;border-radius:12px;color:#9a5b36;background:linear-gradient(145deg,#fff,#f5e7dd);box-shadow:0 8px 18px rgba(117,67,40,.08);transform:none}.trust-grid .trust-icon svg{width:23px;height:23px;stroke-width:1.55}.trust-grid .trust-item:hover .trust-icon{color:#fff;border-color:#a5663f;background:linear-gradient(145deg,#bc7a4f,#875032);box-shadow:0 10px 20px rgba(117,67,40,.22);transform:none}.trust-grid .trust-item>small{position:absolute;top:18px;right:19px;color:#b69a88;font-size:9px;font-weight:800}.trust-grid .trust-item>strong{align-self:end;display:block;margin:0 0 7px;padding:0;color:#2d211b;font-family:inherit;font-size:17px;font-weight:800;line-height:1.2}.trust-grid .trust-item>span{grid-column:2;align-self:start;color:#806b5e;font-size:12px;line-height:1.5}
@media(max-width:950px){.trust-band{padding:52px 20px 70px}.trust-grid{grid-template-columns:repeat(2,1fr)}.trust-grid .trust-item:nth-child(2){border-right:0}.trust-grid .trust-item:nth-child(1),.trust-grid .trust-item:nth-child(2){border-bottom:1px solid #eadfd7}.trust-grid .trust-item:nth-child(3){border-right:1px solid #eadfd7}.trust-grid .trust-item:nth-child(even),.trust-grid .trust-item:nth-child(even):hover{transform:none}.trust-grid .trust-item:hover{transform:translateY(-4px)}}
@media(max-width:600px){.trust-band{padding:48px 14px 54px;background:#fff}.trust-grid{grid-template-columns:1fr}.trust-grid:before{left:2px;top:-27px}.trust-grid .trust-item,.trust-grid .trust-item:nth-child(even){grid-template-columns:44px 1fr;min-height:118px;padding:23px 20px;column-gap:15px;border-right:0;border-bottom:1px solid #eadfd7}.trust-grid .trust-item:nth-child(3){border-right:0;border-bottom:1px solid #eadfd7}.trust-grid .trust-item:last-child{border-bottom:0}.trust-grid .trust-icon,.trust-grid .trust-item:nth-child(even) .trust-icon{width:44px;height:44px}.trust-grid .trust-item:hover,.trust-grid .trust-item:nth-child(even):hover{transform:none}.trust-grid .trust-item>strong{font-size:16px}.trust-grid .trust-item>span{grid-column:2}}
.lang-switch{flex-wrap:wrap;max-width:230px}.lang-switch-link{min-width:42px}.lang-switch .lang-full{display:none}@media(max-width:900px){.lang-switch{max-width:none;display:grid!important;grid-template-columns:repeat(4,1fr);width:100%}.lang-switch-link{justify-content:center}}

/* Modern language selector */
.site-header .lang-switch{position:relative;display:flex;flex-wrap:nowrap;align-items:center;gap:3px;width:auto;max-width:none;margin-left:8px;padding:4px;border:1px solid rgba(117,67,40,.16);border-radius:999px;background:rgba(248,241,235,.82);box-shadow:inset 0 1px 0 rgba(255,255,255,.9),0 7px 20px rgba(72,43,27,.06);backdrop-filter:blur(10px)}.site-header .lang-switch-link{position:relative;display:grid;place-items:center;width:37px;min-width:37px;height:32px;padding:0!important;border:0!important;border-radius:999px;color:#806d61!important;background:transparent;font-size:10px;font-weight:900;letter-spacing:.08em;line-height:1;transition:color .2s,background .2s,box-shadow .2s,transform .2s}.site-header .lang-switch-link:hover{color:#754328!important;background:rgba(165,102,63,.1);transform:translateY(-1px)}.site-header .lang-switch-link.is-active{color:#fff!important;background:linear-gradient(145deg,#b9764b,#7d482d);box-shadow:0 6px 14px rgba(117,67,40,.24)}.site-header .lang-switch-link.is-active:after{content:'';position:absolute;left:50%;bottom:-7px;width:4px;height:4px;border-radius:50%;background:#a5663f;transform:translateX(-50%)}.site-header .lang-switch .lang-full{display:none}.site-header .lang-switch:before{content:'🌐';display:grid;place-items:center;width:27px;height:27px;margin-right:1px;color:#9a6849;font-size:13px;filter:grayscale(1) sepia(.35)}
@media(max-width:1120px) and (min-width:901px){.site-header .lang-switch{margin-left:2px;padding:3px}.site-header .lang-switch-link{width:32px;min-width:32px;height:30px}.site-header .lang-switch:before{display:none}}
@media(max-width:900px){.site-header .lang-switch{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr));gap:5px;width:100%;margin:14px 0 3px;padding:5px;border-radius:14px;background:#f7eee7}.site-header .lang-switch:before{display:none}.site-header .lang-switch-link{width:100%;min-width:0;height:39px;border-radius:10px}.site-header .lang-switch-link.is-active:after{display:none}}

/* Language selector conflict fix */
.site-header .lang-switch::before{content:none!important;display:none!important;transform:none!important}.site-header .lang-switch{position:relative;display:block;width:46px;height:42px;margin-left:10px;padding:4px;overflow:visible;border:1px solid #dfcfc3;border-radius:12px;background:#fff;box-shadow:0 8px 22px rgba(65,38,22,.08)}.site-header .lang-switch-link{position:absolute;z-index:40;left:4px;display:flex;width:36px;min-width:36px;height:32px;padding:0!important;opacity:0;visibility:hidden;transform:translateY(-5px);pointer-events:none}.site-header .lang-switch-link:nth-of-type(1){top:42px}.site-header .lang-switch-link:nth-of-type(2){top:77px}.site-header .lang-switch-link:nth-of-type(3){top:112px}.site-header .lang-switch-link:nth-of-type(4){top:147px}.site-header .lang-switch-link.is-active{z-index:42;top:4px!important;opacity:1;visibility:visible;transform:none;pointer-events:auto}.site-header .lang-switch-link.is-active:after{content:'';position:absolute;right:5px;bottom:4px;left:auto;width:4px;height:4px;background:#f2d7c4;transform:none}.site-header .lang-switch:hover,.site-header .lang-switch:focus-within{border-radius:12px 12px 0 0;border-color:#c49a7d;box-shadow:0 15px 30px rgba(65,38,22,.13)}.site-header .lang-switch:hover:after,.site-header .lang-switch:focus-within:after{content:'';position:absolute;z-index:38;top:37px;left:-1px;width:46px;height:146px;border:1px solid #dfcfc3;border-top:0;border-radius:0 0 12px 12px;background:#fff;box-shadow:0 15px 30px rgba(65,38,22,.13)}.site-header .lang-switch:hover .lang-switch-link,.site-header .lang-switch:focus-within .lang-switch-link{opacity:1;visibility:visible;transform:none;pointer-events:auto}.site-header .lang-switch:hover .lang-switch-link:not(.is-active),.site-header .lang-switch:focus-within .lang-switch-link:not(.is-active){color:#6f5c50!important;background:#fff}.site-header .lang-switch:hover .lang-switch-link:not(.is-active):hover,.site-header .lang-switch:focus-within .lang-switch-link:not(.is-active):hover{color:#754328!important;background:#f3e5db}.site-header .lang-switch .lang-full{display:none!important}
@media(max-width:900px){.site-header .lang-switch{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr));gap:5px;width:100%;height:auto;margin:14px 0 3px;padding:5px;border-radius:13px;overflow:hidden;background:#f7eee7;box-shadow:none}.site-header .lang-switch:hover,.site-header .lang-switch:focus-within{border-radius:13px;box-shadow:none}.site-header .lang-switch:after{content:none!important;display:none!important}.site-header .lang-switch-link,.site-header .lang-switch-link:nth-of-type(1),.site-header .lang-switch-link:nth-of-type(2),.site-header .lang-switch-link:nth-of-type(3),.site-header .lang-switch-link:nth-of-type(4),.site-header .lang-switch-link.is-active{position:relative;top:auto!important;left:auto;z-index:1;width:100%;min-width:0;height:39px;opacity:1;visibility:visible;transform:none;pointer-events:auto}.site-header .lang-switch-link:not(.is-active){color:#6f5c50!important;background:transparent}.site-header .lang-switch-link.is-active:after{display:none}}

/* Stable multilingual segmented selector */
.site-header .lang-switch,.site-header .lang-switch:hover,.site-header .lang-switch:focus-within{position:relative;display:grid!important;grid-template-columns:repeat(4,34px);gap:3px;width:auto;height:auto;margin-left:10px;padding:4px;overflow:hidden;border:1px solid #dfcfc3;border-radius:12px;background:#fffaf6;box-shadow:0 8px 22px rgba(65,38,22,.07)}.site-header .lang-switch::before,.site-header .lang-switch::after,.site-header .lang-switch:hover::after,.site-header .lang-switch:focus-within::after{content:none!important;display:none!important}.site-header .lang-switch .lang-switch-link,.site-header .lang-switch .lang-switch-link:nth-of-type(1),.site-header .lang-switch .lang-switch-link:nth-of-type(2),.site-header .lang-switch .lang-switch-link:nth-of-type(3),.site-header .lang-switch .lang-switch-link:nth-of-type(4),.site-header .lang-switch .lang-switch-link.is-active{position:relative!important;top:auto!important;right:auto!important;bottom:auto!important;left:auto!important;z-index:1;display:grid!important;place-items:center;width:34px;min-width:34px;height:32px;padding:0!important;overflow:hidden;border:0!important;border-radius:8px;opacity:1!important;visibility:visible!important;transform:none!important;pointer-events:auto!important;color:#806d61!important;background:transparent;box-shadow:none;font-size:10px;font-weight:900;letter-spacing:.06em;line-height:1}.site-header .lang-switch .lang-switch-link:hover{color:#754328!important;background:#f1e2d7;transform:none!important}.site-header .lang-switch .lang-switch-link.is-active{color:#fff!important;background:linear-gradient(145deg,#b9764b,#7d482d);box-shadow:0 5px 12px rgba(117,67,40,.22)}.site-header .lang-switch .lang-switch-link::after{content:none!important;display:none!important}.site-header .lang-switch .lang-full{display:none!important}
@media(max-width:1120px) and (min-width:901px){.site-header .lang-switch,.site-header .lang-switch:hover,.site-header .lang-switch:focus-within{grid-template-columns:repeat(4,30px);margin-left:4px;padding:3px}.site-header .lang-switch .lang-switch-link,.site-header .lang-switch .lang-switch-link.is-active{width:30px;min-width:30px;height:30px}}
@media(max-width:900px){.site-header .lang-switch,.site-header .lang-switch:hover,.site-header .lang-switch:focus-within{grid-template-columns:repeat(4,minmax(0,1fr));gap:5px;width:100%;margin:14px 0 3px;padding:5px;border-radius:13px;background:#f7eee7;box-shadow:none}.site-header .lang-switch .lang-switch-link,.site-header .lang-switch .lang-switch-link.is-active{width:100%;min-width:0;height:40px;border-radius:9px}}

/* Keep all four language options visible in long-language headers */
.site-header .nav{min-width:0}.site-header .nav>nav{min-width:0}.site-header .lang-switch,.site-header .lang-switch:hover,.site-header .lang-switch:focus-within{grid-template-columns:repeat(4,27px);flex:0 0 auto;gap:2px;margin-left:5px;padding:3px}.site-header .lang-switch .lang-switch-link,.site-header .lang-switch .lang-switch-link.is-active{width:27px;min-width:27px;height:30px;font-size:9px}.site-header .lang-switch-link span:first-child{display:block!important;white-space:nowrap}.site-header .lang-switch-link .lang-full{display:none!important}
@media(max-width:900px){.site-header .lang-switch,.site-header .lang-switch:hover,.site-header .lang-switch:focus-within{grid-template-columns:repeat(4,minmax(0,1fr));gap:5px;width:100%;margin:14px 0 3px;padding:5px}.site-header .lang-switch .lang-switch-link,.site-header .lang-switch .lang-switch-link.is-active{width:100%;min-width:0;height:40px;font-size:10px}}

/* International content resilience */
html[lang="de"],html[lang="ru"]{--i18n-scale:.92}html[lang="tr"],html[lang="en"]{--i18n-scale:1}
html[lang] body{overflow-wrap:break-word}html[lang] .btn,html[lang] button,html[lang] a{word-break:normal;hyphens:auto}html[lang] .btn{height:auto;min-height:46px;padding-top:11px;padding-bottom:11px;text-align:center;line-height:1.3;white-space:normal}
html[lang="de"] .site-header .nav>nav,html[lang="ru"] .site-header .nav>nav{gap:clamp(8px,1vw,15px)}html[lang="de"] .site-header .nav>nav>a,html[lang="de"] .nav-dropdown-trigger,html[lang="ru"] .site-header .nav>nav>a,html[lang="ru"] .nav-dropdown-trigger{font-size:12px;letter-spacing:-.01em;white-space:nowrap}html[lang="de"] .nav-cta,html[lang="ru"] .nav-cta{padding-left:14px!important;padding-right:14px!important}html[lang="de"] .nav-dropdown-menu,html[lang="ru"] .nav-dropdown-menu{min-width:240px}html[lang="de"] .nav-dropdown-menu a,html[lang="ru"] .nav-dropdown-menu a{white-space:normal;line-height:1.35}

/* Flag language dropdown */
.language-dropdown{position:relative;flex:0 0 auto;margin-left:8px;color:#59483e}
.language-dropdown summary{display:flex;align-items:center;gap:8px;min-width:72px;height:42px;padding:6px 10px;list-style:none;cursor:pointer;border:1px solid #dfcfc3;border-radius:12px;background:#fffaf6;box-shadow:0 8px 22px rgba(65,38,22,.07)}
.language-dropdown summary::-webkit-details-marker{display:none}
.language-dropdown summary img,.language-dropdown-menu img{display:block;width:26px;height:18px;object-fit:cover;border-radius:3px;box-shadow:0 0 0 1px rgba(45,27,17,.14)}
.language-current-name{display:none;font-size:12px;font-weight:700}
.language-chevron{width:7px;height:7px;margin:0 1px 4px 2px;border-right:2px solid #8a6c5b;border-bottom:2px solid #8a6c5b;transform:rotate(45deg);transition:transform .2s}
.language-dropdown[open] .language-chevron{margin-top:5px;transform:rotate(225deg)}
.language-dropdown-menu{position:absolute;z-index:80;top:calc(100% + 8px);right:0;display:grid;min-width:154px;padding:6px;border:1px solid #dfcfc3;border-radius:12px;background:#fff;box-shadow:0 18px 40px rgba(65,38,22,.16)}
.language-dropdown-menu a{display:flex!important;align-items:center;gap:10px;padding:9px 10px!important;border-radius:8px;color:#59483e!important;font-size:13px!important;font-weight:700!important;white-space:nowrap}
.language-dropdown-menu a:hover{background:#f5e9e0;color:#754328!important}
.language-dropdown-menu a.is-active{background:#a5663f;color:#fff!important}
html[dir="rtl"] body{text-align:right}
html[dir="rtl"] .language-dropdown{margin-right:8px;margin-left:0}
html[dir="rtl"] .language-dropdown-menu{right:auto;left:0}
/* Keep the Arabic hero copy in the physical right-hand empty area. */
html[lang="ar"] .hero-layout{direction:ltr}
html[lang="ar"] .hero-content{direction:rtl;text-align:right}
html[lang="ar"] .type-controls{direction:rtl}
@media(max-width:900px){.language-dropdown{width:100%;margin:14px 0 3px}.language-dropdown summary{width:100%;justify-content:center}.language-current-name{display:inline}.language-dropdown-menu{position:relative;top:5px;right:auto;left:auto;width:100%;box-shadow:none}.language-dropdown-menu a{justify-content:center}}
html[lang="de"] .hero h1,html[lang="ru"] .hero h1,html[lang="de"] .hero-title,html[lang="ru"] .hero-title{font-size:clamp(40px,5.2vw,72px);line-height:1.04;letter-spacing:-.035em}html[lang="de"] .hero-intro,html[lang="ru"] .hero-intro{max-width:620px;font-size:14px;line-height:1.65}html[lang="de"] .hero-typewriter-title,html[lang="ru"] .hero-typewriter-title{max-width:780px;font-size:clamp(28px,3.6vw,52px);line-height:1.08}html[lang="de"] .hero-typewriter-subtitle,html[lang="ru"] .hero-typewriter-subtitle{max-width:680px;line-height:1.55}
html[lang="de"] .quick-action-card,html[lang="ru"] .quick-action-card{min-height:132px}html[lang="de"] .quick-action-card strong,html[lang="ru"] .quick-action-card strong{font-size:14px;line-height:1.25}html[lang="de"] .quick-action-card p,html[lang="ru"] .quick-action-card p{font-size:11px;line-height:1.45}
html[lang="de"] .home-booking-copy h2,html[lang="ru"] .home-booking-copy h2{font-size:clamp(39px,3.7vw,54px);line-height:1.06}html[lang="de"] .booking-progress button,html[lang="ru"] .booking-progress button{font-size:9px;letter-spacing:0}html[lang="de"] .booking-step.is-active,html[lang="ru"] .booking-step.is-active{height:auto;min-height:350px;grid-template-rows:auto auto 1fr}html[lang="de"] .booking-step-title strong,html[lang="ru"] .booking-step-title strong{font-size:20px;line-height:1.25}html[lang="de"] .booking-actions,html[lang="ru"] .booking-actions{flex-wrap:wrap}html[lang="de"] .booking-actions .btn,html[lang="ru"] .booking-actions .btn{max-width:100%;padding-left:18px;padding-right:18px}
html[lang="de"] .trust-grid .trust-item,html[lang="ru"] .trust-grid .trust-item{min-height:205px;padding-left:22px;padding-right:22px;column-gap:14px}html[lang="de"] .trust-grid .trust-item>strong,html[lang="ru"] .trust-grid .trust-item>strong{font-size:15px;line-height:1.3}html[lang="de"] .trust-grid .trust-item>span,html[lang="ru"] .trust-grid .trust-item>span{font-size:11px;line-height:1.55}
html[lang="de"] .home-team-heading h2,html[lang="ru"] .home-team-heading h2{font-size:clamp(38px,4vw,56px)}html[lang="de"] .home-team-card-body,html[lang="ru"] .home-team-card-body{min-width:0}html[lang="de"] .home-team-card-body h3,html[lang="ru"] .home-team-card-body h3{font-size:clamp(26px,2.2vw,34px)}html[lang="de"] .home-team-card-body p,html[lang="ru"] .home-team-card-body p{-webkit-line-clamp:5;min-height:94px}html[lang="de"] .doctor-card-link,html[lang="ru"] .doctor-card-link{width:100%;justify-content:space-between}
html[lang="de"] .service-card h3,html[lang="ru"] .service-card h3,html[lang="de"] .blog-card h3,html[lang="ru"] .blog-card h3{font-size:clamp(19px,2vw,25px);line-height:1.2}html[lang="de"] .service-card p,html[lang="ru"] .service-card p,html[lang="de"] .blog-card p,html[lang="ru"] .blog-card p{line-height:1.6}html[lang="de"] .service-card .btn,html[lang="ru"] .service-card .btn{width:100%}
html[lang="de"] .page-hero h1,html[lang="ru"] .page-hero h1,html[lang="de"] .about-hero h1,html[lang="ru"] .about-hero h1,html[lang="de"] .gallery-hero h1,html[lang="ru"] .gallery-hero h1{font-size:clamp(39px,5vw,68px);line-height:1.05}html[lang="de"] .about-values-grid article,html[lang="ru"] .about-values-grid article{min-height:260px}html[lang="de"] .about-values-grid h3,html[lang="ru"] .about-values-grid h3{font-size:20px;line-height:1.3}
html[lang="de"] .footer-main,html[lang="ru"] .footer-main{grid-template-columns:1.15fr .7fr 1.15fr .9fr;gap:clamp(20px,3vw,48px)}html[lang="de"] .footer-column h3,html[lang="ru"] .footer-column h3{font-size:13px}html[lang="de"] .footer-links a,html[lang="ru"] .footer-links a,html[lang="de"] .footer-contact-list a,html[lang="ru"] .footer-contact-list a{font-size:12px;line-height:1.5}
@media(max-width:1180px){html[lang="de"] .site-header .nav>nav,html[lang="ru"] .site-header .nav>nav{gap:7px}html[lang="de"] .site-header .nav>nav>a,html[lang="de"] .nav-dropdown-trigger,html[lang="ru"] .site-header .nav>nav>a,html[lang="ru"] .nav-dropdown-trigger{font-size:11px}html[lang="de"] .brand,html[lang="ru"] .brand{max-width:190px}}
@media(max-width:1000px){html[lang="de"] .nav-toggle,html[lang="ru"] .nav-toggle{display:block}html[lang="de"] .site-header .nav>nav,html[lang="ru"] .site-header .nav>nav{position:absolute;top:100%;left:0;right:0;display:none;flex-direction:column;align-items:stretch;padding:18px;background:#fff;box-shadow:0 20px 40px rgba(50,30,18,.14)}html[lang="de"] .site-header .nav>nav.is-open,html[lang="ru"] .site-header .nav>nav.is-open{display:flex}html[lang="de"] .site-header .nav>nav>a,html[lang="de"] .nav-dropdown-trigger,html[lang="ru"] .site-header .nav>nav>a,html[lang="ru"] .nav-dropdown-trigger{font-size:14px;white-space:normal}}
@media(max-width:900px){html[lang="de"] .home-booking-copy h2,html[lang="ru"] .home-booking-copy h2{font-size:clamp(38px,8vw,52px)}html[lang="de"] .trust-grid .trust-item,html[lang="ru"] .trust-grid .trust-item{min-height:175px}html[lang="de"] .footer-main,html[lang="ru"] .footer-main{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){html[lang="de"] .hero h1,html[lang="ru"] .hero h1,html[lang="de"] .hero-title,html[lang="ru"] .hero-title{font-size:clamp(34px,10vw,46px)}html[lang="de"] .hero-typewriter-title,html[lang="ru"] .hero-typewriter-title{font-size:clamp(25px,8vw,36px)}html[lang="de"] .booking-progress button,html[lang="ru"] .booking-progress button{font-size:0}html[lang="de"] .booking-step.is-active,html[lang="ru"] .booking-step.is-active{min-height:0}html[lang="de"] .trust-grid .trust-item,html[lang="ru"] .trust-grid .trust-item{min-height:120px}html[lang="de"] .home-team-card-body p,html[lang="ru"] .home-team-card-body p{min-height:0;-webkit-line-clamp:6}html[lang="de"] .footer-main,html[lang="ru"] .footer-main{grid-template-columns:1fr}}

/* Long-language topbar */
html[lang="de"] .topbar,html[lang="ru"] .topbar{min-height:42px}html[lang="de"] .topbar-inner,html[lang="ru"] .topbar-inner{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:18px;align-items:center;min-height:42px;padding-top:5px;padding-bottom:5px}html[lang="de"] .topbar-meta,html[lang="ru"] .topbar-meta{display:flex;min-width:0;gap:8px;overflow:hidden;white-space:nowrap}html[lang="de"] .topbar-item,html[lang="ru"] .topbar-item{flex:0 0 auto;min-width:0;font-size:10px}html[lang="de"] .topbar-item:last-child,html[lang="ru"] .topbar-item:last-child{flex:1 1 auto;overflow:hidden}html[lang="de"] .topbar-item:last-child>span,html[lang="ru"] .topbar-item:last-child>span{display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}html[lang="de"] .topbar-social,html[lang="ru"] .topbar-social{display:flex;flex:0 0 auto;gap:6px;align-items:center;justify-content:flex-end;white-space:nowrap}html[lang="de"] .topbar-social-link,html[lang="ru"] .topbar-social-link{flex:0 0 auto}
@media(max-width:1050px){html[lang="de"] .topbar-item:last-child,html[lang="ru"] .topbar-item:last-child{display:none}}
@media(max-width:760px){html[lang="de"] .topbar-inner,html[lang="ru"] .topbar-inner{display:flex;justify-content:space-between;gap:10px}html[lang="de"] .topbar-meta,html[lang="ru"] .topbar-meta{gap:5px}html[lang="de"] .topbar-item:nth-child(3),html[lang="ru"] .topbar-item:nth-child(3){display:none}html[lang="de"] .topbar-social,html[lang="ru"] .topbar-social{display:none}}
@media(max-width:520px){html[lang="de"] .topbar-item:first-child,html[lang="ru"] .topbar-item:first-child{display:none}html[lang="de"] .topbar-meta,html[lang="ru"] .topbar-meta{width:100%;justify-content:center}html[lang="de"] .topbar-item:nth-child(2),html[lang="ru"] .topbar-item:nth-child(2){display:inline-flex!important}}

/* Booking steps - content-driven height in every language */
.home-booking-shell{align-items:stretch}.home-booking-copy{height:auto}.home-booking-form{align-self:stretch;display:flex;min-width:0;flex-direction:column;overflow:hidden}.booking-progress{display:grid;grid-template-columns:minmax(82px,auto) minmax(25px,1fr) minmax(70px,auto) minmax(25px,1fr) minmax(70px,auto);width:100%;min-width:0}.booking-progress button{min-width:0;line-height:1.25;text-align:left;white-space:normal}.booking-progress button span{flex:0 0 auto}.booking-progress i{width:auto;min-width:12px}.booking-step,.booking-step.is-active,html[lang="de"] .booking-step.is-active,html[lang="ru"] .booking-step.is-active{height:auto!important;min-height:0!important}.booking-step.is-active{display:flex;flex:1 1 auto;flex-direction:column;gap:17px;animation:booking-reveal .25s ease}.booking-step>.grid-2{flex:0 0 auto}.booking-step>label{flex:0 0 auto}.booking-step .booking-actions{display:flex;flex:0 0 auto;flex-wrap:wrap;justify-content:flex-end;width:100%;margin-top:auto;padding-top:2px}.booking-step .booking-actions .btn{max-width:100%;min-width:0}.home-booking-form input,.home-booking-form select{max-width:100%}.home-booking-form select{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.booking-summary{flex:0 0 auto}
@media(max-width:700px){.booking-progress{grid-template-columns:auto 1fr auto 1fr auto}.booking-progress button{font-size:0!important}.booking-progress button span{font-size:10px!important}.booking-step .booking-actions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}.booking-step .booking-actions:has(:only-child){grid-template-columns:1fr}.booking-step .booking-actions .btn{width:100%}}
@media(max-width:480px){.booking-progress{padding-left:12px;padding-right:12px}.booking-progress i{margin-left:5px;margin-right:5px}.booking-step,.booking-step.is-active{padding:20px 15px}.booking-step-title{align-items:flex-start}.booking-step-title>small{flex:0 0 44px}.booking-step-title>div{min-width:0}.booking-step-title strong{overflow-wrap:anywhere}.booking-step .grid-2{grid-template-columns:1fr}.booking-step .booking-actions{grid-template-columns:1fr}.home-booking-form select{font-size:14px}}

/* Language-safe equal-height cards */
.service-grid{align-items:stretch;grid-auto-rows:1fr}.service-grid .service-card{display:flex;height:100%;min-width:0;flex-direction:column}.service-grid .service-card>.service-card-media,.service-grid .service-card>img{flex:0 0 auto}.home-services-section .service-card>div:last-child,.treatments-list-section .service-card>div{display:flex;flex:1 1 auto;width:100%;min-height:0;flex-direction:column}.home-services-section .service-card h3,.treatments-list-section .service-card h3{min-height:2.5em;line-height:1.25}.home-services-section .service-card p,.treatments-list-section .service-card p{flex:1 1 auto}.home-services-section .service-card a,.treatments-list-section .service-card a{flex:0 0 auto;margin-top:auto}
html[lang="de"] .home-services-section .service-card h3,html[lang="ru"] .home-services-section .service-card h3,html[lang="de"] .treatments-list-section .service-card h3,html[lang="ru"] .treatments-list-section .service-card h3{min-height:3.75em;font-size:20px;line-height:1.25}html[lang="de"] .home-services-section .service-card>div:last-child,html[lang="ru"] .home-services-section .service-card>div:last-child{min-height:315px}html[lang="de"] .treatments-list-section .service-card>div,html[lang="ru"] .treatments-list-section .service-card>div{min-height:310px}
.post-grid,.blog-grid{align-items:stretch;grid-auto-rows:1fr}.post-grid>article,.blog-grid>article,.blog-card{display:flex;height:100%;min-width:0;flex-direction:column}.post-grid>article>div:last-child,.blog-card>div:last-child{display:flex;flex:1 1 auto;flex-direction:column}.post-grid h3,.blog-card h3{min-height:2.5em}.post-grid p,.blog-card p{flex:1 1 auto}.post-grid a,.blog-card a{margin-top:auto}
.team-grid,.home-team-grid{align-items:stretch;grid-auto-rows:1fr}.team-grid .team-card,.home-team-grid .home-team-card{height:100%;min-width:0}.team-card>div:last-child,.home-team-card-body{display:flex;flex:1 1 auto;flex-direction:column}.team-card .doctor-card-link,.home-team-card .doctor-card-link{margin-top:auto}
@media(max-width:900px){.home-services-section .service-card h3,.treatments-list-section .service-card h3,html[lang="de"] .home-services-section .service-card h3,html[lang="ru"] .home-services-section .service-card h3,html[lang="de"] .treatments-list-section .service-card h3,html[lang="ru"] .treatments-list-section .service-card h3{min-height:0}.home-services-section .service-card>div:last-child,.treatments-list-section .service-card>div,html[lang="de"] .home-services-section .service-card>div:last-child,html[lang="ru"] .home-services-section .service-card>div:last-child,html[lang="de"] .treatments-list-section .service-card>div,html[lang="ru"] .treatments-list-section .service-card>div{min-height:0}}
@media(min-width:901px){html[lang="de"] .service-grid,html[lang="ru"] .service-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}

/* Home team - modern clinical roster */
.home-team-section{padding:92px 0 105px;background:linear-gradient(180deg,#faf6f2,#f5ede7)}.home-team-section::before{display:none}.home-team-heading{grid-template-columns:minmax(0,1fr) minmax(280px,390px);gap:70px;align-items:end;max-width:1180px;margin-bottom:46px}.home-team-heading h2{max-width:700px;font-size:clamp(40px,4.2vw,58px);line-height:1.04}.home-team-intro{padding:0 0 2px 26px}.home-team-intro p{font-size:14px;line-height:1.7}.home-team-grid{display:grid;grid-template-columns:1fr;gap:12px;max-width:1180px}.home-team-card{position:relative;display:grid;grid-template-columns:230px minmax(0,1fr) 185px;align-items:stretch;min-height:230px;overflow:hidden;border:1px solid #e2d2c6;border-radius:4px;background:#fff;box-shadow:0 13px 35px rgba(65,38,22,.06);transition:transform .25s,border-color .25s,box-shadow .25s}.home-team-card:hover{transform:translateX(6px);border-color:#c9a187;box-shadow:0 20px 48px rgba(65,38,22,.11)}.home-team-card:nth-child(2){margin-left:70px}.home-team-photo,.home-team-card .home-team-photo{position:relative;width:230px;height:230px;min-height:230px;overflow:hidden;background:linear-gradient(145deg,#6f4b39,#b58d73)}.home-team-photo:before{inset:10px;border-width:1px}.home-team-photo::after{background:linear-gradient(180deg,transparent 50%,rgba(35,20,13,.38))}.home-team-photo img{width:100%;height:100%;object-fit:cover;object-position:center 20%;filter:saturate(.68) contrast(1.02)}.home-team-photo>span{left:18px;bottom:15px;color:#fff;font-family:inherit;font-size:10px;font-weight:900}.home-team-card-body{display:grid!important;grid-template-columns:minmax(0,1fr);align-content:center;min-height:0;padding:32px 38px}.home-team-card-body:before{content:'UZMAN KADRO';margin:0 0 17px;color:#ae7451;font-size:9px;letter-spacing:.18em}.home-team-card-body p{order:4;display:-webkit-box;max-width:570px;min-height:0;margin:17px 0 0;color:#7c685c;font-size:12px;font-weight:500;line-height:1.65;letter-spacing:0;text-transform:none;-webkit-box-orient:vertical;-webkit-line-clamp:2}.home-team-card-body h3{order:2;margin:0 0 8px;font-family:Georgia,'Times New Roman',serif;font-size:clamp(29px,2.7vw,39px);font-weight:400;line-height:1.05}.home-team-card-body>span{order:3;margin:0;color:#9a6040;font-size:10px;font-weight:900;letter-spacing:.09em;text-transform:uppercase}.home-team-card-body .doctor-card-link{position:absolute;z-index:4;top:50%;right:30px;display:flex;justify-content:center;width:145px;min-height:48px;margin:0;padding:0 14px;border:1px solid #d5b8a4;border-radius:99px;color:#754328!important;background:#fffaf6;box-shadow:none;font-size:10px;letter-spacing:.04em;transform:translateY(-50%)}.home-team-card-body .doctor-card-link:before{display:none}.home-team-card-body .doctor-card-link:hover{color:#fff!important;background:#8e5433;transform:translateY(-50%);box-shadow:0 10px 23px rgba(117,67,40,.2)}.home-team-card-body .doctor-card-link::after{inset:-1000px}.home-team-card-body .doctor-card-link span{font-size:16px}.home-team-card:after{content:'';position:absolute;top:0;right:0;width:4px;height:100%;background:linear-gradient(180deg,#c98b61,#754328);transform:scaleY(0);transform-origin:bottom;transition:transform .3s}.home-team-card:hover:after{transform:scaleY(1)}
html[lang="de"] .home-team-card-body p,html[lang="ru"] .home-team-card-body p{min-height:0;-webkit-line-clamp:2}html[lang="de"] .home-team-card-body h3,html[lang="ru"] .home-team-card-body h3{font-size:clamp(27px,2.4vw,36px)}html[lang="de"] .home-team-card-body .doctor-card-link,html[lang="ru"] .home-team-card-body .doctor-card-link{width:160px;right:23px;padding:0 11px;line-height:1.2}
@media(max-width:1000px){.home-team-heading{gap:38px}.home-team-card,.home-team-card:nth-child(2){grid-template-columns:190px minmax(0,1fr) 155px;margin-left:0}.home-team-photo,.home-team-card .home-team-photo{width:190px;height:220px;min-height:220px}.home-team-card-body{padding:28px}.home-team-card-body .doctor-card-link{right:20px;width:130px}}
@media(max-width:760px){.home-team-section{padding:65px 0 75px}.home-team-heading{grid-template-columns:1fr;gap:22px}.home-team-heading h2{font-size:41px}.home-team-card,.home-team-card:nth-child(2){grid-template-columns:135px minmax(0,1fr);min-height:190px}.home-team-photo,.home-team-card .home-team-photo{width:135px;height:100%;min-height:190px}.home-team-card-body{padding:24px 22px}.home-team-card-body:before{margin-bottom:12px}.home-team-card-body h3{font-size:27px}.home-team-card-body p{margin-top:12px;-webkit-line-clamp:2}.home-team-card-body .doctor-card-link{position:relative;top:auto;right:auto;order:5;justify-content:flex-start;width:max-content;min-height:auto;margin-top:15px;padding:0 0 4px;border:0;border-bottom:1px solid #b6764d;border-radius:0;background:transparent;transform:none}.home-team-card-body .doctor-card-link:hover{color:#754328!important;background:transparent;transform:none;box-shadow:none}}
@media(max-width:520px){.home-team-heading h2{font-size:36px}.home-team-card,.home-team-card:nth-child(2){grid-template-columns:1fr}.home-team-photo,.home-team-card .home-team-photo{width:100%;height:250px;min-height:250px}.home-team-card-body{padding:25px}.home-team-card-body h3{font-size:30px}.home-team-card-body p{font-size:12px;-webkit-line-clamp:3}}

/* Footer social brand icons */
.footer-socials a{display:grid;place-items:center}.footer-socials a svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:1.65;stroke-linecap:round;stroke-linejoin:round}.footer-socials a svg path:not([fill]){fill:none}.footer-socials a svg .social-dot{fill:currentColor;stroke:none}.footer-socials a:hover svg{transform:scale(1.08)}.footer-socials a svg{transition:transform .2s}

/* Localized labels generated by CSS */
html[lang="tr"] .home-team-card-body:before{content:'UZMAN KADRO'}html[lang="en"] .home-team-card-body:before{content:'CLINICAL TEAM'}html[lang="de"] .home-team-card-body:before{content:'KLINISCHES TEAM'}html[lang="ru"] .home-team-card-body:before{content:'КОМАНДА ВРАЧЕЙ'}
html[lang="ar"] .home-team-heading{direction:rtl}
html[lang="ar"] .home-team-intro{padding-right:26px;padding-left:0;border-right:1px solid #bd7d52;border-left:0}
html[lang="ar"] .home-team-intro a span{transform:scaleX(-1)}
html[lang="ar"] .home-team-card-body{padding-right:38px;padding-left:205px;text-align:right}
html[lang="ar"] .home-team-card-body:before{content:'الفريق الطبي';letter-spacing:0}
html[lang="ar"] .home-team-card-body .doctor-card-link{right:auto;left:30px;line-height:1.45;letter-spacing:0}
html[lang="ar"] .home-team-card-body .doctor-card-link span{transform:scaleX(-1)}
html[lang="ar"] .home-team-card:after{right:auto;left:0}
@media(max-width:1000px){html[lang="ar"] .home-team-card-body{padding-right:28px;padding-left:175px}html[lang="ar"] .home-team-card-body .doctor-card-link{right:auto;left:20px}}
@media(max-width:760px){html[lang="ar"] .home-team-intro{padding-right:20px;padding-left:0}html[lang="ar"] .home-team-card-body{padding:24px 22px}html[lang="ar"] .home-team-card-body .doctor-card-link{right:auto;left:auto}}
@media(max-width:520px){html[lang="ar"] .home-team-card-body{padding:25px}}
html[lang="ar"] .home-team-card-body h3,
html[lang="ar"] .section-team .team-card h3,
html[lang="ar"] .doctor-profile-intro h1{overflow-wrap:anywhere;word-break:normal}
html[lang="ar"] .home-team-card-body p,
html[lang="ar"] .section-team .team-focus{letter-spacing:0;line-height:1.8}
html[lang="ar"] .section-team .team-card{text-align:right}
html[lang="ar"] .section-team .team-card__badge{right:32px;left:auto;letter-spacing:0}
html[lang="ar"] .section-team .team-role{letter-spacing:0}
html[lang="ar"] .section-team .team-tags{justify-content:flex-start}
html[lang="ar"] .section-team .doctor-card-link{white-space:normal;line-height:1.45}
html[lang="ar"] .doctor-profile-intro blockquote{padding-right:20px;padding-left:0;border-right:3px solid #a5663f;border-left:0}
html[lang="ar"] .doctor-resume-card>span{right:auto;left:24px}
html[lang="ar"] .doctor-resume-card h3{margin-right:0;margin-left:60px;text-align:right}
html[lang="ar"] .doctor-resume-card li{padding-right:28px;padding-left:0;text-align:right}
html[lang="ar"] .doctor-resume-card li::before{right:3px;left:auto}
html[lang="ar"] .doctor-resume-card li:not(:last-child)::after{right:8px;left:auto}
html[lang="ar"] .doctor-profile-cta .container{text-align:right}
@media(max-width:520px){html[lang="ar"] .doctor-resume-card li{padding-right:25px;padding-left:0}}
@media(max-width:650px){html[lang="ar"] .section-team .team-card__badge{right:26px;left:auto}}
/* Current page and hover states: button-like, without floating marks that collide with translated labels. */
.site-header .nav>nav{gap:clamp(7px,1.1vw,16px)}
.site-header .nav>nav>a:not(.nav-cta),.site-header .nav-dropdown-trigger{position:relative;display:inline-flex;align-items:center;justify-content:center;min-height:42px;padding:0 13px;border-radius:8px;transition:color .2s ease,background .2s ease,box-shadow .2s ease}
.site-header .nav>nav>a:not(.nav-cta):hover,.site-header .nav-dropdown-trigger:hover,.site-header .nav>nav>a:not(.nav-cta).is-current,.site-header .nav-dropdown-trigger.is-current{color:#fff!important;background:linear-gradient(135deg,#754328,#b9794e)!important;border-color:rgba(117,67,40,.2)!important;box-shadow:0 10px 24px rgba(117,67,40,.24),inset 0 1px 0 rgba(255,255,255,.18)!important}
.site-header .nav>nav>a:not(.nav-cta).is-current,.site-header .nav-dropdown-trigger.is-current{box-shadow:0 11px 26px rgba(117,67,40,.28),0 0 0 2px rgba(185,121,78,.14),inset 0 1px 0 rgba(255,255,255,.18)!important}
.site-header .nav>nav>a:not(.nav-cta).is-current::before,.site-header .nav-dropdown-trigger.is-current::before,.site-header .nav>nav>a:not(.nav-cta).is-current::after,.site-header .nav-dropdown-trigger.is-current::after{content:none!important;display:none!important}
.site-header .nav-cta:hover,.site-header .nav-cta.is-current{color:#fff!important;background:linear-gradient(135deg,#754328,#b9794e);box-shadow:0 10px 24px rgba(117,67,40,.25),0 0 0 2px rgba(165,102,63,.12)}
@media(max-width:900px){.site-header .nav>nav>a:not(.nav-cta),.site-header .nav-dropdown-trigger{justify-content:flex-start;width:100%;padding-inline:16px!important}.site-header .nav-cta.is-current{box-shadow:0 7px 16px rgba(117,67,40,.16),0 0 0 2px rgba(165,102,63,.11)}}
.treatment-path .treatment-number{position:static!important;display:inline-flex!important;align-items:center;justify-content:center;width:42px;height:42px;margin:0 0 15px;border-radius:50%;color:#8f5939;background:#f2e3d8;font-size:13px;line-height:1}
.treatment-path h2{max-width:none}
html[dir="rtl"] .treatment-path ul li{padding-right:24px;padding-left:0}
html[dir="rtl"] .treatment-path ul li::before{right:0;left:auto}
html[dir="rtl"] .treatment-method-grid article{padding-right:27px;padding-left:65px}
html[dir="rtl"] .treatment-method-grid article>span{right:auto;left:20px}
html[dir="rtl"] .treatment-method-grid h3{max-width:100%}

/* Team directory - simplified profile cards */
.section-team{background:#faf6f2}.section-team .section-head{max-width:760px;margin-bottom:38px}.section-team .team-grid--corporate{align-items:stretch;gap:22px}.section-team .team-card{display:flex;height:100%;min-width:0;flex-direction:column;padding:20px;border:1px solid #e3d4c9;border-radius:6px;background:#fff;box-shadow:0 14px 38px rgba(66,39,23,.07)}.section-team .team-card:hover{transform:translateY(-5px);border-color:#c9a388;box-shadow:0 22px 48px rgba(66,39,23,.12)}.section-team .team-card::after{display:none}.section-team .team-card__badge{position:absolute;z-index:4;top:32px;left:32px;margin:0;padding:7px 12px;border:1px solid rgba(255,255,255,.55);color:#fff;background:rgba(52,31,20,.65);backdrop-filter:blur(8px)}.section-team .team-portrait-wrap{height:225px;margin:0 0 22px;border:0;border-radius:3px;box-shadow:none}.section-team .team-portrait-wrap::after{background:linear-gradient(180deg,transparent 55%,rgba(42,25,16,.28))}.section-team .team-portrait{object-position:center 22%;transform:none}.section-team .team-card:hover .team-portrait{transform:scale(1.035)}.section-team .team-card h3{margin:0 0 6px;font-family:Georgia,'Times New Roman',serif;font-size:30px;font-weight:400;line-height:1.08}.section-team .team-role{margin:0 0 17px;color:#9a5b36;font-size:10px;font-weight:900;letter-spacing:.1em;text-transform:uppercase}.section-team .team-focus{display:-webkit-box;min-height:52px;margin:0 0 18px;padding:0;border:0;overflow:hidden;color:#75645a;font-size:12px;font-weight:500;line-height:1.65;-webkit-box-orient:vertical;-webkit-line-clamp:2}.section-team .team-tags{gap:6px;margin-bottom:22px}.section-team .team-tags li{padding:6px 9px;border-color:#e2cfc1;color:#75523e;background:#fbf5f0;font-size:10px}.section-team .doctor-card-link{min-height:47px;margin-top:auto;border-radius:4px;animation:none}.section-team .doctor-card-link::before{display:none}
.section-team .team-directory-grid{margin-inline:auto}
@media(max-width:900px){.section-team .team-grid--corporate{grid-template-columns:repeat(2,minmax(0,1fr))}.section-team .team-portrait-wrap{height:210px}}
@media(max-width:650px){.section-team .team-grid--corporate{grid-template-columns:1fr}.section-team .team-card{padding:15px}.section-team .team-card__badge{top:26px;left:26px}.section-team .team-portrait-wrap{height:245px}.section-team .team-focus{min-height:0}.section-team .team-card h3{font-size:28px}}

.floating-contact-actions{position:fixed;right:24px;bottom:24px;z-index:50;display:grid;gap:10px;justify-items:end}.floating-contact{display:flex;align-items:center;gap:12px;min-height:64px;padding:8px 18px 8px 8px;border:1px solid rgba(255,255,255,.22);border-radius:18px;color:#fff;background:linear-gradient(145deg,#276f54,#174d3b);box-shadow:0 16px 38px rgba(25,66,51,.28),inset 0 1px rgba(255,255,255,.14);font-weight:700;transition:transform .22s ease,box-shadow .22s ease}.floating-contact:hover{transform:translateY(-4px);box-shadow:0 22px 44px rgba(25,66,51,.35),inset 0 1px rgba(255,255,255,.14)}.floating-contact--phone{background:linear-gradient(145deg,#8f5533,#5d3320);box-shadow:0 16px 38px rgba(93,51,32,.25),inset 0 1px rgba(255,255,255,.14)}.floating-contact--phone:hover{box-shadow:0 22px 44px rgba(93,51,32,.34),inset 0 1px rgba(255,255,255,.14)}.floating-contact-icon{position:relative;display:grid;place-items:center;width:48px;height:48px;flex:0 0 48px;border-radius:14px;color:#fff;background:#25b96b;box-shadow:inset 0 0 0 1px rgba(255,255,255,.2)}.floating-contact--phone .floating-contact-icon{background:#d18a57}.floating-contact-icon svg{width:29px;height:29px}.floating-contact-icon i{position:absolute;right:-2px;top:-2px;width:11px;height:11px;border:2px solid rgba(25,45,35,.85);border-radius:50%;background:#83e7a6}.floating-contact--phone .floating-contact-icon i{background:#ffd4a8}.floating-contact-copy{display:grid;line-height:1.2}.floating-contact-copy small{margin-bottom:3px;color:#f0d2bf;font-size:10px;font-weight:700;letter-spacing:.08em;text-transform:uppercase}.floating-contact--whatsapp .floating-contact-copy small{color:#b9d8cc}.floating-contact-copy strong{color:#fff;font-size:14px;white-space:nowrap}@media(max-width:600px){.floating-contact-actions{right:16px;bottom:16px;display:flex;gap:8px}.floating-contact{min-height:58px;padding:7px;border-radius:17px}.floating-contact-icon{width:44px;height:44px;flex-basis:44px;border-radius:12px}.floating-contact-copy{display:none}}

.live-chat-widget {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 70;
  font-family: inherit;
}

.live-chat-toggle {
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #123c4a, #1b6a73);
  color: #fff;
  box-shadow: 0 18px 36px rgba(18, 60, 74, 0.24);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  cursor: pointer;
}

.live-chat-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #61f5b4;
  box-shadow: 0 0 0 6px rgba(97, 245, 180, 0.18);
}

.live-chat-panel {
  position: absolute;
  left: 0;
  bottom: 62px;
  width: min(360px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid rgba(18, 60, 74, 0.1);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(15, 36, 45, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transition: opacity .2s ease, transform .2s ease;
}

.live-chat-widget.is-open .live-chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.live-chat-head {
  background: linear-gradient(135deg, #0f3440, #1d777b);
  color: #fff;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.live-chat-head strong,
.live-chat-head span { display: block; }
.live-chat-head span { margin-top: 4px; font-size: .86rem; opacity: .82; }

.live-chat-close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.14);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.live-chat-body {
  height: 290px;
  min-height: 80px;
  flex: 1 1 290px;
  overflow-y: auto;
  padding: 16px;
  background: linear-gradient(180deg, #f6fbfb, #fff);
}

.live-chat-welcome { color: #29424a; font-size: .95rem; margin-bottom: 12px; }

.live-chat-message {
  width: fit-content;
  max-width: 86%;
  margin: 0 0 10px;
  padding: 11px 13px;
  border-radius: 16px;
  font-size: .92rem;
  line-height: 1.45;
}

.live-chat-message p { margin: 0; }
.live-chat-message.customer { margin-left: auto; background: #173f4d; color: #fff; border-bottom-right-radius: 5px; }
.live-chat-message.admin,
.live-chat-message.system { margin-right: auto; background: #eef7f5; color: #163842; border-bottom-left-radius: 5px; }

.live-chat-whatsapp {
  display: inline-flex;
  margin-top: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.live-chat-form { padding: 14px; border-top: 1px solid rgba(18, 60, 74, 0.08); background: #fff; }
.live-chat-identity { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.live-chat-identity.is-hidden { display: none; }

.live-chat-identity input,
.live-chat-compose textarea {
  width: 100%;
  border: 1px solid rgba(18, 60, 74, 0.14);
  border-radius: 14px;
  padding: 11px 12px;
  font: inherit;
  outline: none;
}

.live-chat-compose { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: end; }
.live-chat-compose textarea { resize: none; }

.live-chat-compose button {
  border: 0;
  border-radius: 14px;
  padding: 13px 15px;
  background: #d8a75b;
  color: #142f38;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 680px) {
  .live-chat-widget { left: 16px; bottom: 96px; }
  .live-chat-panel { bottom: 58px; }
  .live-chat-identity,
  .live-chat-compose { grid-template-columns: 1fr; }
}
.live-chat-sender-name {
  display: block;
  margin-bottom: 5px;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .02em;
  opacity: .72;
}

/* Unified quick-contact dock */
.contact-dock {
  position: fixed;
  top: 0;
  right: 22px;
  bottom: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  width: 70px;
  pointer-events: none;
}

.contact-dock-shell {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: linear-gradient(180deg, #111c2d, #0d1725);
  box-shadow: 0 20px 50px rgba(12,24,40,.28), inset 0 1px rgba(255,255,255,.06);
  pointer-events: auto;
}

.contact-dock .live-chat-widget { position: static; font-family: inherit; }

.contact-dock-item {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  min-height: 0;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 12px;
  color: #fff;
  background: #29364a;
  box-shadow: inset 0 1px rgba(255,255,255,.06);
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.contact-dock-item:hover,
.contact-dock-item:focus-visible {
  color: #fff;
  background: #35455e;
  box-shadow: 0 8px 20px rgba(0,0,0,.2), inset 0 1px rgba(255,255,255,.08);
  transform: translateX(-2px);
  outline: none;
}

.contact-dock-item--whatsapp { background: #17a966; }
.contact-dock-item--whatsapp:hover,
.contact-dock-item--whatsapp:focus-visible { background: #20bd73; }
.contact-dock-item--chat {
  background: linear-gradient(145deg, #247f80, #155960);
  box-shadow: inset 0 1px rgba(255,255,255,.15), 0 6px 16px rgba(21,89,96,.2);
}
.contact-dock-item--chat:hover,
.contact-dock-item--chat:focus-visible,
.live-chat-widget.is-open .contact-dock-item--chat {
  background: linear-gradient(145deg, #2d9390, #196a70);
  box-shadow: 0 8px 22px rgba(19,101,105,.32), inset 0 1px rgba(255,255,255,.18);
}
.contact-dock-item--telegram:hover,
.contact-dock-item--telegram:focus-visible { background: #208cc5; }
.contact-dock-item--instagram:hover,
.contact-dock-item--instagram:focus-visible { background: #b54179; }
.contact-dock-item--map:hover,
.contact-dock-item--map:focus-visible { background: #32745b; }

.contact-dock-icon { position: relative; display: grid; width: 24px; height: 24px; place-items: center; }
.contact-dock-icon svg { display: block; width: 23px; height: 23px; margin: auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-dock-item--whatsapp .contact-dock-icon svg { width: 25px; height: 25px; }
.contact-dock-item--chat .contact-dock-icon { position: absolute; inset: 0; width: auto; height: auto; }
.contact-dock-item--chat .contact-dock-icon svg { width: 24px; height: 24px; }

.contact-dock-label {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  z-index: 3;
  min-width: max-content;
  padding: 8px 11px;
  border-radius: 9px;
  color: #fff;
  background: #111c2d;
  box-shadow: 0 10px 26px rgba(12,24,40,.22);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(7px,-50%);
  transition: opacity .16s ease, transform .16s ease;
}

.contact-dock-label::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  border: 5px solid transparent;
  border-left-color: #111c2d;
  transform: translateY(-50%);
}

.contact-dock-item:hover .contact-dock-label,
.contact-dock-item:focus-visible .contact-dock-label,
.live-chat-widget.is-open .contact-dock-label { opacity: 1; transform: translate(0,-50%); }

.contact-dock .live-chat-toggle { gap: 0; font-weight: inherit; }
.contact-dock .live-chat-pulse {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 8px;
  height: 8px;
  border: 2px solid #155960;
  border-radius: 50%;
  background: #61f5b4;
  box-shadow: 0 0 0 3px rgba(97,245,180,.15);
}

.contact-dock .live-chat-panel {
  --live-chat-keyboard-offset: 0px;
  --live-chat-viewport-height: 100vh;
  position: fixed;
  right: 90px;
  bottom: calc(var(--live-chat-keyboard-offset) + max(24px, env(safe-area-inset-bottom)));
  left: auto;
  width: min(360px, calc(100vw - 120px));
  max-height: calc(var(--live-chat-viewport-height) - 48px);
}

@media (max-width: 680px) {
  .contact-dock {
    right: 8px;
    width: 56px;
  }

  .contact-dock-shell {
    gap: 6px;
    padding: 7px;
    border-radius: 16px;
  }

  .contact-dock-item { width: 42px; height: 42px; border-radius: 10px; }
  .contact-dock-icon,
  .contact-dock-icon svg { width: 21px; height: 21px; }
  .contact-dock-item--whatsapp .contact-dock-icon svg { width: 23px; height: 23px; }
  .contact-dock-label { display: none; }
  .contact-dock .live-chat-panel {
    right: 64px;
    bottom: calc(var(--live-chat-keyboard-offset) + max(12px, env(safe-area-inset-bottom)));
    width: calc(100vw - 76px);
    max-height: calc(var(--live-chat-viewport-height) - 24px);
  }
  .contact-dock .live-chat-body { height: min(290px, 38dvh); min-height: 64px; }
  .contact-dock .live-chat-identity { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .contact-dock .live-chat-identity input,
  .contact-dock .live-chat-compose textarea { font-size: 16px; }
  .contact-dock .live-chat-compose textarea { max-height: 96px; }
  .contact-dock .live-chat-form { flex: 0 0 auto; }
  .contact-dock .live-chat-widget.is-keyboard-open .live-chat-body { flex-basis: 90px; }
}

@media (max-height: 560px) {
  .contact-dock { gap: 4px; padding: 6px; }
  .contact-dock-item { width: 38px; height: 38px; }
}

@media print { .contact-dock { display: none !important; } }

/* Live chat offline state */
.live-chat-offline{display:grid;justify-items:center;gap:12px;padding:34px 24px 30px;text-align:center;background:linear-gradient(180deg,#fffaf6,#fff)}.live-chat-offline>i{display:block;width:15px;height:15px;border:4px solid #f3dfd1;border-radius:50%;background:#b96b42;box-shadow:0 0 0 7px #fff3eb}.live-chat-offline>strong{margin-top:5px;color:#3c2b22;font:800 19px/1.25 'Manrope',sans-serif}.live-chat-offline>p{max-width:290px;margin:0;color:#755f52;font-size:13px;line-height:1.65}.live-chat-offline .live-chat-whatsapp{justify-content:center;width:100%;min-height:48px;margin-top:4px;border-radius:13px;box-shadow:0 10px 24px rgba(37,211,102,.2)}.live-chat-widget.is-offline .live-chat-head{background:linear-gradient(135deg,#5c463a,#84614d)}.live-chat-widget.is-offline .live-chat-pulse{background:#d59166!important;border-color:#523c31!important;box-shadow:0 0 0 3px rgba(213,145,102,.16)!important}.contact-dock .live-chat-widget.is-offline .contact-dock-item--chat{background:linear-gradient(145deg,#725443,#4e3a31);box-shadow:inset 0 1px rgba(255,255,255,.12),0 6px 16px rgba(61,42,33,.22)}.contact-dock .live-chat-widget.is-offline.is-open .contact-dock-item--chat,.contact-dock .live-chat-widget.is-offline .contact-dock-item--chat:hover{background:linear-gradient(145deg,#85614d,#5c4336)}

/* Interactive before/after treatment results */
.before-after-section {
  overflow: hidden;
  background: linear-gradient(180deg, #f7fafb 0%, #fff 100%);
}
.before-after-heading { max-width: 760px; margin-bottom: 42px; text-align: center; }
.before-after-heading .eyebrow { color: #9a5b36; }
.before-after-heading h2 { margin: 10px 0 12px; font-size: clamp(34px, 4vw, 54px); }
.before-after-heading p { margin: 0 auto; max-width: 650px; color: #6d747b; font-size: 17px; }
.before-after-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; }
.before-after-card { min-width: 0; }
@media(min-width:851px){.before-after-card:only-child{grid-column:1/-1;justify-self:center;width:min(100%,960px)}.before-after-card:only-child .before-after-viewport{aspect-ratio:16/8.8}.before-after-card:only-child .before-after-caption{padding-right:8px;padding-left:8px}}
.before-after-viewport {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid rgba(65,83,91,.12);
  border-radius: 20px;
  background: #dce4e7;
  box-shadow: 0 22px 55px rgba(28,52,61,.12);
  isolation: isolate;
  -webkit-user-select: none;
  user-select: none;
}
.before-after-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; pointer-events: none; }
.before-after-before { position: absolute; inset: 0; z-index: 2; overflow: hidden; clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0); will-change: clip-path; }
.before-after-badge { position: absolute; top: 16px; z-index: 4; padding: 7px 11px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: #fff; background: rgba(12,27,35,.7); backdrop-filter: blur(8px); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; pointer-events: none; }
.before-after-badge--before { left: 16px; }
.before-after-badge--after { right: 16px; }
.before-after-divider { position: absolute; top: 0; bottom: 0; left: var(--comparison-position); z-index: 4; width: 3px; background: #fff; box-shadow: 0 0 0 1px rgba(20,45,56,.08), 0 0 20px rgba(0,0,0,.15); transform: translateX(-50%); pointer-events: none; }
.before-after-divider i { position: absolute; top: 50%; left: 50%; display: grid; width: 42px; height: 42px; place-items: center; border: 3px solid #fff; border-radius: 50%; color: #fff; background: #173f4d; box-shadow: 0 8px 20px rgba(12,34,43,.28); transform: translate(-50%,-50%); }
.before-after-card.is-dragging .before-after-divider i { background: #a6623b; box-shadow: 0 10px 26px rgba(94,52,30,.34); transform: translate(-50%,-50%) scale(1.08); }
.before-after-divider svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.before-after-range { position: absolute; inset: 0; z-index: 6; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; touch-action: pan-y; -webkit-tap-highlight-color: transparent; }
.before-after-range:focus-visible { opacity: .01; outline: 4px solid #b26b3e; outline-offset: -6px; }
.before-after-caption { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; min-height: 70px; padding: 14px 4px 0; }
.before-after-caption>span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 10px; color: #8d552f; background: #f2e2d6; font-size: 11px; font-weight: 900; }
.before-after-caption h3 { margin: 0; font-size: 20px; }
.before-after-caption small { color: #8b817a; font-size: 11px; font-weight: 800; }
.before-after-empty-state { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(260px,.75fr); align-items: center; gap: 34px; padding: 22px; border: 1px solid rgba(65,83,91,.12); border-radius: 22px; background: #fff; box-shadow: 0 22px 55px rgba(28,52,61,.09); }
.before-after-empty-visual { position: relative; display: grid; grid-template-columns: 1fr 1fr; min-height: 290px; overflow: hidden; border-radius: 16px; background: #e8eef0; }
.before-after-empty-visual>div { display: grid; align-content: center; justify-items: center; gap: 18px; color: #6f8088; background: linear-gradient(145deg,#e7edef,#d7e0e3); }
.before-after-empty-visual>div:last-child { color: #317264; background: linear-gradient(145deg,#e6f1ed,#d4e8df); }
.before-after-empty-visual>div svg { width: 84px; height: 84px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: .75; }
.before-after-empty-visual>div span { padding: 7px 11px; border-radius: 99px; color: #fff; background: rgba(18,42,51,.68); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.before-after-empty-visual>i { position: absolute; z-index: 2; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); }
.before-after-empty-visual>i svg { position: absolute; top: 50%; left: 50%; width: 44px; height: 44px; padding: 10px; border: 3px solid #fff; border-radius: 50%; color: #fff; background: #173f4d; box-shadow: 0 8px 20px rgba(12,34,43,.24); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transform: translate(-50%,-50%); }
.before-after-empty-copy { display: grid; gap: 10px; padding: 12px; }
.before-after-empty-copy strong { color: #20343d; font: 700 28px/1.2 Georgia,'Times New Roman',serif; }
.before-after-empty-copy span { color: #6d747b; font-size: 14px; line-height: 1.75; }
@media(max-width:850px){.before-after-grid{grid-template-columns:1fr;max-width:680px}.before-after-heading{margin-bottom:28px}}
@media(max-width:800px){.before-after-empty-state{grid-template-columns:1fr}.before-after-empty-copy{text-align:center}}
@media(max-width:600px){.before-after-section{padding-top:64px;padding-bottom:64px}.before-after-heading{text-align:left}.before-after-heading h2{font-size:34px}.before-after-heading p{font-size:14px}.before-after-grid{gap:24px}.before-after-viewport{aspect-ratio:4/3;border-radius:15px}.before-after-divider i{width:44px;height:44px}.before-after-badge{top:12px;padding:6px 9px;font-size:9px}.before-after-badge--before{left:12px}.before-after-badge--after{right:12px}.before-after-caption{grid-template-columns:auto 1fr}.before-after-caption small{grid-column:2}.before-after-caption h3{font-size:18px}.before-after-empty-state{gap:18px;padding:12px;border-radius:17px}.before-after-empty-visual{min-height:230px;border-radius:12px}.before-after-empty-visual>div svg{width:62px;height:62px}.before-after-empty-copy{padding:6px 8px 12px}.before-after-empty-copy strong{font-size:23px}.before-after-empty-copy span{font-size:13px}}
@media(prefers-reduced-motion:reduce){.before-after-before{will-change:auto}}
/* Public mobile usability layer */
@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-meta {
    justify-content: center;
  }

  .topbar-meta .topbar-item {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .nav {
    height: 68px;
  }

  .brand-mark {
    max-width: 180px;
    height: calc(42px * var(--logo-header-scale, 1));
  }

  .nav nav {
    position: absolute;
    inset: 68px 12px auto 12px;
    display: none;
    max-height: calc(100vh - 82px);
    overflow: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 22px 60px rgba(36,22,12,.18);
  }

  .nav nav.is-open,
  .nav [data-nav].is-open {
    display: grid;
    gap: 8px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    flex: 0 0 44px;
    min-height: 44px;
  }

  .language-dropdown,
  .language-dropdown summary,
  .language-dropdown-menu,
  .nav-dropdown,
  .nav-dropdown-trigger,
  .nav-cta {
    width: 100%;
  }

  .language-dropdown-menu,
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding: 42px 0 38px;
  }

  .typewriter-title,
  .hero-subtitle {
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
  }

  .service-grid,
  .team-grid,
  .post-grid,
  .trust-grid,
  .contact-grid,
  .about-grid,
  .cta-inner,
  .footer-grid,
  .doctor-profile-grid {
    grid-template-columns: 1fr !important;
  }

  .cta-inner {
    align-items: stretch;
  }

  .btn,
  .nav-cta,
  .doctor-card-link,
  .appointment-submit {
    min-height: 46px;
  }

  input,
  textarea,
  select,
  button {
    font-size: 16px;
  }

  .form-card,
  .contact-info,
  .appointment-form,
  .appointment-success {
    border-radius: 16px;
  }
}

@media (max-width: 680px) {
  .floating-contact-actions {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 65;
  }

  .floating-contact {
    min-height: 52px;
  }

  .floating-contact-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .live-chat-widget {
    left: 12px;
    bottom: calc(76px + env(safe-area-inset-bottom));
    right: auto;
    z-index: 75;
  }

  .live-chat-toggle {
    min-height: 52px;
    padding: 12px 15px;
  }

  .live-chat-panel {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(138px + env(safe-area-inset-bottom));
    width: auto;
    max-height: calc(100vh - 170px);
    display: flex;
    flex-direction: column;
  }

  .live-chat-body {
    height: auto;
    min-height: 220px;
    max-height: calc(100vh - 360px);
  }

  .live-chat-form {
    flex: 0 0 auto;
  }

  .live-chat-message {
    width: fit-content;
    max-width: 88%;
    margin-bottom: 7px;
    padding: 8px 10px;
    border-radius: 13px;
    font-size: .88rem;
    line-height: 1.4;
  }

  .live-chat-sender-name { margin-bottom: 3px; font-size: .68rem; }

  .appointment-hero-grid,
  .appointment-layout,
  .appointment-assurance,
  .grid-2 {
    grid-template-columns: 1fr !important;
  }

  .appointment-assurance {
    display: grid;
    gap: 10px;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr !important;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    max-width: 150px;
  }

  .hero-main-title,
  .typewriter-title,
  .page-hero h1,
  .section-head h2,
  .about-grid h2,
  .cta h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .floating-contact-actions {
    gap: 6px;
  }

  .live-chat-panel {
    bottom: calc(130px + env(safe-area-inset-bottom));
  }
}

/* Home team — simple portrait cards */
.home-team-section { padding: 90px 0 96px; overflow: hidden; background: #f7f9fa; }
.home-team-section::before { display: none; }
.home-team-heading { display: block; max-width: 820px; margin: 0 auto 52px; text-align: center; }
.home-team-heading .eyebrow { color: #1e468f; letter-spacing: .08em; }
.home-team-heading h2 { max-width: none; margin: 12px 0 14px; color: #202b3d; font-family: inherit; font-size: clamp(34px,4vw,52px); font-weight: 900; line-height: 1.08; letter-spacing: -.035em; }
.home-team-heading>p { max-width: 720px; margin: 0 auto; color: #697382; font-size: 17px; line-height: 1.7; }
.home-team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,280px)); justify-content: center; gap: 32px; max-width: 940px; grid-auto-rows: auto; }
.home-team-card,
.home-team-card:nth-child(2) { position: relative; display: flex; width: 100%; min-height: 0; height: auto; margin: 0; overflow: hidden; flex-direction: column; border: 0; border-radius: 22px; background: #fff; box-shadow: 0 14px 34px rgba(31,48,68,.11); transition: transform .22s ease,box-shadow .22s ease; }
.home-team-card:hover { border-color: transparent; box-shadow: 0 20px 42px rgba(31,48,68,.16); transform: translateY(-5px); }
.home-team-card::after { display: none; }
.home-team-photo,
.home-team-card .home-team-photo { position: relative; width: 100%; height: 320px; min-height: 320px; overflow: hidden; flex: 0 0 auto; background: #e5e8e9; }
.home-team-photo::before,
.home-team-photo::after { display: none; }
.home-team-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: none; transform: none; transition: transform .32s ease; }
.home-team-card:hover .home-team-photo img { filter: none; transform: scale(1.025); }
.home-team-card-body { display: flex!important; min-height: 150px; padding: 24px 18px 25px; align-items: center; justify-content: flex-start; flex-direction: column; text-align: center; }
.home-team-card-body::before,
.home-team-card-body>p { display: none; }
.home-team-card-body h3 { order: 1; margin: 0 0 7px; color: #202b3d; font-family: inherit; font-size: 20px; font-weight: 900; line-height: 1.25; letter-spacing: -.02em; }
.home-team-card-body>span { order: 2; margin: 0; color: #77808e; font-size: 14px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.home-team-card-body .doctor-card-link { position: relative; top: auto; right: auto; order: 3; display: inline-flex; width: auto; min-height: auto; margin: 14px 0 0; padding: 0; border: 0; border-radius: 0; color: #24458c!important; background: transparent; box-shadow: none; font-size: 13px; font-weight: 900; letter-spacing: 0; transform: none; }
.home-team-card-body .doctor-card-link::before,
.home-team-card-body .doctor-card-link::after { display: none; }
.home-team-card-body .doctor-card-link:hover { color: #a56239!important; background: transparent; box-shadow: none; transform: none; }
.home-team-card-body .doctor-card-link span { font-size: 17px; transition: transform .18s ease; }
.home-team-card-body .doctor-card-link:hover span { transform: translateX(4px); }
.home-team-all { margin-top: 34px; text-align: center; }
.home-team-all a { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 4px; border-bottom: 1px solid #aebbd1; color: #24458c; font-size: 13px; font-weight: 900; }
html[lang="ar"] .home-team-heading,
html[lang="ar"] .home-team-card-body { padding-right: 0; padding-left: 0; text-align: center; }
html[lang="ar"] .home-team-card-body .doctor-card-link { right: auto; left: auto; }
@media(max-width:650px){.home-team-section{padding:64px 0 72px}.home-team-heading{margin-bottom:34px;text-align:left}.home-team-heading h2{font-size:36px}.home-team-heading>p{font-size:14px}.home-team-grid{grid-template-columns:minmax(0,340px);gap:22px}.home-team-photo,.home-team-card .home-team-photo{height:350px;min-height:350px}.home-team-card-body{min-height:145px;padding:22px 16px 24px}}

/* Team directory — larger editorial cards */
.section-team {
  position: relative;
  overflow: hidden;
  padding: 96px 0 110px;
  background:
    radial-gradient(circle at 8% 12%, rgba(176,112,70,.09), transparent 27%),
    radial-gradient(circle at 92% 88%, rgba(31,71,112,.07), transparent 28%),
    #faf7f3;
}
.section-team::before {
  content: '';
  position: absolute;
  top: 56px;
  right: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(166,98,59,.13);
  border-radius: 50%;
}
.section-team>.container { position: relative; z-index: 1; }
.section-team .section-head {
  display: block;
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}
.section-team .section-head .eyebrow { margin-bottom: 14px; color: #a66842; }
.section-team .section-head h2 {
  max-width: none;
  margin: 0 0 18px;
  color: #2b211c;
  font-size: clamp(38px,4.5vw,60px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.section-team .section-head p {
  max-width: 650px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  color: #74645b;
  font-size: 15px;
  line-height: 1.75;
}
.section-team .team-directory-grid {
  display: grid;
  max-width: 850px;
  margin-inline: auto;
  grid-template-columns: repeat(2,minmax(0,390px));
  justify-content: center;
  gap: 34px;
}
.section-team .team-directory-grid .home-team-card,
.section-team .team-directory-grid .home-team-card:nth-child(2) {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(120,79,53,.13);
  border-radius: 26px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 22px 55px rgba(64,43,30,.10);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.section-team .team-directory-grid .home-team-card:hover {
  border-color: rgba(166,98,59,.36);
  box-shadow: 0 30px 68px rgba(64,43,30,.16);
  transform: translateY(-7px);
}
.section-team .team-directory-grid .home-team-photo,
.section-team .team-directory-grid .home-team-card .home-team-photo {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 3 / 4;
  background: #e9e5e1;
}
.section-team .team-directory-grid .home-team-photo img {
  object-position: center 20%;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.section-team .team-directory-grid .home-team-card:hover .home-team-photo img { transform: scale(1.035); }
.section-team .team-directory-grid .home-team-card-body {
  flex: 1 1 auto;
  min-height: 260px;
  padding: 34px 32px 32px;
  align-items: center;
  text-align: center;
}
.section-team .team-directory-grid .home-team-card-body>span {
  order: 1;
  max-width: 100%;
  margin: 0 0 12px;
  color: #a06039;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.section-team .team-directory-grid .home-team-card-body h3 {
  order: 2;
  max-width: 100%;
  margin: 0 0 28px;
  color: #26211e;
  font-size: clamp(24px,2.2vw,31px);
  line-height: 1.18;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.section-team .team-directory-grid .home-team-card-body .doctor-card-link {
  order: 3;
  gap: 10px;
  max-width: 100%;
  min-height: 42px;
  margin: auto 0 0;
  padding: 10px 18px;
  border: 1px solid #ddc7b8;
  border-radius: 999px;
  color: #754328!important;
  background: #fffaf6;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
}
.section-team .team-directory-grid .home-team-card-body .doctor-card-link:hover {
  color: #fff!important;
  background: #8e5433;
}
.home-team-card[href] {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.home-team-card[href]:focus-visible {
  outline: 3px solid #a66842;
  outline-offset: 5px;
}
.section-team .team-directory-grid .home-team-card:hover .doctor-card-link,
.section-team .team-directory-grid .home-team-card:focus-visible .doctor-card-link {
  color: #fff!important;
  background: #8e5433;
}
html[dir="rtl"] .section-team .section-head,
html[dir="rtl"] .section-team .team-directory-grid .home-team-card-body { text-align: center; }
@media(max-width:900px){
  .section-team .team-directory-grid{max-width:780px;grid-template-columns:repeat(2,minmax(0,360px));gap:24px}.section-team .team-directory-grid .home-team-photo,.section-team .team-directory-grid .home-team-card .home-team-photo{height:auto;min-height:0}.section-team .team-directory-grid .home-team-card-body{padding:30px 26px;min-height:250px}
}
@media(max-width:680px){
  .section-team{padding:68px 0 78px}.section-team::before{display:none}.section-team .section-head{margin-bottom:34px;text-align:left}.section-team .section-head h2{font-size:clamp(32px,10vw,39px)}.section-team .section-head p{font-size:14px}.section-team .team-directory-grid{max-width:410px;grid-template-columns:1fr}.section-team .team-directory-grid .home-team-photo,.section-team .team-directory-grid .home-team-card .home-team-photo{height:auto;min-height:0}.section-team .team-directory-grid .home-team-card-body{min-height:240px;padding:30px 24px}.section-team .team-directory-grid .home-team-card-body h3{margin-bottom:24px}html[dir="rtl"] .section-team .section-head{text-align:right}
}

/* Image-first treatment showcase */
.visual-treatment-showcase { position: relative; padding: 88px 0 78px; overflow: hidden; color: #2b211c; background: linear-gradient(145deg,#f7efe9 0%,#fffaf6 52%,#f1e2d8 100%); }
.visual-treatment-showcase::before { content: ''; position: absolute; inset: 0; width: auto; height: auto; border: 0; border-radius: 0; background: radial-gradient(circle at 8% 18%,rgba(165,102,63,.11),transparent 27%),radial-gradient(circle at 92% 85%,rgba(23,63,77,.08),transparent 30%); box-shadow: none; }
.treatment-showcase-heading { position: relative; z-index: 1; max-width: 820px; margin-bottom: 40px; text-align: center; }
.treatment-showcase-heading .eyebrow { color: #a5663f; }
.treatment-showcase-heading h2 { margin: 10px 0 12px; color: #2b211c; font-size: clamp(36px,4vw,54px); line-height: 1.08; }
.treatment-showcase-heading p { margin: 0; color: #75675e; font-size: 16px; }
.treatment-showcase-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; max-width: 1400px; }
.treatment-showcase-card { position: relative; display: block; min-width: 0; height: 380px; overflow: hidden; border: 1px solid rgba(117,67,40,.14); border-radius: 20px; color: #fff; background: #d9c8bb; box-shadow: 0 18px 44px rgba(72,43,27,.14); isolation: isolate; }
.treatment-showcase-card::after { content: ''; position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg,rgba(4,7,10,.04) 22%,rgba(4,7,10,.18) 48%,rgba(4,7,10,.92) 100%); transition: background .3s ease; }
.treatment-showcase-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.9) contrast(1.03); transform: scale(1.01); transition: transform .5s ease,filter .35s ease; }
.treatment-showcase-card:hover img { filter: saturate(1.04) contrast(1.04); transform: scale(1.065); }
.treatment-showcase-card:hover::after { background: linear-gradient(180deg,rgba(4,7,10,0) 20%,rgba(4,7,10,.12) 47%,rgba(4,7,10,.86) 100%); }
.treatment-showcase-number { position: absolute; z-index: 3; top: 16px; left: 16px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: #fff; background: rgba(8,13,19,.44); backdrop-filter: blur(8px); font-size: 10px; font-weight: 900; }
.treatment-showcase-card-copy { position: absolute; z-index: 3; right: 22px; bottom: 24px; left: 22px; display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: end; }
.treatment-showcase-card-copy h3 { margin: 0; color: #fff; font-size: clamp(18px,1.55vw,24px); font-weight: 900; line-height: 1.2; text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.treatment-showcase-card-copy>span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; color: #fff; font-size: 17px; transition: color .2s ease,background .2s ease,transform .2s ease; }
.treatment-showcase-card:hover .treatment-showcase-card-copy>span { color: #17212a; background: #fff; transform: translate(2px,-2px); }
.treatment-showcase-action { position: relative; z-index: 1; margin-top: 34px; text-align: center; }
.treatment-showcase-action a { display: inline-flex; align-items: center; gap: 10px; padding: 12px 2px 6px; border-bottom: 1px solid rgba(165,102,63,.55); color: #754328; font-size: 13px; font-weight: 900; }
.treatment-showcase-action a span { font-size: 18px; transition: transform .2s ease; }
.treatment-showcase-action a:hover span { transform: translateX(5px); }
@media(max-width:1050px){.treatment-showcase-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.treatment-showcase-card{height:360px}}
@media(max-width:650px){.visual-treatment-showcase{padding:64px 0 58px}.treatment-showcase-heading{margin-bottom:28px;text-align:left}.treatment-showcase-heading h2{font-size:36px}.treatment-showcase-heading p{font-size:14px}.treatment-showcase-grid{display:flex;width:calc(100% - 12px);margin-right:0;padding-right:18px;gap:14px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;-webkit-overflow-scrolling:touch}.treatment-showcase-grid::-webkit-scrollbar{display:none}.treatment-showcase-card{flex:0 0 min(82vw,320px);height:390px;border-radius:17px;scroll-snap-align:start}.treatment-showcase-card-copy{right:18px;bottom:20px;left:18px}.treatment-showcase-card-copy h3{font-size:21px}.treatment-showcase-action{text-align:left}}
@media(prefers-reduced-motion:reduce){.treatment-showcase-card img,.treatment-showcase-card-copy>span{transition:none}}

/* Clinic-background patient reviews */
.patient-reviews-section{position:relative;min-height:680px;padding:92px 0 82px;overflow:hidden;color:#fff;background-image:var(--reviews-bg);background-position:center 48%;background-size:cover;isolation:isolate;outline:0;touch-action:pan-y}
.patient-reviews-shade{position:absolute;z-index:-1;inset:0;background:linear-gradient(110deg,rgba(14,43,48,.93) 0%,rgba(20,49,52,.84) 42%,rgba(77,48,31,.72) 100%)}
.patient-reviews-shade::after{content:'';position:absolute;inset:0;background:radial-gradient(circle at 80% 20%,rgba(210,157,111,.19),transparent 34%),linear-gradient(180deg,rgba(5,18,20,.08),rgba(5,18,20,.3))}
.patient-reviews-inner{position:relative;z-index:1;display:grid;grid-template-columns:minmax(280px,.72fr) minmax(440px,1.28fr);gap:80px;align-items:center;min-height:500px}
.patient-reviews-heading .eyebrow{color:#e6b98f;letter-spacing:.13em}.patient-reviews-heading h2{max-width:560px;margin:15px 0 29px;color:#fff;font-family:Georgia,'Times New Roman',serif;font-size:clamp(43px,4.5vw,67px);font-weight:400;line-height:1.04;letter-spacing:-.035em;text-wrap:balance}
.patient-reviews-google{display:inline-grid;grid-template-columns:48px 1fr auto;gap:13px;align-items:center;min-width:275px;padding:11px 15px;border:1px solid rgba(255,255,255,.22);border-radius:15px;color:#fff;background:rgba(255,255,255,.1);backdrop-filter:blur(13px);transition:background .2s,transform .2s}.patient-reviews-google:hover{color:#fff;background:rgba(255,255,255,.17);transform:translateY(-2px)}.google-mark{display:grid;width:48px;height:48px;place-items:center;border-radius:12px;color:#fff;background:conic-gradient(from -45deg,#4285f4 0 25%,#34a853 0 50%,#fbbc05 0 75%,#ea4335 0);font:900 27px/1 Arial,sans-serif}.patient-reviews-google>span:nth-child(2){display:grid;gap:2px}.patient-reviews-google strong{font-size:14px}.patient-reviews-google small{color:rgba(255,255,255,.7);font-size:10px}.patient-reviews-google i{font-size:20px;font-style:normal}
.patient-review-stage{position:relative;min-height:375px}.patient-review-slide{position:absolute;inset:0;display:flex;padding:42px 46px 38px;visibility:hidden;opacity:0;flex-direction:column;border:1px solid rgba(255,255,255,.25);border-radius:24px;background:rgba(255,250,246,.94);box-shadow:0 30px 75px rgba(5,20,23,.3);color:#2c2926;transform:translateX(24px);transition:opacity .42s ease,transform .42s ease,visibility .42s;backdrop-filter:blur(14px)}.patient-review-slide.is-active{visibility:visible;opacity:1;transform:translateX(0)}
.patient-review-topline{display:flex;align-items:center;justify-content:space-between;gap:14px}.patient-review-stars{color:#c98542;font-size:18px;letter-spacing:4px}.patient-review-demo{padding:6px 9px;border-radius:99px;color:#7d5034;background:#f0dfd2;font-size:9px;font-weight:900;letter-spacing:.06em;text-transform:uppercase}.patient-review-slide blockquote{display:flex;align-items:center;min-height:176px;margin:13px 0 25px;color:#3a312c;font-family:Georgia,'Times New Roman',serif;font-size:clamp(23px,2.1vw,31px);font-weight:400;line-height:1.48}.patient-review-slide footer{display:grid;grid-template-columns:48px 1fr auto;gap:13px;align-items:center;margin-top:auto;padding-top:22px;border-top:1px solid #dfd5ce}.patient-review-avatar{display:grid;width:48px;height:48px;place-items:center;border-radius:50%;color:#fff;background:linear-gradient(135deg,#1d5960,#a76c46);font-size:17px;font-weight:900}.patient-review-slide footer>span:nth-child(2){display:grid;gap:3px}.patient-review-slide footer strong{color:#29221f;font-size:14px}.patient-review-slide footer small{color:#8b776b;font-size:11px}.patient-review-slide footer>a{display:grid;width:38px;height:38px;place-items:center;border:1px solid #ddc9bb;border-radius:50%;color:#8f5836;font-weight:900}
.patient-review-controls{display:flex;align-items:center;justify-content:flex-end;gap:17px;margin-top:25px}.patient-review-controls>button{display:grid;width:43px;height:43px;padding:0;place-items:center;border:1px solid rgba(255,255,255,.3);border-radius:50%;color:#fff;background:rgba(255,255,255,.08);font-size:19px;cursor:pointer;transition:background .2s}.patient-review-controls>button:hover{background:rgba(255,255,255,.19)}.patient-review-dots{display:flex;align-items:center;gap:8px}.patient-review-dots button{width:7px;height:7px;padding:0;border:0;border-radius:99px;background:rgba(255,255,255,.38);cursor:pointer;transition:width .2s,background .2s}.patient-review-dots button.is-active{width:28px;background:#e4b182}
html[lang="ar"] .patient-reviews-heading,html[lang="ar"] .patient-review-slide{text-align:right}html[lang="ar"] .patient-reviews-inner{direction:rtl}html[lang="ar"] .patient-review-controls{justify-content:flex-start}
@media(max-width:980px){.patient-reviews-section{min-height:0}.patient-reviews-inner{grid-template-columns:1fr;gap:43px;min-height:0}.patient-reviews-heading{max-width:720px}.patient-reviews-heading h2{max-width:720px}.patient-review-stage{min-height:345px}.patient-review-controls{justify-content:center}}
@media(max-width:620px){.patient-reviews-section{padding:65px 0 58px;background-position:58% center}.patient-reviews-shade{background:linear-gradient(155deg,rgba(14,43,48,.94),rgba(54,37,28,.82))}.patient-reviews-inner{gap:33px}.patient-reviews-heading h2{margin:11px 0 22px;font-size:39px}.patient-reviews-google{min-width:0;width:100%;grid-template-columns:43px 1fr auto}.google-mark{width:43px;height:43px}.patient-review-stage{min-height:390px}.patient-review-slide{padding:28px 23px 25px;border-radius:18px}.patient-review-slide blockquote{min-height:205px;margin:10px 0 18px;font-size:22px;line-height:1.45}.patient-review-slide footer{grid-template-columns:43px 1fr auto;padding-top:18px}.patient-review-avatar{width:43px;height:43px}.patient-review-stars{font-size:16px;letter-spacing:3px}.patient-review-demo{font-size:8px}.patient-review-controls{margin-top:20px}.patient-review-controls>button{width:40px;height:40px}}
@media(prefers-reduced-motion:reduce){.patient-review-slide,.patient-reviews-google{transition:none}}

/* Homepage clinic gallery */
.home-gallery-section{position:relative;padding:96px 0 88px;overflow:hidden;background:linear-gradient(145deg,#f8f2ed 0%,#fffaf6 55%,#f1e4db 100%)}
.home-gallery-section::before{content:'';position:absolute;top:-210px;right:-180px;width:520px;height:520px;border:1px solid rgba(165,102,63,.12);border-radius:50%;box-shadow:0 0 0 70px rgba(165,102,63,.025),0 0 0 140px rgba(30,73,82,.018)}
.home-gallery-heading{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1.15fr) minmax(320px,.65fr);gap:80px;align-items:end;margin-bottom:42px}.home-gallery-heading .eyebrow{color:#a5663f;letter-spacing:.13em}.home-gallery-heading h2{max-width:700px;margin:12px 0 0;color:#27211e;font-family:Georgia,'Times New Roman',serif;font-size:clamp(42px,4.6vw,62px);font-weight:400;line-height:1.05;letter-spacing:-.035em}.home-gallery-heading-copy{padding-left:25px;border-left:1px solid #c79574}.home-gallery-heading-copy p{margin:0 0 15px;color:#75675e;font-size:14px;line-height:1.75}.home-gallery-heading-copy a{display:inline-flex;align-items:center;gap:9px;padding-bottom:4px;border-bottom:1px solid #c4987c;color:#754328;font-size:12px;font-weight:900}.home-gallery-heading-copy a span{font-size:17px;transition:transform .2s}.home-gallery-heading-copy a:hover span{transform:translateX(5px)}
.home-gallery-grid{position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:17px}.home-gallery-card{position:relative;height:305px;padding:0;overflow:hidden;border:0;border-radius:4px;background:#d8c8bc;box-shadow:0 14px 34px rgba(66,39,23,.09);cursor:zoom-in;isolation:isolate}.home-gallery-card:nth-child(2),.home-gallery-card:nth-child(5){transform:translateY(20px)}.home-gallery-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:saturate(.82) contrast(1.02);transform:scale(1.01);transition:transform .55s ease,filter .35s ease}.home-gallery-card-shade{position:absolute;z-index:1;inset:0;background:linear-gradient(180deg,transparent 54%,rgba(17,36,40,.8));opacity:.72;transition:opacity .25s}.home-gallery-card-meta{position:absolute;z-index:2;right:18px;bottom:16px;left:18px;display:grid;grid-template-columns:34px 1fr 36px;gap:11px;align-items:center;color:#fff;text-align:left}.home-gallery-card-meta small{display:grid;width:34px;height:34px;place-items:center;border:1px solid rgba(255,255,255,.5);border-radius:50%;font-size:9px;font-weight:900}.home-gallery-card-meta strong{overflow:hidden;font-family:Georgia,'Times New Roman',serif;font-size:16px;font-weight:400;text-overflow:ellipsis;white-space:nowrap}.home-gallery-card-meta i{display:grid;width:36px;height:36px;place-items:center;border:1px solid rgba(255,255,255,.52);border-radius:50%;font-size:15px;font-style:normal;transform:translateY(5px);opacity:0;transition:opacity .2s,transform .2s,background .2s,color .2s}.home-gallery-card:hover img{filter:saturate(1) contrast(1.03);transform:scale(1.055)}.home-gallery-card:hover .home-gallery-card-shade{opacity:1}.home-gallery-card:hover .home-gallery-card-meta i,.home-gallery-card:focus-visible .home-gallery-card-meta i{transform:none;opacity:1}.home-gallery-card:focus-visible{outline:3px solid #1f5961;outline-offset:4px}.home-gallery-card:focus-visible .home-gallery-card-meta i{color:#1b3f45;background:#fff}.home-gallery-action{position:relative;z-index:1;margin-top:52px;text-align:center}.home-gallery-action .btn{min-width:230px;color:#fff;background:linear-gradient(135deg,#1b4b52,#2b6970);box-shadow:0 12px 27px rgba(27,75,82,.22)}
html[lang="ar"] .home-gallery-heading{direction:rtl}html[lang="ar"] .home-gallery-heading-copy{padding-right:25px;padding-left:0;border-right:1px solid #c79574;border-left:0}html[lang="ar"] .home-gallery-card-meta{text-align:right}
@media(max-width:900px){.home-gallery-heading{grid-template-columns:1fr;gap:25px}.home-gallery-heading-copy{max-width:620px}.home-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.home-gallery-card:nth-child(2),.home-gallery-card:nth-child(5){transform:none}.home-gallery-card{height:290px}}
@media(max-width:620px){.home-gallery-section{padding:66px 0 62px}.home-gallery-heading{margin-bottom:29px}.home-gallery-heading h2{font-size:38px}.home-gallery-heading-copy{padding-left:18px}.home-gallery-heading-copy p{font-size:13px}.home-gallery-grid{display:flex;width:calc(100% - 12px);margin-right:0;padding:0 18px 7px 0;gap:13px;overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;-webkit-overflow-scrolling:touch}.home-gallery-grid::-webkit-scrollbar{display:none}.home-gallery-card{flex:0 0 min(82vw,325px);height:360px;border-radius:13px;scroll-snap-align:start}.home-gallery-card-meta i{transform:none;opacity:1}.home-gallery-action{margin-top:29px;text-align:left}.home-gallery-action .btn{width:100%}html[lang="ar"] .home-gallery-heading-copy{padding-right:18px}.gallery-lightbox>button{top:max(14px,env(safe-area-inset-top));right:14px}}

/* Optional homepage image slider */
.home-slider{position:relative;min-height:clamp(560px,72vh,760px);overflow:hidden;color:#fff;background:#2b211c;isolation:isolate}.home-slider-track,.home-slide{position:absolute;inset:0}.home-slide{display:grid;align-items:end;visibility:hidden;opacity:0;transition:opacity .75s ease,visibility .75s}.home-slide.is-active{z-index:1;visibility:visible;opacity:1}.home-slide>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transform:scale(1.025);transition:transform 7s ease}.home-slide.is-active>img{transform:scale(1)}.home-slide-shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(31,22,18,.92) 0,rgba(50,31,21,.7) 48%,rgba(31,22,18,.16) 100%)}.home-slide-content{position:relative;z-index:2;padding-top:90px;padding-bottom:clamp(110px,13vh,150px)}.home-slide-content .eyebrow{color:#e5b18d}.home-slide-content h1{max-width:820px;margin:12px 0 18px;color:#fff;font-family:Georgia,'Times New Roman',serif;font-size:clamp(43px,6vw,76px);font-weight:400;line-height:1.02;letter-spacing:-.035em}.home-slide-content p{max-width:660px;margin:0 0 28px;color:#f0dfd4;font-size:clamp(16px,1.8vw,20px);line-height:1.7}.home-slide-cta{gap:14px;min-width:190px}.home-slide-cta span{font-size:20px;transition:transform .2s}.home-slide-cta:hover span{transform:translateX(5px)}.home-slider-navigation{position:absolute;z-index:4;right:0;bottom:38px;left:0;display:flex;align-items:center;justify-content:space-between;pointer-events:none}.home-slider-dots,.home-slider-arrows{display:flex;align-items:center;gap:9px;pointer-events:auto}.home-slider-dots button{width:31px;height:4px;padding:0;border:0;border-radius:99px;background:rgba(255,255,255,.38);cursor:pointer;transition:.25s}.home-slider-dots button.is-active{width:55px;background:#e2a77e}.home-slider-arrows button{display:grid;place-items:center;width:46px;height:46px;padding:0;border:1px solid rgba(255,255,255,.48);border-radius:50%;color:#fff;background:rgba(34,24,19,.32);backdrop-filter:blur(8px);font:inherit;font-size:19px;cursor:pointer;transition:.2s}.home-slider-arrows button:hover{color:#3a271d;background:#fff}.home-slider button:focus-visible,.home-slider a:focus-visible{outline:3px solid #fff;outline-offset:4px}html[dir="rtl"] .home-slide-shade{background:linear-gradient(270deg,rgba(31,22,18,.92) 0,rgba(50,31,21,.7) 48%,rgba(31,22,18,.16) 100%)}html[dir="rtl"] .home-slide-content{text-align:right}
.home-slide>video.home-slide-media{position:absolute;inset:0;width:100%;height:100%;border:0;object-fit:cover}.home-slide-youtube{position:absolute;top:50%;left:50%;width:max(100%,177.78vh);height:max(100%,56.25vw);border:0;pointer-events:none;transform:translate(-50%,-50%) scale(1.02)}
@media(max-width:700px){.home-slider{min-height:620px}.home-slide-shade{background:linear-gradient(0deg,rgba(31,22,18,.94) 0,rgba(43,28,20,.68) 58%,rgba(31,22,18,.22) 100%)}.home-slide-content{padding-top:75px;padding-bottom:125px}.home-slide-content h1{font-size:clamp(39px,11vw,55px)}.home-slide-content p{font-size:15px;line-height:1.6}.home-slide-cta{width:100%}.home-slider-navigation{bottom:27px}.home-slider-arrows button{width:42px;height:42px}}
@media(prefers-reduced-motion:reduce){.home-slide,.home-slide>img{transition:none}}
@media(prefers-reduced-motion:reduce){.home-gallery-card img,.home-gallery-card-meta i{transition:none}}

/* Keep homepage gallery rows precisely aligned. */
.home-gallery-card:nth-child(2),.home-gallery-card:nth-child(5){transform:none}

/* Keep long review copy inside its fixed carousel card. */
.patient-review-slide blockquote{display:-webkit-box;min-height:0;max-height:4.44em;overflow:hidden;line-height:1.48;-webkit-box-orient:vertical;-webkit-line-clamp:3;text-overflow:ellipsis}
@media(max-width:620px){.patient-review-slide blockquote{min-height:0;max-height:5.8em;line-height:1.45;-webkit-line-clamp:4}}

/* Softer, contemporary appointment card geometry. */
.home-booking-shell{overflow:hidden;border-radius:30px;border-color:rgba(111,69,44,.12);box-shadow:0 34px 90px rgba(58,37,25,.14),0 2px 8px rgba(58,37,25,.05)}
.home-booking-copy{border-radius:0}
.home-booking-form{border-radius:22px;border-color:rgba(165,102,63,.2);box-shadow:0 22px 55px rgba(61,35,20,.11)}
.booking-progress{border-radius:22px 22px 0 0}
.booking-step-title>small{border-radius:14px}
.home-booking-form input,.home-booking-form select{border-radius:13px}
.booking-actions .btn{border-radius:13px}
.booking-summary div{border-radius:13px}
@media(max-width:860px){.home-booking-shell{border-radius:26px}.home-booking-form{border-radius:20px}.booking-progress{border-radius:20px 20px 0 0}}
@media(max-width:600px){.home-booking-shell{overflow:visible;border-radius:0}.home-booking-copy{border-radius:0 0 26px 26px}.home-booking-form{border-radius:19px}.booking-progress{border-radius:19px 19px 0 0}.home-booking-form input,.home-booking-form select,.booking-actions .btn{border-radius:12px}}

/* Modern, separated clinic-standard cards. */
.trust-grid{gap:15px;border:0;border-radius:0;background:transparent;box-shadow:none}
.trust-grid .trust-item,.trust-grid .trust-item:nth-child(2),.trust-grid .trust-item:nth-child(4){overflow:hidden;border:1px solid rgba(165,102,63,.18);border-radius:19px;background:rgba(255,255,255,.9);box-shadow:0 15px 38px rgba(66,39,23,.07);transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease,background .25s ease}
.trust-grid .trust-item:last-child{border:1px solid rgba(165,102,63,.18)}
.trust-grid .trust-item:before{top:18px;bottom:18px;left:0;width:3px;height:auto;border-radius:0 99px 99px 0}
.trust-grid .trust-item:hover,.trust-grid .trust-item:nth-child(even):hover{transform:translateY(-5px);border-color:rgba(165,102,63,.32);background:#fff;box-shadow:0 23px 52px rgba(66,39,23,.12)}
.trust-grid .trust-icon,.trust-grid .trust-item:nth-child(even) .trust-icon{border-radius:15px}
@media(max-width:950px){.trust-grid{gap:13px}.trust-grid .trust-item,.trust-grid .trust-item:nth-child(1),.trust-grid .trust-item:nth-child(2),.trust-grid .trust-item:nth-child(3),.trust-grid .trust-item:nth-child(4){border:1px solid rgba(165,102,63,.18);border-radius:18px}}
@media(max-width:600px){.trust-grid{gap:11px}.trust-grid .trust-item,.trust-grid .trust-item:nth-child(even),.trust-grid .trust-item:nth-child(3),.trust-grid .trust-item:last-child{border:1px solid rgba(165,102,63,.16);border-radius:17px}.trust-grid .trust-item:hover,.trust-grid .trust-item:nth-child(even):hover{transform:none}}

/* Rounded, contemporary homepage gallery frames. */
.home-gallery-card{border:1px solid rgba(117,67,40,.12);border-radius:20px;box-shadow:0 17px 42px rgba(58,38,26,.11);transition:transform .28s ease,box-shadow .28s ease,border-color .28s ease}
.home-gallery-card:hover{border-color:rgba(117,67,40,.22);box-shadow:0 25px 55px rgba(58,38,26,.16);transform:translateY(-4px)}
.home-gallery-card-meta small{background:rgba(20,48,53,.2);backdrop-filter:blur(8px)}
.home-gallery-card-meta i{background:rgba(255,255,255,.08);backdrop-filter:blur(8px)}
@media(max-width:900px){.home-gallery-card{border-radius:18px}}
@media(max-width:620px){.home-gallery-card{border-radius:16px}.home-gallery-card:hover{transform:none}}

/* Bidirectional page navigation in the floating contact dock. */
.contact-dock-item--scroll{margin-top:5px;border-top:1px solid rgba(255,255,255,.14);color:#f5ded0;background:#8b5738;cursor:pointer}
.contact-dock-item--scroll:hover,.contact-dock-item--scroll:focus-visible{background:#a66b45}
.contact-dock-item--scroll .contact-dock-icon{transition:transform .28s ease}
.contact-dock-item--scroll.is-down .contact-dock-icon{transform:rotate(180deg)}
.contact-dock-item--scroll.is-up .contact-dock-icon{transform:rotate(0)}
.contact-dock-item--scroll .contact-dock-icon svg{width:22px;height:22px}
@media(prefers-reduced-motion:reduce){.contact-dock-item--scroll .contact-dock-icon{transition:none}}

/* Mobile header stays clean; contact details remain available in the dock/footer. */
@media(max-width:900px){.topbar{display:none!important}}

/* Managed blog article */
.blog-article{background:#fffaf6}.blog-article-hero{position:relative;padding:80px 0 210px;overflow:hidden;color:#fff;background:linear-gradient(135deg,#211915 0%,#503426 100%);isolation:isolate}.blog-article-hero::before{content:'';position:absolute;z-index:-1;top:-230px;right:-160px;width:620px;height:620px;border:1px solid rgba(223,179,146,.14);border-radius:50%;box-shadow:0 0 0 78px rgba(223,179,146,.035),0 0 0 156px rgba(223,179,146,.018)}.blog-article-hero-inner{max-width:980px}.blog-breadcrumb{display:flex;align-items:center;gap:10px;margin-bottom:48px;color:#d9b99f;font-size:12px;font-weight:800}.blog-breadcrumb a{color:#fff}.blog-breadcrumb span:last-child{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.blog-article-hero .eyebrow{color:#e0a77f}.blog-article-hero h1{max-width:970px;margin:14px 0 24px;color:#fff;font-family:Georgia,'Times New Roman',serif;font-size:clamp(44px,6vw,76px);font-weight:400;line-height:1.05;letter-spacing:-.04em;text-wrap:balance}.blog-article-lead{max-width:780px;margin:0;color:#e5d7ce;font-size:clamp(17px,2vw,21px);line-height:1.72}.blog-article-meta{display:flex;flex-wrap:wrap;gap:18px 42px;margin-top:43px;padding-top:27px;border-top:1px solid rgba(255,255,255,.14)}.blog-article-meta>span{display:grid;gap:5px}.blog-article-meta small{color:#cba98f;font-size:9px;font-weight:900;letter-spacing:.09em;text-transform:uppercase}.blog-article-meta strong{color:#fff;font-size:13px}.blog-article-cover-wrap{position:relative;z-index:2;margin-top:-150px}.blog-article-cover{display:block;width:100%;height:min(58vw,650px);min-height:400px;object-fit:cover;border:8px solid #fff;border-radius:26px;background:#e6d9cf;box-shadow:0 35px 85px rgba(62,37,23,.2)}.blog-article-layout{display:grid;grid-template-columns:minmax(0,760px) minmax(270px,340px);gap:clamp(55px,8vw,110px);align-items:start;justify-content:center;padding-top:90px;padding-bottom:105px}.blog-article-body{min-width:0;color:#4b4039;font-family:Georgia,'Times New Roman',serif;font-size:19px;line-height:1.95}.blog-article-body p{margin:0 0 27px}.blog-article-body h2,.blog-article-body h3{color:#29211d;font-family:var(--font-sans,Arial,sans-serif);letter-spacing:-.025em;text-wrap:balance}.blog-article-body h2{margin:58px 0 20px;font-size:clamp(29px,3.3vw,40px);line-height:1.18}.blog-article-body h3{margin:42px 0 16px;font-size:clamp(23px,2.5vw,29px);line-height:1.25}.blog-article-body ul,.blog-article-body ol{display:grid;gap:12px;margin:0 0 30px;padding-inline-start:25px}.blog-article-body li{padding-inline-start:7px}.blog-article-body li::marker{color:#a66842;font-weight:900}.blog-article-aside{position:sticky;top:105px;padding:34px 30px;border:1px solid #dfc9b9;border-radius:22px;background:linear-gradient(145deg,#f6e9df,#fffaf6);box-shadow:0 22px 48px rgba(73,44,27,.1)}.blog-article-aside .eyebrow{color:#9a5c37}.blog-article-aside h2{margin:10px 0 14px;color:#2c231f;font-size:27px;line-height:1.2}.blog-article-aside p{margin:0 0 24px;color:#75675e;font-size:14px;line-height:1.7}.blog-article-aside .btn{width:100%;text-align:center}.blog-related-section{background:#f4ebe4}.blog-related-heading{display:flex;align-items:end;justify-content:space-between;gap:30px;margin-bottom:34px}.blog-related-heading h2{margin:9px 0 0;color:#2b211c;font-size:clamp(31px,4vw,47px)}.blog-related-heading>a{display:inline-flex;gap:9px;align-items:center;padding-bottom:6px;border-bottom:1px solid #c69b7d;color:#754328;font-size:12px;font-weight:900}.blog-related-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.blog-related-card{display:flex;min-width:0;overflow:hidden;flex-direction:column;border:1px solid #e0cec1;border-radius:20px;color:inherit;background:#fff;box-shadow:0 15px 38px rgba(71,43,27,.08);transition:transform .25s ease,box-shadow .25s ease}.blog-related-card:hover{color:inherit;transform:translateY(-5px);box-shadow:0 23px 50px rgba(71,43,27,.14)}.blog-related-card img{width:100%;height:245px;object-fit:cover;background:#e6d9cf}.blog-related-card>div{display:flex;min-height:205px;padding:25px;flex-direction:column}.blog-related-card>div>span{color:#a06039;font-size:10px;font-weight:900;letter-spacing:.07em;text-transform:uppercase}.blog-related-card h3{margin:12px 0 24px;color:#2b211c;font-size:24px;line-height:1.25}.blog-related-card small{margin-top:auto;color:#8f7a6d;font-size:10px;font-weight:800;text-transform:uppercase}.blog-not-found{min-height:560px;display:grid;place-items:center;text-align:center;background:#fffaf6}.blog-not-found h1{margin:12px 0;font-size:clamp(36px,5vw,56px)}.blog-not-found p{max-width:620px;margin:0 auto 27px;color:#75675e}
html[dir="rtl"] .blog-article-hero::before{right:auto;left:-160px}html[dir="rtl"] .blog-article-body,html[dir="rtl"] .blog-article-aside{text-align:right}
@media(max-width:980px){.blog-article-layout{grid-template-columns:minmax(0,760px);gap:48px}.blog-article-aside{position:static;max-width:760px}.blog-related-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:680px){.blog-article-hero{padding:55px 0 145px}.blog-breadcrumb{margin-bottom:34px}.blog-article-hero h1{font-size:clamp(37px,11vw,49px)}.blog-article-lead{font-size:16px}.blog-article-meta{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px;margin-top:31px}.blog-article-cover-wrap{margin-top:-95px}.blog-article-cover{height:64vw;min-height:250px;border-width:5px;border-radius:18px}.blog-article-layout{gap:38px;padding-top:57px;padding-bottom:72px}.blog-article-body{font-size:17px;line-height:1.82}.blog-article-body h2{margin-top:45px}.blog-article-aside{padding:28px 23px;border-radius:18px}.blog-related-heading{align-items:flex-start;flex-direction:column}.blog-related-grid{grid-template-columns:1fr}.blog-related-card{display:grid;grid-template-columns:120px 1fr}.blog-related-card img{height:100%;min-height:185px}.blog-related-card>div{min-height:185px;padding:20px}.blog-related-card h3{font-size:20px;margin:9px 0 18px}}
@media(prefers-reduced-motion:reduce){.blog-related-card{transition:none}}
.blog-article-body p{margin-bottom:30px}.blog-article-body>p:first-child{padding:25px 28px;border-inline-start:4px solid #b9794e;border-radius:0 16px 16px 0;background:#fff;color:#352a24;font-size:21px;line-height:1.8;box-shadow:0 12px 35px rgba(73,44,27,.06)}html[dir="rtl"] .blog-article-body>p:first-child{border-radius:16px 0 0 16px}.blog-article-body h2{padding-top:12px;border-top:1px solid #eaded5}.blog-article-body li{margin-bottom:3px}

/* Spacious editorial blog cards */
.blog-latest-section{padding-block:clamp(82px,8vw,126px)}
.blog-latest-heading{align-items:start;margin-bottom:52px}
.blog-latest-heading p{max-width:560px;font-size:16px;line-height:1.8}
.blog-editorial-grid{grid-template-columns:repeat(6,minmax(0,1fr));gap:32px 28px}
.blog-editorial-card{grid-column:span 2;display:flex;min-width:0;overflow:hidden;flex-direction:column;border:1px solid #eadfd7;border-radius:24px;background:#fff;box-shadow:0 18px 46px rgba(72,43,27,.075);transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease}
.blog-editorial-card:nth-last-child(2):nth-child(3n+1){grid-column:2/span 2}
.blog-editorial-card:hover{border-color:#d8c1b1;transform:translateY(-6px);box-shadow:0 27px 60px rgba(72,43,27,.13)}
.blog-card-image{display:block;min-height:0;aspect-ratio:16/10;background:#eee4dc}
.blog-card-image img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .55s ease}
.blog-editorial-card:hover .blog-card-image img{transform:scale(1.035)}
.blog-card-image>span{left:22px;bottom:20px;width:43px;height:43px;border:1px solid rgba(255,255,255,.35);background:rgba(43,33,28,.74);backdrop-filter:blur(8px)}
.blog-editorial-card>div{display:flex;min-height:350px;flex:1 1 auto;padding:31px 32px 30px}
.blog-editorial-card .blog-meta{justify-content:flex-start;gap:8px 12px;color:#9c5b34;font-size:9px;line-height:1.45}
.blog-editorial-card .blog-meta span{display:inline-flex;align-items:center}
.blog-editorial-card .blog-meta span+span::before{content:'·';margin-inline-end:12px;color:#c7a58e;font-size:13px}
.blog-editorial-card h3{margin:19px 0 14px;font-size:clamp(24px,2vw,29px);line-height:1.24;letter-spacing:-.025em;text-wrap:balance}
.blog-editorial-card p{display:-webkit-box;overflow:hidden;margin:0;color:#73645b;font-size:15px;line-height:1.78;-webkit-box-orient:vertical;-webkit-line-clamp:3}
.blog-editorial-card .blog-read-link{width:100%;min-height:0;margin-top:auto;padding:22px 0 0;border:0;border-top:1px solid #eadfd7;border-radius:0;color:#754328!important;background:transparent;box-shadow:none;font-size:12px;letter-spacing:.02em}
.blog-editorial-card .blog-read-link::before{display:none}
.blog-editorial-card:hover .blog-read-link{transform:none;box-shadow:none}
.blog-editorial-card .blog-read-link span{font-size:18px}

@media(max-width:1180px){.blog-editorial-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:26px}.blog-editorial-card,.blog-editorial-card:nth-last-child(2):nth-child(3n+1){grid-column:auto}.blog-editorial-card>div{min-height:330px}}
@media(max-width:720px){.blog-latest-section{padding-block:68px}.blog-latest-heading{gap:20px;margin-bottom:32px}.blog-editorial-grid{grid-template-columns:1fr;gap:22px}.blog-editorial-card{border-radius:20px}.blog-card-image{aspect-ratio:16/10}.blog-editorial-card>div{min-height:0;padding:26px 24px 25px}.blog-editorial-card h3{font-size:25px}.blog-editorial-card p{display:block;overflow:visible}.blog-editorial-card .blog-read-link{margin-top:25px}}

/* Compact English desktop navigation */
@media(min-width:901px){html[lang="en"] .site-header .nav>nav{gap:clamp(6px,.75vw,11px)}html[lang="en"] .site-header .nav>nav>a:not(.nav-cta),html[lang="en"] .site-header .nav-dropdown-trigger{padding-inline:10px;font-size:13px;line-height:1.2;letter-spacing:-.01em;white-space:nowrap}html[lang="en"] .site-header .nav-cta{min-height:44px;padding-inline:16px;font-size:13px;line-height:1.2;white-space:nowrap}html[lang="en"] .language-dropdown{margin-left:4px}html[lang="en"] .language-dropdown summary{min-width:68px;padding-inline:9px}}
@media(max-width:1180px) and (min-width:901px){html[lang="en"] .brand{width:220px;height:80px}html[lang="en"] .brand-mark{width:220px;height:80px}html[lang="en"] .site-header .nav>nav{gap:5px}html[lang="en"] .site-header .nav>nav>a:not(.nav-cta),html[lang="en"] .site-header .nav-dropdown-trigger{padding-inline:8px;font-size:12px}html[lang="en"] .site-header .nav-cta{padding-inline:13px;font-size:12px}}

/* Compact and stable public mobile experience. */
.language-dropdown--mobile{display:none}
@media(max-width:900px){
  .language-dropdown--desktop{display:none!important}
  .site-header .nav{height:60px;gap:8px}
  .site-header .brand{width:min(62vw,220px)!important;max-width:220px;height:60px!important}
  .site-header .brand-mark{width:100%!important;max-width:100%;height:60px!important}
  .site-header .nav-toggle{width:38px;height:38px;min-height:38px;flex:0 0 38px;border-radius:10px;font-size:18px}
  .site-header .nav>nav{inset:60px 10px auto!important;max-height:calc(100svh - 72px);padding:9px;gap:4px!important;border-radius:13px}
  .site-header .nav>nav>a:not(.nav-cta),
  .site-header .nav-dropdown-trigger{min-height:38px;padding-inline:12px!important;font-size:13px}
  .site-header .nav-cta{min-height:40px!important;padding:8px 13px!important;font-size:13px}
  .site-header .nav-dropdown-menu a{min-height:36px;padding:8px 11px!important;font-size:12px!important}
  .site-header .language-dropdown--mobile{position:relative;display:block!important;width:auto!important;margin:0 0 0 auto!important;overflow:visible;flex:0 0 auto}
  .site-header .language-dropdown--mobile summary{justify-content:center;width:48px!important;min-width:48px;height:38px;padding:5px 7px;gap:0;border-radius:10px}
  .site-header .language-dropdown--mobile summary img{width:24px;height:16px}
  .site-header .language-dropdown--mobile .language-dropdown-menu{position:absolute!important;top:calc(100% + 7px)!important;right:0!important;left:auto!important;width:160px!important;min-width:160px;margin:0!important;padding:6px;border-radius:11px;box-shadow:0 18px 40px rgba(65,38,22,.16)}
  .site-header .language-dropdown--mobile .language-dropdown-menu a{justify-content:flex-start;width:100%;min-height:36px;padding:8px 9px!important;font-size:12px!important}
  html[dir="rtl"] .site-header .language-dropdown--mobile{margin-right:auto!important;margin-left:0!important}
  html[dir="rtl"] .site-header .language-dropdown--mobile .language-dropdown-menu{right:auto!important;left:0!important}
}

@media(max-width:680px){
  .contact-dock{top:max(8px,calc(50vh - 190px));top:max(8px,calc(50svh - 190px));bottom:auto;height:auto;align-items:flex-start;backface-visibility:hidden}
  .contact-dock-shell{backface-visibility:hidden;transition:opacity .2s ease}
  .contact-dock.is-page-scrolling:not(:has(.live-chat-widget.is-open)) .contact-dock-shell{opacity:.42}
}

@media(max-width:680px) and (prefers-reduced-motion:reduce){
  .contact-dock-shell{transition:none}
}

@media(max-width:600px){
  html{font-size:15px}
  body{font-size:15px}
  .container{width:min(100% - 28px,1180px)}
  .section{padding:50px 0}
  .hero-layout{padding:30px 0 32px}
  .hero-intro{margin:10px 0 14px;font-size:15px;line-height:1.55}
  .typewriter-title{height:var(--typewriter-title-mobile-height,118px);min-height:var(--typewriter-title-mobile-height,118px);max-height:var(--typewriter-title-mobile-height,118px);overflow:hidden;font-size:clamp(27px,8vw,34px);line-height:1.08}
  .hero-subtitle{height:var(--typewriter-subtitle-mobile-height,94px);min-height:var(--typewriter-subtitle-mobile-height,94px);max-height:var(--typewriter-subtitle-mobile-height,94px);margin-bottom:18px;overflow:hidden;font-size:15px;line-height:1.55}
  .type-controls{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin:14px 0 10px}
  .type-option{min-height:80px;padding:10px 8px;gap:6px;border-radius:10px}
  .type-option-icon{width:28px;height:28px}
  .type-option-icon svg{width:25px;height:25px}
  .type-option span:last-child{font-size:12px;line-height:1.25}
  html[lang] .btn{min-height:42px;padding:8px 16px;font-size:14px}
  .section-head h2,.about-grid h2,.cta h2{font-size:clamp(27px,8vw,34px)}
}

@media(max-width:420px){
  .site-header .brand{width:min(57vw,190px)!important;max-width:190px}
  .site-header .language-dropdown--mobile summary{width:44px!important;min-width:44px}
}

/* Give mobile homepage visitors a wider overview without shrinking form controls. */
@media(max-width:600px){
  body.page-home{font-size:14px}
  .page-home .container{width:min(100% - 22px,1180px)}
  .page-home .section{padding:44px 0}
  .page-home .hero-layout{padding:22px 0 25px}
  .page-home .hero-content>.eyebrow{font-size:10px}
  .page-home .hero-intro{margin:8px 0 11px;font-size:14px;line-height:1.48}
  .page-home .typewriter-title{font-size:clamp(25px,7.5vw,31px);line-height:1.06}
  .page-home .hero-subtitle{margin-bottom:14px;font-size:14px;line-height:1.48}
  .page-home .type-controls{gap:7px;margin:11px 0 8px}
  .page-home .type-option{min-height:70px;padding:8px 7px;gap:5px}
  .page-home .type-option-icon{width:24px;height:24px}
  .page-home .type-option-icon svg{width:22px;height:22px}
  .page-home .type-option span:last-child{font-size:11px;line-height:1.2}
  .page-home .home-booking{padding-top:50px}
  .page-home .home-booking-shell{gap:28px;padding-bottom:48px}
  .page-home .home-booking-copy h2{font-size:clamp(30px,8.5vw,36px)}
  .page-home .home-booking-copy>p{font-size:14px;line-height:1.6}
  .page-home .booking-direct{margin-top:22px}
  .page-home .booking-direct a{padding-block:14px}
  .page-home .home-services-section .service-card-media{aspect-ratio:16/9}
  .page-home .home-services-section .service-card>div:last-child{padding:20px}
  .page-home .home-services-section .service-card h3{font-size:20px}
  .page-home .home-services-section .service-card p{margin-bottom:15px;font-size:14px;line-height:1.55}
  .page-home .trust-band{padding:40px 11px 44px}
  .page-home .trust-grid .trust-item,
  .page-home .trust-grid .trust-item:nth-child(even){min-height:104px;padding:18px 17px}
  .page-home .home-gallery-section{padding:54px 0 50px}
  .page-home .home-gallery-heading h2{font-size:34px}
  .page-home .home-gallery-card{height:320px}
  .page-home .before-after-section{padding-block:50px}
  .page-home .home-team-section{padding:54px 0 58px}
  .page-home .home-team-heading{margin-bottom:27px}
  .page-home .home-team-heading h2{font-size:32px}
  .page-home .home-team-photo,
  .page-home .home-team-card .home-team-photo{height:310px;min-height:310px}
}

/* Compact inner pages on phones while preserving form and tap-target sizes. */
@media(max-width:680px){
  body.page-inner{font-size:14px}
  .page-inner .container{width:min(100% - 22px,1180px)}
  .page-inner .section{padding:44px 0}
  .page-inner .eyebrow{font-size:10px}

  .page-inner .page-hero,
  .page-inner .about-hero,
  .page-inner .blog-hero,
  .page-inner .appointment-hero,
  .page-inner .kvkk-hero{padding:48px 0}
  .page-inner .page-hero h1,
  .page-inner .about-hero h1,
  .page-inner .blog-hero h1,
  .page-inner .appointment-hero h1,
  .page-inner .kvkk-hero h1{font-size:clamp(30px,9vw,36px);line-height:1.06}
  .page-inner .page-hero p,
  .page-inner .about-hero p,
  .page-inner .blog-hero-copy>p,
  .page-inner .appointment-hero p,
  .page-inner .kvkk-hero>div>p{font-size:14px;line-height:1.6}

  .page-inner .treatments-hero,
  .page-inner .treatment-detail-hero,
  .page-inner .gallery-hero{min-height:390px}
  .page-inner .treatments-hero-content,
  .page-inner .treatment-detail-hero .container{padding-bottom:36px}
  .page-inner .treatments-hero h1,
  .page-inner .treatment-detail-hero h1,
  .page-inner .gallery-hero h1{font-size:clamp(31px,9vw,36px);line-height:1.04}
  .page-inner .treatments-hero p,
  .page-inner .treatment-detail-hero p,
  .page-inner .gallery-hero p{font-size:14px;line-height:1.6}
  .page-inner .treatment-detail-hero .container>a:first-child{margin-bottom:25px;font-size:12px}
  .page-inner .gallery-hero{padding:48px 0 42px}
  .page-inner .gallery-hero-grid{gap:22px}

  .page-inner .section-head{margin-bottom:27px}
  .page-inner .section-head h2,
  .page-inner .about-story h2,
  .page-inner .about-values-heading h2,
  .page-inner .about-clinical h2,
  .page-inner .appointment-copy h2,
  .page-inner .treatment-overview h2{font-size:clamp(27px,8vw,32px);line-height:1.1}
  .page-inner .section-head p,
  .page-inner .about-rich-text,
  .page-inner .appointment-copy>p,
  .page-inner .treatment-overview p{font-size:14px;line-height:1.65}

  .page-inner .about-story-grid,
  .page-inner .about-clinical-grid,
  .page-inner .appointment-layout,
  .page-inner .treatment-overview-grid{gap:30px}
  .page-inner .about-story-image{width:min(100%,390px);margin-inline:auto}
  .page-inner .about-values-heading{gap:18px;margin-bottom:26px}
  .page-inner .about-values-grid{gap:11px}
  .page-inner .about-values-grid article{padding:20px}
  .page-inner .about-values-grid h3{margin-top:30px;font-size:18px}
  .page-inner .about-clinical-points>div{padding:16px 0}
  .page-inner .about-commitment,
  .page-inner .blog-clinic-note,
  .page-inner .doctor-profile-cta,
  .page-inner .gallery-visit,
  .page-inner .treatment-cta{padding:45px 0}

  .page-inner .service-card img,
  .page-inner .home-services-section .service-card-media{aspect-ratio:16/9}
  .page-inner .service-card div,
  .page-inner .home-services-section .service-card>div:last-child{padding:20px}
  .page-inner .service-card h3{font-size:20px}
  .page-inner .service-card p{font-size:14px;line-height:1.55}
  .page-inner .treatment-overview aside img{aspect-ratio:16/9}
  .page-inner .treatment-path-grid{gap:14px}
  .page-inner .treatment-path article{padding:20px}
  .page-inner .treatment-path h2{margin-bottom:19px;font-size:23px}
  .page-inner .treatment-method-grid,
  .page-inner .treatment-decisions-grid{gap:14px}
  .page-inner .treatment-method-grid article,
  .page-inner .treatment-decisions-grid article{padding:21px}

  .page-inner .gallery-intro{gap:16px;margin-bottom:27px;padding-bottom:17px}
  .page-inner .gallery-intro h2{font-size:29px}
  .page-inner .clinic-gallery-grid{gap:10px}
  .page-inner .clinic-gallery-card,
  .page-inner .clinic-gallery-card.gallery-shape-1,
  .page-inner .clinic-gallery-card.gallery-shape-2,
  .page-inner .clinic-gallery-card.gallery-shape-3,
  .page-inner .clinic-gallery-card.gallery-shape-4,
  .page-inner .clinic-gallery-card.gallery-shape-5,
  .page-inner .clinic-gallery-card.gallery-shape-6,
  .page-inner .clinic-gallery-card.gallery-shape-7{min-height:300px}

  .page-inner .team-hero-metrics{gap:8px}
  .page-inner .team-hero-metrics div{padding:12px 10px}
  .page-inner .team-hero-metrics strong{font-size:22px}
  .page-inner .section-team{padding:50px 0 58px}
  .page-inner .section-team .section-head{margin-bottom:27px}
  .page-inner .section-team .section-head h2{font-size:31px}
  .page-inner .section-team .team-directory-grid{gap:18px}
  .page-inner .section-team .team-directory-grid .home-team-card-body{min-height:210px;padding:24px 20px}
  .page-inner .section-team .team-directory-grid .home-team-card-body h3{margin-bottom:17px;font-size:25px}

  .page-inner .doctor-profile-hero{padding:45px 0}
  .page-inner .doctor-profile-grid{gap:27px}
  .page-inner .doctor-profile-photo{width:min(88vw,330px)}
  .page-inner .doctor-back{margin-bottom:22px}
  .page-inner .doctor-profile-intro h1{font-size:34px}
  .page-inner .doctor-profile-role{font-size:16px}
  .page-inner .doctor-profile-intro blockquote{margin:18px 0;font-size:16px}
  .page-inner .doctor-biography h2{font-size:29px}
  .page-inner .doctor-biography p{font-size:15px;line-height:1.7}
  .page-inner .doctor-resume-grid{gap:14px;margin-top:35px}
  .page-inner .doctor-resume-card{padding:22px}

  .page-inner .appointment-assurance{gap:9px 12px;padding:15px}
  .page-inner .appointment-form{gap:14px;padding:20px}
  .page-inner .appointment-privacy{margin-top:22px;padding:16px}
  .page-inner .form-card,
  .page-inner .contact-info{padding:22px}
  .page-inner .contact-grid{gap:22px}
  .page-inner .contact-map-section{padding:45px 0}
  .page-inner .contact-map-heading{gap:18px;margin-bottom:22px}
  .page-inner .contact-map-heading h2{font-size:30px}
  .page-inner .contact-map-frame{height:350px}

  .page-inner .blog-featured-image{min-height:300px}
  .page-inner .blog-featured-content{padding:24px}
  .page-inner .blog-featured h2{font-size:29px}
  .page-inner .blog-featured p{font-size:14px;line-height:1.6}
  .page-inner .blog-latest-section{padding-block:52px}
  .page-inner .blog-latest-heading{margin-bottom:27px}
  .page-inner .blog-editorial-grid{gap:17px}
  .page-inner .blog-editorial-card>div{padding:21px 19px}
  .page-inner .blog-editorial-card h3{font-size:22px}
  .page-inner .blog-card-image{min-height:210px}

  .page-inner .blog-article-hero{padding:45px 0 120px}
  .page-inner .blog-breadcrumb{margin-bottom:26px}
  .page-inner .blog-article-hero h1{font-size:clamp(32px,9vw,38px)}
  .page-inner .blog-article-lead{font-size:15px;line-height:1.65}
  .page-inner .blog-article-meta{gap:15px;margin-top:25px;padding-top:20px}
  .page-inner .blog-article-cover-wrap{margin-top:-78px}
  .page-inner .blog-article-cover{min-height:220px}
  .page-inner .blog-article-layout{gap:30px;padding-top:45px;padding-bottom:58px}
  .page-inner .blog-article-body{font-size:16px;line-height:1.75}
  .page-inner .blog-article-body>p:first-child{padding:20px;font-size:18px}
  .page-inner .blog-article-body h2{margin-top:38px;font-size:27px}
  .page-inner .blog-article-aside{padding:23px 20px}

  .page-inner .kvkk-meta{margin-top:23px;padding:13px 15px}
  .page-inner .kvkk-nav .container{padding-block:8px}
  .page-inner .kvkk-content{padding-block:42px}
  .page-inner .kvkk-document{gap:12px}
  .page-inner .kvkk-intro,
  .page-inner .kvkk-document article{padding:20px}
  .page-inner .kvkk-intro{font-size:14px;line-height:1.7}
  .page-inner .kvkk-document h2{font-size:23px}
  .page-inner .kvkk-document p,
  .page-inner .kvkk-document li{line-height:1.7}
}

/* Final mobile density pass for a broader at-a-glance view. */
@media(max-width:600px){
  body.page-home,
  body.page-inner{font-size:13.5px}
  .page-home .container,
  .page-inner .container{width:min(100% - 18px,1180px)}
  .page-home .section,
  .page-inner .section{padding:38px 0}

  .page-home .hero-layout{padding:17px 0 20px}
  .page-home .hero-intro{margin:6px 0 9px;font-size:13px}
  .page-home .typewriter-title{font-size:clamp(23px,7vw,29px)}
  .page-home .hero-subtitle{margin-bottom:11px;font-size:13px}
  .page-home .type-controls{gap:6px;margin:9px 0 6px}
  .page-home .type-option{min-height:64px;padding:7px 6px}
  .page-home .type-option-icon{width:22px;height:22px}
  .page-home .type-option-icon svg{width:20px;height:20px}
  .page-home .home-booking{padding-top:43px}
  .page-home .home-booking-shell{gap:23px;padding-bottom:41px}
  .page-home .home-booking-copy h2{font-size:clamp(28px,8vw,33px)}
  .page-home .home-booking-copy>p{font-size:13.5px}
  .page-home .home-services-section .service-card>div:last-child{padding:18px}
  .page-home .home-services-section .service-card h3{font-size:19px}
  .page-home .home-services-section .service-card p{font-size:13.5px}
  .page-home .trust-band{padding:35px 9px 38px}
  .page-home .trust-grid .trust-item,
  .page-home .trust-grid .trust-item:nth-child(even){min-height:96px;padding:16px 15px}
  .page-home .home-gallery-section{padding:47px 0 44px}
  .page-home .home-gallery-heading h2{font-size:31px}
  .page-home .home-gallery-card{height:295px}
  .page-home .before-after-section{padding-block:43px}
  .page-home .home-team-section{padding:47px 0 51px}
  .page-home .home-team-heading h2{font-size:30px}
  .page-home .home-team-photo,
  .page-home .home-team-card .home-team-photo{height:285px;min-height:285px}

  .page-inner .page-hero,
  .page-inner .about-hero,
  .page-inner .blog-hero,
  .page-inner .appointment-hero,
  .page-inner .kvkk-hero{padding:41px 0}
  .page-inner .page-hero h1,
  .page-inner .about-hero h1,
  .page-inner .blog-hero h1,
  .page-inner .appointment-hero h1,
  .page-inner .kvkk-hero h1{font-size:clamp(28px,8.5vw,33px)}
  .page-inner .page-hero p,
  .page-inner .about-hero p,
  .page-inner .blog-hero-copy>p,
  .page-inner .appointment-hero p,
  .page-inner .kvkk-hero>div>p{font-size:13.5px}
  .page-inner .treatments-hero,
  .page-inner .treatment-detail-hero,
  .page-inner .gallery-hero{min-height:355px}
  .page-inner .treatments-hero-content,
  .page-inner .treatment-detail-hero .container{padding-bottom:31px}
  .page-inner .treatments-hero h1,
  .page-inner .treatment-detail-hero h1,
  .page-inner .gallery-hero h1{font-size:clamp(29px,8.5vw,34px)}
  .page-inner .treatments-hero p,
  .page-inner .treatment-detail-hero p,
  .page-inner .gallery-hero p{font-size:13.5px}
  .page-inner .gallery-hero{padding:41px 0 36px}

  .page-inner .section-head{margin-bottom:23px}
  .page-inner .section-head h2,
  .page-inner .about-story h2,
  .page-inner .about-values-heading h2,
  .page-inner .about-clinical h2,
  .page-inner .appointment-copy h2,
  .page-inner .treatment-overview h2{font-size:clamp(25px,7.5vw,30px)}
  .page-inner .section-head p,
  .page-inner .about-rich-text,
  .page-inner .appointment-copy>p,
  .page-inner .treatment-overview p{font-size:13.5px}
  .page-inner .about-story-grid,
  .page-inner .about-clinical-grid,
  .page-inner .appointment-layout,
  .page-inner .treatment-overview-grid{gap:25px}
  .page-inner .about-story-image{width:min(100%,360px)}
  .page-inner .about-values-grid article{padding:18px}
  .page-inner .about-commitment,
  .page-inner .blog-clinic-note,
  .page-inner .doctor-profile-cta,
  .page-inner .gallery-visit,
  .page-inner .treatment-cta{padding:39px 0}
  .page-inner .service-card div,
  .page-inner .home-services-section .service-card>div:last-child{padding:18px}
  .page-inner .service-card h3{font-size:19px}
  .page-inner .service-card p{font-size:13.5px}
  .page-inner .treatment-path article,
  .page-inner .treatment-method-grid article,
  .page-inner .treatment-decisions-grid article{padding:18px}
  .page-inner .treatment-path h2{font-size:21px}
  .page-inner .clinic-gallery-card,
  .page-inner .clinic-gallery-card.gallery-shape-1,
  .page-inner .clinic-gallery-card.gallery-shape-2,
  .page-inner .clinic-gallery-card.gallery-shape-3,
  .page-inner .clinic-gallery-card.gallery-shape-4,
  .page-inner .clinic-gallery-card.gallery-shape-5,
  .page-inner .clinic-gallery-card.gallery-shape-6,
  .page-inner .clinic-gallery-card.gallery-shape-7{min-height:275px}
  .page-inner .section-team{padding:43px 0 50px}
  .page-inner .section-team .team-directory-grid .home-team-card-body{min-height:195px;padding:21px 18px}
  .page-inner .section-team .team-directory-grid .home-team-card-body h3{font-size:23px}
  .page-inner .doctor-profile-hero{padding:39px 0}
  .page-inner .doctor-profile-photo{width:min(86vw,310px)}
  .page-inner .doctor-profile-intro h1{font-size:31px}
  .page-inner .doctor-biography p{font-size:14px}
  .page-inner .appointment-form,
  .page-inner .form-card,
  .page-inner .contact-info{padding:18px}
  .page-inner .contact-map-section{padding:39px 0}
  .page-inner .contact-map-frame{height:325px}
  .page-inner .blog-featured-image{min-height:275px}
  .page-inner .blog-featured-content{padding:21px}
  .page-inner .blog-featured h2{font-size:27px}
  .page-inner .blog-latest-section{padding-block:45px}
  .page-inner .blog-card-image{min-height:195px}
  .page-inner .blog-article-hero{padding:39px 0 108px}
  .page-inner .blog-article-hero h1{font-size:clamp(29px,8.5vw,35px)}
  .page-inner .blog-article-layout{padding-top:39px;padding-bottom:50px}
  .page-inner .blog-article-body{font-size:15px}
  .page-inner .kvkk-content{padding-block:36px}
  .page-inner .kvkk-intro,
  .page-inner .kvkk-document article{padding:18px}
}

/* Keep wrapped education and experience entries typographically continuous. */
.doctor-resume-card li {
  color: #3e3029;
  font-size: 16px;
  font-weight: 800;
}
.doctor-resume-card li::first-line {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.doctor-profile-photo--ramazan-gozel img {
  object-position: center 18%;
}
@media (max-width: 520px) {
  .doctor-resume-card li { font-size: 14px; }
}

/* Homepage: in-house dental laboratory */
.home-lab-section {
  padding: 104px 0;
  background: linear-gradient(180deg,#f8f4f1 0%,#fff 100%);
}
.home-lab-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(390px,.92fr);
  gap: 24px;
  max-width: 1240px;
  overflow: hidden;
  padding: 24px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 9% 4%,rgba(211,146,99,.24),transparent 25%),
    linear-gradient(142deg,#2b1d17 0%,#4b2d20 54%,#2a1c17 100%);
  box-shadow: 0 38px 90px rgba(57,33,21,.18);
}
.home-lab-shell::before {
  content: '';
  position: absolute;
  right: 41%;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025),0 0 0 140px rgba(255,255,255,.018);
  pointer-events: none;
}
.home-lab-story {
  position: relative;
  z-index: 1;
  padding: 50px 42px 48px;
}
.home-lab-story>.eyebrow { color: #e2aa82; }
.home-lab-story h2 {
  max-width: 690px;
  margin: 13px 0 22px;
  color: #fff;
  font-family: Georgia,'Times New Roman',serif;
  font-size: clamp(38px,3.8vw,56px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.home-lab-intro {
  max-width: 690px;
  margin: 0;
  color: #e5d8d0;
  font-size: 16px;
  line-height: 1.78;
}
.home-lab-benefits {
  display: grid;
  gap: 0;
  margin-top: 39px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.home-lab-benefits article {
  display: grid;
  grid-template-columns: 43px minmax(0,1fr);
  gap: 17px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.home-lab-benefits article>span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(226,170,130,.42);
  border-radius: 50%;
  color: #efb990;
  background: rgba(255,255,255,.055);
}
.home-lab-benefits svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-lab-benefits h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
}
.home-lab-benefits p {
  margin: 0;
  color: #cdbeb5;
  font-size: 13px;
  line-height: 1.68;
}
.home-lab-panel {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 20px;
  color: #2d211b;
  background: linear-gradient(145deg,rgba(255,255,255,.98),rgba(247,237,230,.97));
  box-shadow: 0 22px 60px rgba(23,12,7,.22);
}
.home-lab-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 27px;
  border-bottom: 1px solid #dbc7b9;
}
.home-lab-panel-head>span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg,#c28055,#754328);
  box-shadow: 0 12px 24px rgba(117,67,40,.24);
  font-family: Georgia,serif;
  font-size: 27px;
}
.home-lab-panel-head div { display: grid; gap: 4px; min-width: 0; }
.home-lab-panel-head small { color: #a56c48; font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.home-lab-panel-head strong { font-family: Georgia,'Times New Roman',serif; font-size: 23px; font-weight: 400; line-height: 1.2; }
.home-lab-steps {
  display: grid;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.home-lab-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0,1fr) 38px;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid #e4d6cd;
}
.home-lab-steps li:first-child { border-top: 1px solid #e4d6cd; }
.home-lab-steps small { color: #ad704b; font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.home-lab-steps strong { font-size: 14px; line-height: 1.35; }
.home-lab-steps i {
  position: relative;
  width: 32px;
  height: 1px;
  background: #caa58d;
}
.home-lab-steps i::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a5663f;
}
.home-lab-founder {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: end;
  gap: 18px;
  margin-top: auto;
  padding: 22px;
  border: 1px solid #dbc4b5;
  border-radius: 14px;
  color: #32241d;
  background: rgba(255,255,255,.64);
  transition: border-color .2s,transform .2s,box-shadow .2s;
}
.home-lab-founder:hover { transform: translateY(-2px); border-color: #a86c46; box-shadow: 0 14px 28px rgba(83,48,29,.1); }
.home-lab-founder>span { display: grid; gap: 4px; min-width: 0; }
.home-lab-founder small { color: #a56c48; font-size: 9px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.home-lab-founder strong { font-family: Georgia,'Times New Roman',serif; font-size: 23px; font-weight: 400; }
.home-lab-founder em { color: #7d6a5f; font-size: 11px; font-style: normal; font-weight: 700; }
.home-lab-founder>i { color: #855034; font-size: 10px; font-style: normal; font-weight: 900; white-space: nowrap; }
.home-lab-founder b { margin-left: 4px; font-size: 15px; }
.home-lab-contact {
  justify-content: space-between;
  width: 100%;
  margin-top: 14px;
  border-radius: 11px;
}
html[dir="rtl"] .home-lab-story,
html[dir="rtl"] .home-lab-panel { text-align: right; }
html[dir="rtl"] .home-lab-founder b { display: inline-block; margin-right: 4px; margin-left: 0; transform: scaleX(-1); }
html[dir="rtl"] .home-lab-steps i { transform: scaleX(-1); }
@media (max-width: 960px) {
  .home-lab-shell { grid-template-columns: 1fr; }
  .home-lab-story { padding-bottom: 24px; }
  .home-lab-panel { margin: 0 18px 18px; }
}
@media (max-width: 600px) {
  .home-lab-section { padding: 60px 0; }
  .home-lab-shell { width: calc(100% - 24px); padding: 12px; border-radius: 22px; }
  .home-lab-story { padding: 31px 18px 22px; }
  .home-lab-story h2 { margin-top: 10px; font-size: clamp(32px,9vw,40px); }
  .home-lab-intro { font-size: 14px; line-height: 1.72; }
  .home-lab-benefits { margin-top: 29px; }
  .home-lab-benefits article { grid-template-columns: 38px minmax(0,1fr); gap: 13px; padding: 19px 0; }
  .home-lab-benefits article>span { width: 37px; height: 37px; }
  .home-lab-benefits h3 { font-size: 15px; }
  .home-lab-benefits p { font-size: 12px; }
  .home-lab-panel { margin: 0; padding: 25px 20px; border-radius: 15px; }
  .home-lab-panel-head strong { font-size: 19px; }
  .home-lab-steps li { grid-template-columns: 38px minmax(0,1fr) 25px; min-height: 61px; }
  .home-lab-steps i { width: 22px; }
  .home-lab-founder { grid-template-columns: 1fr; gap: 14px; padding: 18px; }
  .home-lab-founder>i { white-space: normal; }
  .home-lab-contact { min-height: 52px; padding-inline: 17px; font-size: 11px; }
}

/* Homepage: central Antalya location */
.home-location-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0 76px;
  background: #fffaf6;
}
.home-location-section::before {
  content: '';
  position: absolute;
  top: -240px;
  left: -190px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(165,102,63,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 76px rgba(165,102,63,.025),0 0 0 152px rgba(30,73,82,.018);
  pointer-events: none;
}
.home-location-shell { position: relative; z-index: 1; max-width: 1240px; }
.home-location-heading {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(360px,.72fr);
  align-items: end;
  gap: 88px;
  margin-bottom: 36px;
}
.home-location-heading .eyebrow { color: #a5663f; letter-spacing: .16em; }
.home-location-heading h2 {
  max-width: 720px;
  margin: 12px 0 0;
  color: #281d18;
  font-family: Georgia,'Times New Roman',serif;
  font-size: clamp(40px,4.2vw,58px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.035em;
}
.home-location-heading>p {
  margin: 0;
  padding: 4px 0 4px 27px;
  border-left: 1px solid #c38964;
  color: #74635a;
  font-size: 15px;
  line-height: 1.8;
}
.home-location-layout {
  display: grid;
  grid-template-columns: minmax(350px,.85fr) minmax(0,1.15fr);
  gap: 18px;
}
.home-location-feature {
  position: relative;
  display: flex;
  min-height: 370px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 73% 18%,rgba(225,157,109,.3),transparent 24%),
    linear-gradient(145deg,#1c3840,#172d33 58%,#10242a);
  box-shadow: 0 28px 64px rgba(24,51,57,.18);
}
.home-location-feature::before,
.home-location-feature::after {
  content: '';
  position: absolute;
  inset: -35%;
  opacity: .1;
  transform: rotate(-18deg);
  background-image: linear-gradient(rgba(255,255,255,.8) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.8) 1px,transparent 1px);
  background-size: 62px 62px;
  pointer-events: none;
}
.home-location-feature::after {
  inset: auto -20% 22% 35%;
  height: 2px;
  opacity: .32;
  transform: rotate(-31deg);
  background: linear-gradient(90deg,transparent,#dda276 20%,#dda276 80%,transparent);
}
.home-location-map-mark {
  position: absolute;
  z-index: 1;
  top: 46px;
  right: 54px;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.23);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 15px rgba(255,255,255,.035);
  backdrop-filter: blur(7px);
}
.home-location-map-mark span {
  position: relative;
  width: 31px;
  height: 39px;
  border-radius: 18px 18px 18px 3px;
  background: linear-gradient(145deg,#e4a77a,#a25f3b);
  transform: rotate(-45deg);
  box-shadow: 0 11px 23px rgba(8,24,29,.3);
}
.home-location-map-mark span::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 8px;
  width: 14px;
  height: 14px;
  border: 3px solid #fff;
  border-radius: 50%;
}
.home-location-map-mark i { position: absolute; bottom: 11px; width: 33px; height: 7px; border-radius: 50%; background: rgba(0,0,0,.2); }
.home-location-feature-copy { position: relative; z-index: 2; }
.home-location-feature-copy>span { color: #e0a276; font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.home-location-feature h3 { max-width: 430px; margin: 11px 0 15px; color: #fff; font-family: Georgia,'Times New Roman',serif; font-size: clamp(29px,3vw,42px); font-weight: 400; line-height: 1.05; }
.home-location-feature p { max-width: 470px; margin: 0; color: #ccdadc; font-size: 13px; line-height: 1.72; }
.home-location-feature>a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  min-width: 225px;
  margin-top: 27px;
  padding: 14px 17px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 10px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .035em;
  transition: background .2s,border-color .2s,transform .2s;
}
.home-location-feature>a:hover { border-color: #dfa477; background: #9c5e3c; transform: translateY(-2px); }
.home-location-feature>a span { font-size: 17px; }
.home-location-destinations { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.home-location-destination {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr);
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 18px 20px;
  border: 1px solid #eadbd1;
  border-radius: 15px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 28px rgba(76,45,27,.055);
  transition: transform .2s,border-color .2s,box-shadow .2s;
}
.home-location-destination:hover { transform: translateY(-3px); border-color: #c79b7e; box-shadow: 0 18px 36px rgba(76,45,27,.09); }
.home-location-destination:last-child { grid-column: 1/-1; }
.home-location-destination-icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 13px;
  color: #a46540;
  background: #f5e9e0;
}
.home-location-destination-icon svg,
.home-location-footer>span svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.home-location-destination>span:last-child { display: grid; gap: 5px; min-width: 0; }
.home-location-destination strong { color: #2c201a; font-family: Georgia,'Times New Roman',serif; font-size: 21px; font-weight: 400; line-height: 1; }
.home-location-destination small { color: #79685e; font-size: 11px; font-weight: 800; line-height: 1.35; }
.home-location-footer {
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) minmax(180px,250px);
  align-items: center;
  gap: 19px;
  margin-top: 18px;
  padding: 23px 26px;
  border: 1px solid #dec9bb;
  border-radius: 17px;
  background: linear-gradient(110deg,#f3e5db,#fff 65%);
}
.home-location-footer>span { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(145deg,#bd7950,#77432a); }
.home-location-footer>div { min-width: 0; }
.home-location-footer strong { display: block; margin-bottom: 5px; color: #34251e; font-size: 14px; }
.home-location-footer p { margin: 0; color: #74635a; font-size: 12px; line-height: 1.6; }
.home-location-footer>small { padding-left: 19px; border-left: 1px solid #d9c3b4; color: #978278; font-size: 9px; line-height: 1.55; }
html[dir="rtl"] .home-location-heading>p { padding-right: 27px; padding-left: 0; border-right: 1px solid #c38964; border-left: 0; }
html[dir="rtl"] .home-location-footer>small { padding-right: 19px; padding-left: 0; border-right: 1px solid #d9c3b4; border-left: 0; }
@media (max-width: 960px) {
  .home-location-heading { grid-template-columns: 1fr; gap: 24px; }
  .home-location-heading>p { max-width: 700px; }
  .home-location-layout { grid-template-columns: 1fr; }
  .home-location-feature { min-height: 350px; }
}
@media (max-width: 650px) {
  .home-location-section { padding: 62px 0 58px; }
  .home-location-heading { gap: 19px; margin-bottom: 30px; }
  .home-location-heading h2 { font-size: clamp(33px,9vw,40px); }
  .home-location-heading>p { padding-left: 18px; font-size: 13px; line-height: 1.68; }
  .home-location-feature { min-height: 325px; padding: 28px 23px; border-radius: 18px; }
  .home-location-map-mark { top: 30px; right: 30px; width: 72px; height: 72px; }
  .home-location-feature h3 { max-width: 290px; font-size: 29px; }
  .home-location-feature p { font-size: 12px; }
  .home-location-feature>a { width: 100%; min-width: 0; }
  .home-location-destinations { gap: 9px; }
  .home-location-destination { grid-template-columns: 39px minmax(0,1fr); gap: 10px; min-height: 91px; padding: 14px 12px; border-radius: 12px; }
  .home-location-destination-icon { width: 38px; height: 38px; border-radius: 10px; }
  .home-location-destination-icon svg { width: 19px; height: 19px; }
  .home-location-destination strong { font-size: 17px; }
  .home-location-destination small { font-size: 9px; }
  .home-location-footer { grid-template-columns: 42px minmax(0,1fr); gap: 14px; padding: 19px; }
  .home-location-footer>span { width: 42px; height: 42px; }
  .home-location-footer>small { grid-column: 1/-1; padding: 13px 0 0; border-top: 1px solid #d9c3b4; border-left: 0; }
  html[dir="rtl"] .home-location-heading>p { padding-right: 18px; }
  html[dir="rtl"] .home-location-footer>small { padding: 13px 0 0; border-top: 1px solid #d9c3b4; border-right: 0; }
}

/* Hero: two high-visibility clinic advantages */
.hero-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 9px;
  width: min(100%,690px);
  margin: 0 0 15px;
}
#in-house-lab,
#central-location { scroll-margin-top: 105px; }
.hero-highlight {
  display: grid;
  grid-template-columns: 38px minmax(0,1fr) 15px;
  align-items: center;
  gap: 11px;
  min-height: 63px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 11px;
  color: #fff;
  background: rgba(255,255,255,.11);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  transition: transform .2s,border-color .2s,background .2s;
}
.hero-highlight:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.18); }
.hero-highlight-icon {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 10px;
  color: #6d3d25;
  background: #fff;
}
.hero-highlight-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.hero-highlight>span:nth-child(2) { display: grid; gap: 2px; min-width: 0; }
.hero-highlight small { color: #f1d8c6; font-size: 8px; font-weight: 900; line-height: 1.25; letter-spacing: .1em; text-transform: uppercase; }
.hero-highlight strong { color: #fff; font-size: 12px; line-height: 1.25; }
.hero-highlight>i { color: #f0c7aa; font-size: 13px; font-style: normal; transition: transform .2s; }
.hero-highlight:hover>i { transform: translateY(3px); }
.hero .hero-subtitle { margin-bottom: 14px; }
.hero .type-controls { margin-top: 12px; }
.home-slide-content .hero-highlight-grid { margin-top: 18px; }
html[dir="rtl"] .hero-highlight>i { justify-self: end; }
@media (max-width: 600px) {
  .hero-highlight-grid { gap: 6px; margin-bottom: 10px; }
  .hero-highlight { grid-template-columns: 30px minmax(0,1fr); gap: 8px; min-height: 59px; padding: 8px; border-radius: 9px; }
  .hero-highlight-icon { width: 30px; height: 30px; border-radius: 8px; }
  .hero-highlight-icon svg { width: 17px; height: 17px; }
  .hero-highlight small { font-size: 7px; letter-spacing: .065em; }
  .hero-highlight strong { font-size: 10px; line-height: 1.2; }
  .hero-highlight>i { display: none; }
  .hero .type-controls { margin-top: 9px; }
}
