/* ===== Design Tokens (keep once, top of file) ===== */
:root{
  --clr-yellow:#F5C945;
  --clr-black:#111111;
  --clr-slate:#5F6B7A;
  --clr-ice:#F7F9FC;
  --radius-xl:18px;
  --radius-lg:14px;
  --radius-md:10px;
  --shadow-sm:0 6px 18px rgba(0,0,0,.06);
  --shadow-md:0 10px 28px rgba(0,0,0,.08);
  --transition:200ms ease;
  --container:1200px;
}

html, body {
  width: 100vw;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Inter,Arial,sans-serif;
  color:var(--clr-black);
  background:#fff;
  line-height:1.55;
}

.container{width:100%;max-width:var(--container);margin-inline:auto;padding-inline:20px}

/* ===== Header / Navbar ===== */
/* ===== Header / Navbar ===== */
.site-header{
  position:sticky; top:0; inset-inline:0; z-index:1000;
  background:#fff; border-bottom:1px solid rgba(0,0,0,.05);
  transition:box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.is-scrolled{ box-shadow:var(--shadow-sm); backdrop-filter:saturate(1.1) blur(2px) }

.header-row{
  height:70px; display:flex; align-items:center; gap:16px;
  position:relative;
}

/* Brand (logo removed) */
.brand{
  display:flex; align-items:center; gap:8px;
  text-decoration:none; color:var(--clr-black);
  font-weight:700; letter-spacing:.2px; white-space:nowrap;
  order:1;
}

/* Desktop nav (single row, stays on one line) */
.site-nav{
  order:2;
  margin-left:24px;            /* space after brand */
}
.nav-list{
  display:flex; gap:22px; align-items:center;
  list-style:none; margin:0; padding:0;
  flex-wrap:nowrap;            /* prevent stacking on desktop */
}
.nav-link{
  position:relative;
  text-decoration:none;
  color:var(--clr-slate);
  padding:12px 0;
  font-weight:700;
  white-space:nowrap;
  transition:color var(--transition);
}
/* modern yellow underline */
.nav-link::after{
  content:""; position:absolute; left:0; right:0; bottom:6px;
  height:2px; background:var(--clr-yellow);
  transform:scaleX(0); transform-origin:left;
  transition:transform 220ms ease;
}
.nav-link:hover,
.nav-link:focus-visible{ color:var(--clr-black) }
.nav-link:hover::after,
.nav-link:focus-visible::after{ transform:scaleX(1) }
.nav-link[aria-current="page"]{ color:var(--clr-black) }
.nav-link[aria-current="page"]::after{ transform:scaleX(1) }

/* Language switch — now to the far right on desktop */
.lang-switch{
  order:3;
  margin-left:auto;            /* push to right edge */
  display:flex; gap:8px; align-items:center;
}
.lang-link{
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:36px; border-radius:10px;
  text-decoration:none; font-weight:800; font-size:.92rem;
  color:#000; background:#fff; border:1px solid rgba(0,0,0,.08);
  transition:transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space:nowrap;
}
.lang-link:hover{ transform:translateY(-1px) }
.lang-link.is-active{ background:var(--clr-yellow); border-color:transparent }

/* Hamburger */
.nav-toggle{
  margin-left:10px; width:46px; height:40px; border:0; background:#fff; border-radius:10px;
  display:none; align-items:center; justify-content:center; box-shadow:inset 0 0 0 1px rgba(0,0,0,.08);
  cursor:pointer; transition:box-shadow var(--transition), transform var(--transition);
  order:4;
}
.nav-toggle:hover{ transform:translateY(-1px) }
.nav-toggle-bar{ width:22px; height:2px; background:var(--clr-black); display:block; position:relative }
.nav-toggle-bar::before,.nav-toggle-bar::after{ content:""; position:absolute; left:0; right:0; height:2px; background:var(--clr-black) }
.nav-toggle-bar::before{ top:-7px } .nav-toggle-bar::after{ top:7px }

.mobile-drawer {
  position: fixed;
  inset-block: 0;
  right: 0;
  width: min(88vw, 380px);
  background: #fff;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transform: translateX(100%); /* off-canvas without expanding layout */
  transition: transform 260ms ease;
  z-index: 1002;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-head{
  position: sticky;          /* key */
  top: 0;                    /* key */
  z-index: 10;
  height: 60px;
  flex: 0 0 60px;            /* don't let it shrink */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.mobile-title{ font-weight:800; letter-spacing:.2px }
.nav-close{ width:38px; height:36px; border:0; border-radius:10px; background:#fff; box-shadow:inset 0 0 0 1px rgba(0,0,0,.08); cursor:pointer; font-size:22px; line-height:1 }
.mobile-nav{
  flex: 1 1 auto;            /* fill the remaining space */
  padding: 10px 10px 2px;
  overflow: auto;            /* content scrolls under the sticky header */
  -webkit-overflow-scrolling: touch;
}
.mobile-list{ list-style:none; margin:0; padding:0 }
.mobile-link{ display:block; padding:12px 12px; border-radius:12px; color:var(--clr-slate); text-decoration:none; font-weight:600; transition:background var(--transition), color var(--transition) }
.mobile-link:hover{ background:var(--clr-ice); color:var(--clr-black) }

/* Backdrop */
.nav-backdrop{ position:fixed; inset:0; background:rgba(0,0,0,.28); z-index:1001 }
[hidden]{ display:none !important }

/* ===== Responsive ===== */
@media (max-width: 1024px){
  /* Hide desktop list, show hamburger */
  .site-nav{ display:none }
  .nav-toggle{ display:inline-flex }

  /* GRID: brand | language | hamburger */
  .header-row{
    display:grid;
    grid-template-columns: 1fr auto 46px;
    align-items:center;
    gap:10px;
    height:64px;
  }

  /* Brand guard */
  .brand{
    justify-self:start;
    max-width:55vw;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  /* Language picker centered in grid */
  .lang-switch{
    margin-left:0;
    justify-self:center;
    gap:6px;
  }
  .lang-link{ width:36px; height:34px; font-size:.88rem }

  .nav-toggle{ justify-self:end }
}

@media (max-width: 480px){
  .brand{ font-size:.98rem }
}

@media (max-width: 390px){
  .brand-text{ font-size:14px }
}

@media (prefers-reduced-motion: reduce){
  .nav-toggle:hover, .lang-link:hover, .nav-link, .mobile-link{ transition:none }
}


/* ===== Intro / Hero ===== */
.intro-section{
  background:#fff;
  padding:68px 0 56px;
}

.intro-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr; /* text | image */
  align-items:center;
  gap:40px;
}

.intro-title{
  font-size: clamp(28px, 3.1vw, 44px);
  line-height:1.15;
  margin:0 0 14px;
  font-weight:900;
  letter-spacing:.2px;
}
.intro-title .accent{
  position:relative;
}
.intro-title .accent::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-4px;
  height:6px; background:linear-gradient(90deg, var(--clr-yellow), #ffd966);
  border-radius:6px;
  opacity:.85;
}

.intro-lead{
  margin:0 0 18px;
  color:var(--clr-slate);
  font-size: clamp(16px, 1.3vw, 18px);
  max-width: 58ch;
}

.intro-cta{
  display:flex; gap:12px; align-items:center;
  margin:16px 0 18px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px; border-radius:12px;
  font-weight:800; text-decoration:none; cursor:pointer;
  border:1px solid transparent; transition:transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}
.btn:focus-visible{ outline:3px solid rgba(0,0,0,.25); outline-offset:2px }

.btn-primary{
  background:var(--clr-yellow); color:#000;
  box-shadow:0 8px 20px rgba(245,201,69,.28);
}
.btn-primary:hover{ transform:translateY(-1px) }

.btn-ghost{
  background:#fff; color:var(--clr-black);
  border-color:rgba(0,0,0,.12);
}
.btn-ghost:hover{ background:var(--clr-ice) }

/* small selling points */
.intro-points{
  display:flex; flex-wrap:wrap; gap:14px 22px;
  padding:0; margin:8px 0 0; list-style:none; color:var(--clr-slate);
}
.intro-points li{
  display:flex; align-items:center; gap:8px; font-weight:600;
}

/* Media */
.intro-media{
  margin:0; padding:0;
  border-radius:20px; overflow:hidden;
  box-shadow: var(--shadow-md);
}
.intro-media img{ display:block; width:100%; height:auto }

/* Reveal animation (progressively enhanced) */
[data-reveal]{ opacity:0; transform:translateY(12px); transition:opacity 420ms ease, transform 420ms ease }
.reveal-in{ opacity:1 !important; transform:none !important }

/* ===== Responsive ===== */
@media (max-width: 1024px){
  .intro-section{ padding:42px 0 36px }
  .intro-grid{
    grid-template-columns: 1fr;   /* text only */
    gap:22px;
  }
  .intro-media{ display:none }     /* hide image on mobile/tablet */
}

@media (prefers-reduced-motion: reduce){
  [data-reveal]{ transition:none }
}



/* ===== About Section (enhanced) ===== */
.about-section{
  background: #fff;
  padding: 72px 0;
}

.about-head{
  max-width: 850px;
  margin: 0 auto 28px;
  text-align: center;
}

.overline{
  display:inline-block;
  font-weight: 900;
  letter-spacing: .5px;
  font-size: .85rem;
  color: #000;
  background: var(--clr-yellow);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.section-title{
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.2;
  margin: 10px 0 12px;
  font-weight: 900;
  letter-spacing: .2px;
}

.accent-underline{
  position: relative;
}


.accent-underline::after{
 content:"";
  display:block;
  height:6px;
  width:clamp(96px, 45%, 220px);   /* adjust to taste */
  margin:8px auto 0;               /* centers under centered headings */
  border-radius:6px;
  background:linear-gradient(90deg, var(--clr-yellow), #ffd966);
  opacity:.9;
}



.about-text{
  color: var(--clr-slate);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 16px auto 0;
  max-width: 70ch;
}

/* --- Images --- */

/* Desktop: 3-up row under text */
.about-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

/* Card styling */
.about-img{
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
  background: #fff;
}
.about-img::before{
  /* subtle edge vignette for depth */
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(100% 120% at 50% 50%, rgba(0,0,0,0) 60%, rgba(0,0,0,.06) 100%);
  pointer-events:none;
}
.about-img:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-img img{
  display:block; width:100%; height:auto;
}

/* Reveal helper (already in your file) */
[data-reveal]{ opacity:0; transform:translateY(12px); transition:opacity 420ms ease, transform 420ms ease }
.reveal-in{ opacity:1 !important; transform:none !important }

/* ===== Tablet/Mobile behavior: vertical scroll-snap slider ===== */
/* ===== Tablet/Mobile behavior: stacked images (no inner scrolling) ===== */
@media (max-width: 1024px){
  .about-head{ text-align:left; margin:0 0 18px }
  .accent-underline::after{ left:0; transform:none; max-width:200px }

  /* Stack images vertically without trapping scroll */
  .about-gallery{
    display:grid;
    grid-template-columns: 1fr;
    gap:16px;
    margin-top:16px;
    max-height:none;
    overflow:visible;
    padding-right:0;
    scroll-snap-type:none;
  }

  .about-img{
    margin:0;
    border-radius:16px;
    /* remove scroll-snap alignment to avoid “sticky” feeling */
  }
}

/* Ultra small */
@media (max-width: 520px){
  .about-text{ font-size: 1rem }
  .overline{ font-size:.82rem; padding:5px 9px }
}


/* Ultra small */
@media (max-width: 520px){
  .about-text{ font-size: 1rem }
  .overline{ font-size:.82rem; padding:5px 9px }
}


/* ===== Treatments Preview ===== */
/* ===== Treatments Preview ===== */
/* ===== Treatments Preview ===== */
.treatments-section{
  background: var(--clr-ice);
  padding: 72px 0;
}

.treat-head{
  text-align:center;
  max-width: 820px;
  margin: 0 auto 28px;
}
.treat-lead{
  color: var(--clr-slate);
  margin: 10px auto 0;
  font-size: 1.05rem;
  max-width: 70ch;
}

/* grid: desktop 3 columns, tablet 2, mobile 1 */
.treat-grid{
  /* Reset UL defaults to avoid right-skew */
  list-style: none;
  padding: 0;
  margin: 24px 0 0;

  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: stretch;
  align-items: stretch;
  width: 100%;
}

/* Card */
.treat-card{
  background:#fff;
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  display:flex; flex-direction:column; align-items:flex-start; gap:10px;
  width:100%;
  margin:0;              /* no stray offsets */
}
.treat-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Icon / text */
.treat-icon{ width:56px; height:56px; border-radius:16px; overflow:hidden; flex:0 0 auto }
.treat-title{ margin:2px 0 2px; font-size:1.05rem; font-weight:900; letter-spacing:.2px; color:var(--clr-black) }
.treat-desc{ margin:0; color:var(--clr-slate); line-height:1.6 }

/* CTA */
.treat-cta{ margin-top:22px; text-align:center }

/* Staggered reveal delays */
.treat-grid .treat-card:nth-child(1){ transition-delay: 40ms }
.treat-grid .treat-card:nth-child(2){ transition-delay: 80ms }
.treat-grid .treat-card:nth-child(3){ transition-delay: 120ms }
.treat-grid .treat-card:nth-child(4){ transition-delay: 160ms }
.treat-grid .treat-card:nth-child(5){ transition-delay: 200ms }
.treat-grid .treat-card:nth-child(6){ transition-delay: 240ms }

/* Responsive columns */
@media (max-width: 1024px){
  .treat-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)) }
}
@media (max-width: 680px){
  .treat-grid{
    grid-template-columns: 1fr;  /* exactly one column */
    justify-items: stretch;
  }
  .treat-card{ padding:18px 16px }
  /* Remove decorative underline on very small screens */
  .treat-head .accent-underline::after{ content: none }
}


/* ===== CTA Section ===== */
.cta-section{
  background:
    radial-gradient(1200px 500px at 20% -10%, rgba(245,201,69,.18), transparent 60%),
    radial-gradient(800px 400px at 110% 10%, rgba(245,201,69,.18), transparent 60%),
    #fff;
  padding: 70px 0;
  border-top: 1px solid rgba(0,0,0,.04);
}

.cta-wrap{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: center;
  padding: 18px 20px 22px;
  border-radius: 20px;
  background: var(--clr-ice);
  box-shadow: var(--shadow-sm);
}

.cta-title{
  margin: 0;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .2px;
}

.cta-lead{
  margin: 10px auto 0;
  color: var(--clr-slate);
  max-width: 70ch;
  font-size: 1.05rem;
}

.cta-actions{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
  justify-content: center;
}

/* Quick contact chips */
.cta-quick{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.cta-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  text-decoration: none;
  color: var(--clr-black);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}
.cta-chip:hover{ transform: translateY(-1px); box-shadow: var(--shadow-md) }

.chip-icon{
  display:inline-flex; align-items:center; justify-content:center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--clr-yellow);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.06);
}

/* Larger screens: widen the container a bit and left-align text if desired later */
@media (min-width: 1025px){
  .cta-wrap{
    grid-template-columns: 1fr;
    padding: 24px 40px 30px;
  }
}



/* ===== Gallery Preview ===== */
.gallery-section{
  background:#fff;
  padding:72px 0;
}

.gallery-head{
  text-align:center;
  margin:0 auto 28px;
  max-width: 820px;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

.gallery-item{
  margin:0;
  border-radius:16px;
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.gallery-item img{
  display:block;
  width:100%;
  height:auto;
  transition: transform 240ms ease;
}
.gallery-item:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery-item:hover img{
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1024px){
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px){
  .gallery-grid{
    grid-template-columns: 1fr;
  }
}



/* ===== Blog Preview ===== */
.blog-section{
  background:#fff;
  padding:72px 0;
}

.blog-head{
  text-align:center;
  max-width:820px;
  margin:0 auto 28px;
}
.blog-lead{
  color:var(--clr-slate);
  margin:10px auto 0;
  font-size:1.05rem;
  max-width:70ch;
}

/* Grid: 3/2/1 columns */
.blog-grid{
  list-style:none;
  padding:0;
  margin:24px 0 0;
  display:grid;
  gap:18px;
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.blog-card{ margin:0 }
.blog-link{
  display:block;
  text-decoration:none;
  color:inherit;
  height:100%;
}

.post{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform 220ms ease, box-shadow 220ms ease;
  height:100%;
  display:flex; flex-direction:column;
}
.post:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md) }

.post-media{
  margin:0; overflow:hidden;
  aspect-ratio: 1200 / 720;           /* crop to a wide banner for variety */
}
.post-media img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform 240ms ease;
}
.post:hover .post-media img{ transform:scale(1.06) }

.post-body{
  padding:14px 16px 16px;
  display:flex; flex-direction:column; gap:6px;
}
.post-date{
  font-size:.85rem; color:var(--clr-slate);
}
.post-title{
  font-size:1.05rem; font-weight:900; letter-spacing:.2px; margin:0;
}
.post-excerpt{
  color:var(--clr-slate); margin:2px 0 6px; line-height:1.55;
}
.post-more{
  margin-top:auto;
  font-weight:800;
  color:#000;
  display:inline-flex; align-items:center;
  gap:6px;
}
.post-more::after{
  content:"";
  width:16px; height:2px; background:var(--clr-yellow);
  transform:translateX(0); transition:transform 200ms ease;
}
.post:hover .post-more::after{ transform:translateX(4px) }

/* Responsive */
@media (max-width:1024px){
  .blog-grid{ grid-template-columns:repeat(2, minmax(0,1fr)) }
}
@media (max-width:680px){
  .blog-grid{ grid-template-columns:1fr }
  .blog-head .accent-underline::after{ content:none } /* keep alignment tidy */
}

.blog-cta{
  margin-top:22px; text-align:center;
}


/* ===== Footer ===== */
.site-footer{
  background:#fafafa;
  border-top:1px solid rgba(0,0,0,.08);
  margin-top:60px;
  font-size:.95rem;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap:32px;
  padding:48px 0;
}

.footer-title{
  font-weight:900;
  font-size:1.2rem;
  margin:0 0 8px;
}
.footer-about{
  color:var(--clr-slate);
  max-width: 45ch;
  line-height:1.6;
  margin:0;
}

.footer-heading{
  font-weight:800;
  margin:0 0 10px;
  font-size:1rem;
}
.footer-links{
  list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:6px;
}
.footer-links a{
  color:var(--clr-slate);
  text-decoration:none;
  transition:color 180ms ease;
}
.footer-links a:hover{ color:#000 }

.contact-list{
  list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px;
}
.contact-list a{
  display:flex; align-items:center; gap:8px;
  text-decoration:none; color:var(--clr-slate);
  transition:color 180ms ease;
}
.contact-list a:hover{ color:#000 }
.contact-list svg{ flex:0 0 auto }

.footer-bottom{
  text-align:center;
  padding:16px 0;
  border-top:1px solid rgba(0,0,0,.06);
  font-size:.85rem;
  color:var(--clr-slate);
}

/* Responsive */
@media (max-width: 1024px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
    gap:24px;
  }
}
@media (max-width: 680px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap:28px;
    text-align:center;
  }
  .footer-about{ margin:0 auto }
  .footer-links, .contact-list{ align-items:center }
}


/* ===== Page Hero (compact) ===== */
.page-hero{
  background:#fff;
  padding:56px 0 32px;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:28px;
  align-items:center;
}
.hero-title{
  font-size: clamp(28px, 3vw, 44px);
  line-height:1.15;
  margin:0 0 10px;
  font-weight:900;
}
.hero-lead{
  color:var(--clr-slate);
  max-width: 60ch;
  margin:0 0 14px;
}
.hero-media{
  margin:0; border-radius:18px; overflow:hidden; box-shadow:var(--shadow-sm);
}
.hero-media img{ display:block; width:100%; height:auto }

@media (max-width:1024px){
  .hero-grid{ grid-template-columns:1fr; gap:18px }
  .hero-media{ display:none } /* keep it text-first on mobile for speed */
}

/* ===== In-page Nav (anchor chips) ===== */
.svc-index{
  background: linear-gradient(0deg, #fff, #fff) padding-box,
              radial-gradient(800px 400px at 10% -10%, rgba(245,201,69,.14), transparent 60%) border-box;
  border-bottom:1px solid rgba(0,0,0,.06);
  padding:16px 0;
}
.svc-index-grid{
  list-style:none; padding:0; margin:0;
  display:flex; flex-wrap:wrap; gap:10px;
}
.svc-chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px; border-radius:999px;
  background:#fff; border:1px solid rgba(0,0,0,.08);
  text-decoration:none; color:#000; font-weight:800;
  transition:transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow:0 6px 16px rgba(0,0,0,.06);
}
.svc-chip:hover{ transform:translateY(-1px); box-shadow:var(--shadow-md) }
.chip-ico{
  width:26px; height:26px; border-radius:50%;
  background:var(--clr-yellow);
  display:inline-flex; align-items:center; justify-content:center;
  box-shadow:inset 0 0 0 2px rgba(0,0,0,.06);
}

/* ===== Service Detail Cards ===== */
.svc-cards{ background:#fff; padding:36px 0 64px }
.svc-card{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr; /* media | body */
  gap:26px;
  padding:18px;
  border-radius:20px;
  background:var(--clr-ice);
  box-shadow: var(--shadow-sm);
  margin: 16px 0 22px;
}
.svc-media{
  border-radius:16px; overflow:hidden; box-shadow: var(--shadow-sm);
}
.svc-media img{ display:block; width:100%; height:auto }

.svc-body{ display:flex; flex-direction:column; gap:8px }
.svc-icon{
  width:44px; height:44px; border-radius:12px; background:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.06);
}
.svc-title{
  margin:0; font-size: clamp(20px, 2.2vw, 28px); font-weight:900; letter-spacing:.2px;
}
.svc-lead{ color:var(--clr-slate); margin:2px 0 6px }
.svc-list{
  list-style: none; padding:0; margin:0; display:grid; gap:8px;
}
.svc-list li{
  display:flex; gap:8px; align-items:flex-start;
}
.svc-list li::before{
  content:""; width:14px; height:2px; margin-top:.8em; background:var(--clr-yellow); border-radius:2px; flex:0 0 auto;
}
.svc-cta{ margin-top:auto }

/* Responsive adjustments */
@media (max-width:1024px){
  .svc-card{ grid-template-columns:1fr; padding:14px }
  .svc-media{ order:2 } /* text first on mobile */
  .svc-body{ order:1 }
}

/* Smooth scroll behavior for in-page anchors (already have html{scroll-behavior:smooth}) */
/* Ensure anchor offset under sticky header if needed */
:target{ scroll-margin-top: 90px; }



/* ===== Testimonials ===== */
.testimonials-section{
  background:#fff;
  padding:72px 0;
}

.testimonials-head{
  text-align:center;
  max-width:720px;
  margin:0 auto 36px;
}
.testimonials-lead{
  color:var(--clr-slate);
  margin-top:10px;
  font-size:1.05rem;
}

.testimonials-grid{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card{
  background:#fafafa;
  border-radius:16px;
  padding:20px;
  box-shadow:var(--shadow-sm);
  transition:transform 180ms ease, box-shadow 180ms ease;
}
.testimonial-card:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow-md);
}
.testimonial-text{
  margin:0 0 10px;
  line-height:1.55;
  color:#222;
}
.testimonial-author{
  font-weight:700;
  font-size:.95rem;
  color:#000;
}


/* Google Reviews CTA */
.reviews-cta{
  text-align:center;
  margin-top:36px;
}
.reviews-cta .btn{
  font-size:1rem;
  padding:12px 22px;
  border-radius:999px;
}



/* ===== Patili Dostlarımız — Gallery Page CSS (updated) ===== */

/* Hero / Title */
.gallery-hero{
  background:#fff;
  padding:56px 0 24px;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.gallery-lead{
  color:var(--clr-slate);
  max-width:70ch;
  margin:10px 0 0;
  font-size:1.05rem;
}

/* Full Gallery Section */
.gallery-full{
  background:#fff;
  padding:32px 0 72px;
}

/* Responsive grid: 3 / 2 / 1 columns */
.gallery-grid{
  display:grid;
  gap:18px;
}
.gallery-grid--full{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1024px){
  .gallery-grid--full{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px){
  .gallery-grid--full{ grid-template-columns: 1fr; }
}

/* Card */
.gallery-card{
  margin:0;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
  position:relative;
  isolation:isolate;
}
.gallery-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Media */
.gallery-card picture,
.gallery-card img{
  display:block; width:100%; height:auto;
  object-fit:cover;
}

/* Caption overlay */
.gallery-cap{
  position:absolute;
  left:12px; right:12px; bottom:12px;
  z-index:2;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.9);
  color:#000;
  font-weight:800;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  transform: translateY(6px);
  opacity:0;
  transition: opacity 220ms ease, transform 220ms ease;
}

/* Hover/focus reveal on desktop */
.gallery-card:hover .gallery-cap,
.gallery-card:focus-within .gallery-cap{
  opacity:1; transform: translateY(0);
}
.gallery-card:hover img,
.gallery-card:focus-within img{
  transform: scale(1.04);
  transition: transform 240ms ease;
}

/* Mobile: captions always visible, no hover */
@media (max-width: 768px){
  .gallery-cap{
    opacity:1 !important;
    transform:none !important;
    position:static;
    margin-top:6px;
    background:none;
    box-shadow:none;
    text-align:center;
  }
}


/* ===== Blog Page ===== */

/* Intro hero */
.blog-hero{
  background:#fff;
  padding:56px 0 30px;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.hero-center{
  text-align:center;
  max-width: 820px;
  margin: 0 auto;
}
.blog-hero-lead{
  color:var(--clr-slate);
  margin-top:10px;
  font-size:1.05rem;
}

/* Listing */
.blog-listing{
  background:#fff;
  padding:30px 0 72px;
}

/* Cards grid (reuse pattern) */
.blog-grid{
  list-style:none;
  padding:0;
  margin:24px 0 0;
  display:grid;
  gap:18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width:1024px){
  .blog-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width:680px){
  .blog-grid{ grid-template-columns: 1fr; }
  .blog-hero .accent-underline::after{ content:none; } /* keep small layouts tidy */
}

/* Card */
.blog-card{ margin:0; }
.blog-link{
  display:block; text-decoration:none; color:inherit; height:100%;
}
.post{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease;
  height:100%;
  display:flex; flex-direction:column;
}
.post:hover{ transform:translateY(-4px); box-shadow: var(--shadow-md) }

.post-media{
  margin:0; overflow:hidden;
  aspect-ratio: 1200 / 720; /* banner-like crop for visual variety */
}
.post-media img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform 240ms ease;
}
.post:hover .post-media img{ transform: scale(1.06) }

.post-body{
  padding:14px 16px 16px;
  display:flex; flex-direction:column; gap:6px;
}
.post-date{
  font-size:.85rem; color:var(--clr-slate);
}
.post-title{
  font-size:1.05rem; font-weight:900; letter-spacing:.2px; margin:0;
}
.post-excerpt{
  color:var(--clr-slate); margin:2px 0 6px; line-height:1.55;
}
.post-more{
  margin-top:auto;
  font-weight:800;
  color:#000;
  display:inline-flex; align-items:center; gap:6px;
}
.post-more::after{
  content:"";
  width:16px; height:2px; background:var(--clr-yellow);
  transform:translateX(0); transition:transform 200ms ease;
}
.post:hover .post-more::after{ transform:translateX(4px) }


/* ===== Contact Page ===== */
.contact-hero{
  background:#fff;
  padding:56px 0 26px;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.contact-lead{
  color:var(--clr-slate);
  margin-top:10px;
  font-size:1.05rem;
}
.contact-quick{ margin-top:14px }

/* Details grid */
.contact-details{
  background:#fff;
  padding:32px 0 70px;
}
.contact-grid{
  display:grid;
  gap:18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1024px){
  .contact-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px){
  .contact-grid{ grid-template-columns: 1fr; }
}

.contact-card{
  background: var(--clr-ice);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display:flex; flex-direction:column; gap:8px;
}
.contact-ico{
  width:44px; height:44px; border-radius:12px; background:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
.contact-title{
  margin:4px 0 2px; font-size:1.05rem; font-weight:900; letter-spacing:.2px;
}
.contact-text{ margin:0 }
.contact-text a{ color:#000; text-decoration:none; border-bottom: 2px solid var(--clr-yellow); }
.contact-sub{ margin:0; color:var(--clr-slate) }

/* Hours strip */
.hours-strip{
  background: #fafafa;
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
}
.hours-title{
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 900;
}
.hours-list{
  list-style:none; padding:0; margin:0; display:grid; gap:8px;
}
.hours-list li{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 12px; border-radius:12px; background:#fff;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}
.hours-list li span:first-child{ color:#000; font-weight:800 }
.hours-list li span:last-child{ color:#111; font-weight:700 }
.hours-note{ margin:10px 2px 0; color:var(--clr-slate) }

/* Map button */
.map-btn{
  display:inline-block;
  font-weight:800;
  text-decoration:none;
  padding:10px 14px;
  border-radius:999px;
}

/* Small tidy-up on very small screens */
@media (max-width: 520px){
  .hours-list li{ padding:10px }
}


/* ===== About — Hero ===== */
.about-hero{
  background:#fff;
  padding:56px 0 30px;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.about-hero-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:24px;
  align-items:center;
}
.about-hero-lead{
  color:var(--clr-slate);
  margin:10px 0 14px;
  max-width: 65ch;
}
.about-hero-media{
  margin:0; border-radius:18px; overflow:hidden; box-shadow: var(--shadow-sm);
}
.about-hero-actions{ display:flex; gap:10px; flex-wrap:wrap }
@media (max-width:1024px){
  .about-hero-grid{ grid-template-columns: 1fr }
  .about-hero-media{ display:none } /* perf: text-first on mobile */
}

/* ===== About — Who we are ===== */
.about-who{
  background:#fff;
  padding:32px 0 16px;
}
.about-who-grid{
  display:grid; gap:24px;
  grid-template-columns: 1fr 1fr;
  align-items:center;
}
.about-who-media{ margin:0; border-radius:16px; overflow:hidden; box-shadow: var(--shadow-sm) }
.about-title{ margin:0 0 8px; font-weight:900; font-size: clamp(20px, 2.2vw, 28px) }
.about-lead{ color:var(--clr-slate); margin:2px 0 10px }
.about-bullets{ list-style:none; padding:0; margin:0; display:grid; gap:8px }
.about-bullets li{ display:flex; gap:8px }
.about-bullets li::before{
  content:""; width:14px; height:2px; margin-top:.8em; background:var(--clr-yellow); border-radius:2px; flex:0 0 auto;
}
@media (max-width:1024px){
  .about-who-grid{ grid-template-columns: 1fr }
}

/* ===== Mission & Values ===== */
.about-values{ background:#fff; padding:24px 0 12px }
.values-head{ text-align:center; max-width:820px; margin:0 auto 22px }
.values-lead{ color:var(--clr-slate); margin:8px 0 0; font-size:1.05rem }
.values-grid{
  list-style:none; padding:0; margin:0;
  display:grid; gap:18px;
  grid-template-columns: repeat(4, minmax(0,1fr));
}
.value-card{
  background: var(--clr-ice);
  border-radius:16px; padding:18px;
  box-shadow: var(--shadow-sm);
  display:flex; flex-direction:column; gap:6px;
}
.value-ico{
  width:44px; height:44px; border-radius:12px; background:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}
.value-title{ margin:4px 0 2px; font-weight:900 }
.value-desc{ margin:0; color:var(--clr-slate) }
@media (max-width:1024px){
  .values-grid{ grid-template-columns: repeat(2, minmax(0,1fr)) }
}
@media (max-width:680px){
  .values-grid{ grid-template-columns: 1fr }
}

/* ===== Clinic Features ===== */
.about-features{ background:#fff; padding:28px 0 8px }
.features-head{ text-align:center; margin:0 auto 18px; max-width:820px }
.features-grid{
  list-style:none; padding:0; margin:0;
  display:grid; gap:18px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.feature-card{
  background:#fff; border-radius:16px; padding:18px;
  box-shadow: var(--shadow-sm);
  display:flex; flex-direction:column; gap:6px;
  border:1px solid rgba(0,0,0,.06);
}
.feature-ico{
  width:40px; height:40px; border-radius:12px; background: var(--clr-yellow);
  display:flex; align-items:center; justify-content:center;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.06);
}
.feature-title{ margin:4px 0 2px; font-weight:900 }
.feature-desc{ margin:0; color:var(--clr-slate) }
@media (max-width:1024px){
  .features-grid{ grid-template-columns: repeat(2, minmax(0,1fr)) }
}
@media (max-width:680px){
  .features-grid{ grid-template-columns: 1fr }
}

/* ===== Timeline ===== */
.about-timeline{ background:#fff; padding:28px 0 12px }
.timeline-head{ text-align:center; margin:0 auto 16px; max-width:820px }
.timeline{
  list-style:none; padding:0; margin:0;
  display:grid; gap:14px;
}
.timeline li{
  position:relative; padding-left:28px;
}
.timeline li::before{
  content:""; position:absolute; left:10px; top:0; bottom:-14px;
  width:2px; background: rgba(0,0,0,.08);
}
.tl-dot{
  position:absolute; left:4px; top:4px; width:14px; height:14px;
  border-radius:50%; background: var(--clr-yellow);
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.tl-title{ margin:0 0 4px; font-weight:900 }
.tl-desc{ margin:0; color:var(--clr-slate) }

/* ===== Team ===== */
.about-team{ background:#fff; padding:28px 0 8px }
.team-head{ text-align:center; margin:0 auto 16px; max-width:820px }
.team-lead{ color:var(--clr-slate); margin:8px 0 0 }
.team-grid{
  list-style:none; padding:0; margin:0;
  display:grid; gap:18px; grid-template-columns: repeat(4, minmax(0,1fr));
}
.team-card{
  background:#fafafa; border-radius:16px; padding:18px;
  box-shadow: var(--shadow-sm); text-align:center;
}
.team-name{ margin:0 0 4px; font-weight:900 }
.team-role{ margin:0; color:var(--clr-slate) }
@media (max-width:1024px){
  .team-grid{ grid-template-columns: repeat(2, minmax(0,1fr)) }
}
@media (max-width:680px){
  .team-grid{ grid-template-columns: 1fr }
}

/* ===== Stats ===== */
.about-stats{
  background: linear-gradient(0deg, #fff, #fff) padding-box,
              radial-gradient(900px 400px at 10% -10%, rgba(245,201,69,.12), transparent 60%) border-box;
  padding: 28px 0;
  border-top:1px solid rgba(0,0,0,.06);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.stats-grid{
  display:grid; gap:14px; grid-template-columns: repeat(4, minmax(0,1fr));
  text-align:center;
}
.stat{ background:#fff; border-radius:16px; padding:18px; box-shadow: var(--shadow-sm) }
.stat-num{ font-size: clamp(22px, 3.2vw, 36px); font-weight:900; letter-spacing:.2px }
.stat-label{ color:var(--clr-slate); font-weight:700 }
@media (max-width:1024px){
  .stats-grid{ grid-template-columns: repeat(2, minmax(0,1fr)) }
}
@media (max-width:680px){
  .stats-grid{ grid-template-columns: 1fr }
}

/* ===== FAQ ===== */
.about-faq{ background:#fff; padding:28px 0 64px }
.faq-head{ text-align:center; margin:0 auto 18px; max-width:820px }
.faq-list{ max-width:860px; margin:0 auto; display:grid; gap:12px }
.faq-item{
  background:#fafafa; border-radius:16px; padding:0;
  box-shadow: var(--shadow-sm);
  overflow:hidden;
}
.faq-item summary{
  cursor:pointer; list-style:none; padding:14px 16px; font-weight:900; position:relative;
}
.faq-item summary::-webkit-details-marker{ display:none }
.faq-item summary span{ padding-right:28px; display:block }
.faq-item[open] summary{ color:#000 }
.faq-item p{ padding:0 16px 14px 16px; margin:0; color:var(--clr-slate) }
.faq-item summary::after{
  content:"+"; position:absolute; right:16px; top:50%; transform:translateY(-50%);
  font-weight:900; color:#000;
}
.faq-item[open] summary::after{ content:"–" }

/* Small tweaks */
@media (max-width:680px){
  .about-hero .accent-underline::after,
  .values-head .accent-underline::after{ content:none }
}


body.nav-open { overscroll-behavior: contain; }



/* ============================================================
   Header / Container Responsiveness Enhancement
   (for 1200px–1700px viewports)
   ============================================================ */

/* 1. Fluid container scaling */
@media (min-width: 1200px) {
  :root {
    /* allow wider content gradually */
    --container: clamp(1200px, 92vw, 1400px);
  }
}

/* 2. Slight compression on compact desktops */
@media (max-width: 1280px) and (min-width: 1025px) {
  .nav-list {
    gap: 16px;
  }
  .nav-link {
    font-size: 0.95rem;
    padding: 10px 0;
  }
  .brand-text {
    font-size: 0.98rem;
  }
}

/* 3. Balanced spacing for mid-large screens */
@media (min-width: 1281px) and (max-width: 1499px) {
  .header-row {
    gap: clamp(16px, 1.8vw, 36px);
  }
  .site-nav {
    margin-left: clamp(20px, 2vw, 44px);
  }
}

/* 4. Expanded layout for wide desktops */
@media (min-width: 1500px) {
  :root {
    --container: clamp(1360px, 88vw, 1600px);
  }

  .header-row {
    gap: clamp(20px, 2vw, 60px);
  }

  .site-header .container {
    padding-inline: clamp(40px, 6vw, 120px);
  }

  .nav-link {
    font-size: 1.02rem;
  }

  /* Make brand & language switch breathe */
  .brand-text {
    font-size: 1.05rem;
    letter-spacing: 0.3px;
  }
  .lang-switch {
    gap: 10px;
  }
}

/* 5. Ultra-wide stability (≥1700px) */
@media (min-width: 1700px) {
  :root {
    --container: 1600px;
  }
  .site-header .container {
    padding-inline: 100px;
    max-width: none;
  }
}




/* ============================================================
   Header Responsiveness v2 — Improved balance 1000–1650px
   ============================================================ */

/* --- DEFAULT DESKTOP: redefine the structural layout --- */
@media (min-width: 1025px) {
  .header-row {
    display: grid;
    grid-template-columns: auto 1fr auto; /* brand | nav | lang */
    align-items: center;
    gap: clamp(12px, 2vw, 36px);
  }

  .site-nav {
    margin-left: 0 !important;
    justify-self: center;
  }

  .lang-switch {
    margin-left: 0;
    justify-self: end;
    display: flex;
    gap: clamp(6px, 1vw, 12px);
  }
}

/* --- Optimize small desktops: 1000–1280px --- */
@media (max-width: 1280px) and (min-width: 1000px) {
  .nav-list {
    gap: clamp(10px, 1.5vw, 18px);
  }
  .nav-link {
    font-size: clamp(0.88rem, 0.9vw, 0.95rem);
    font-weight: 700;
  }
  .brand-text {
    font-size: clamp(0.9rem, 1vw, 0.98rem);
  }
  .lang-link {
    width: 34px;
    height: 32px;
    font-size: 0.85rem;
  }
}

/* --- Mid-range breathing room: 1281–1499px --- */
@media (min-width: 1281px) and (max-width: 1499px) {
  :root { --container: clamp(1180px, 88vw, 1360px); }
  .nav-list { gap: clamp(16px, 2vw, 26px); }
  .lang-link {
    width: 38px;
    height: 34px;
    font-size: 0.9rem;
  }
}

/* --- Large desktops: 1500–1650px --- */
@media (min-width: 1500px) and (max-width: 1650px) {
  :root { --container: clamp(1300px, 86vw, 1500px); }
  .header-row { gap: clamp(24px, 2vw, 48px); }
  .nav-link { font-size: 1rem; }
  .lang-link {
    width: 42px;
    height: 36px;
    font-size: 0.92rem;
  }
}

/* --- Ultra-wide monitors >1650px --- */
@media (min-width: 1651px) {
  :root { --container: 1600px; }
  .site-header .container {
    padding-inline: clamp(40px, 6vw, 140px);
  }
  .lang-link {
    width: 46px;
    height: 38px;
  }
}








