/* ---------------------------------------------------------
   TOKENS & DESIGN SYSTEM
--------------------------------------------------------- */
:root {
  --forest: #0b3d2e; --forest-mid: #155c45; --forest-lt: #1e7a5a;
  --gold: #b8882a;   --gold-lt: #d4a94a;   --gold-pale: #f5ead6;
  --ivory: #faf6f0;  --parchment: #f2e9db; --white: #fff;
  --ink: #0e1c16;    --ink-mid: #1e3528;   --muted: #5e7068; --muted-lt: #8fa09a;
  --border: #ddd6c8; --border-lt: #ede7df;
  --ff-d: 'Cormorant Garamond', Georgia, serif;
  --ff-b: 'Outfit', system-ui, sans-serif;
  --dur: .32s; --ease: cubic-bezier(.4, 0, .2, 1); --spring: cubic-bezier(.22, .68, 0, 1.2);
}

/* ---------------------------------------------------------
   BASE RESET
--------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
body { font-family: var(--ff-b); background: var(--ivory); color: var(--ink); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--ff-b); border: none; background: none; }

/* ---------------------------------------------------------
   CUSTOM CURSOR
--------------------------------------------------------- */
.cursor {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); position: fixed;
  top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, opacity .2s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--gold); position: fixed;
  top: 0; left: 0; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%); opacity: .5;
  transition: width .3s var(--spring), height .3s var(--spring), opacity .3s;
}
body:hover .cursor { opacity: 1; }
@media (hover: none), (max-width: 768px) { .cursor, .cursor-ring { display: none !important; } }

/* ---------------------------------------------------------
   PAGE SYSTEM
--------------------------------------------------------- */
.page { display: none; }
.page.active { display: block; animation: pgIn .52s var(--ease) both; }
@keyframes pgIn { from { opacity: 0; transform: translateY(18px) } to { opacity: 1; transform: translateY(0) } }

/* ---------------------------------------------------------
   NAVIGATION
--------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  background: rgba(250, 246, 240, 1); /* Solid color for mobile performance */
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur);
}
.nav.scrolled { border-color: var(--border); box-shadow: 0 2px 28px rgba(11, 61, 46, .07); }
.nav-brand { display: flex; align-items: center; gap: 11px; cursor: pointer; }
.nav-logo-img { 
  width: 48px; 
  height: 48px; 
  min-width: 48px; 
  object-fit: contain; 
  border-radius: 10px; 
  aspect-ratio: 1/1;
  transition: transform var(--dur) var(--spring); 
}
.nav-brand:hover { transform: translateY(-1px); }
.nav-brand-main { font-family: var(--ff-d); font-size: 1.08rem; font-weight: 600; color: var(--forest); line-height: 1; letter-spacing: .01em; }
.nav-brand-sub { font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-lt); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: .1rem; list-style: none; }
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .03em;
  color: var(--muted); padding: .42rem .82rem; border-radius: 7px;
  cursor: pointer; position: relative;
  transition: color var(--dur);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 1.5px; background: var(--gold); border-radius: 2px;
  transition: left var(--dur) var(--ease), right var(--dur) var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { left: 12px; right: 12px; }
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-book {
  background: var(--forest) !important; color: var(--white) !important;
  padding: .48rem 1.35rem !important; border-radius: 50px !important;
  font-weight: 600 !important; letter-spacing: .04em !important;
  box-shadow: 0 2px 16px rgba(11, 61, 46, .22) !important;
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur) !important;
  position: relative; overflow: hidden !important;
}
.nav-book:hover { background: var(--forest-lt) !important; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(11, 61, 46, .3) !important; }
.nav-ham { display: none; flex-direction: column; gap: 5px; padding: 5px; cursor: pointer; }
.nav-ham span { width: 21px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: all .3s; }
.mob-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 1rem; z-index: 899; flex-direction: column; gap: 4px;
  box-shadow: 0 16px 48px rgba(11, 61, 46, .1);
}
.mob-menu.open { display: flex; }
.mob-menu a { font-size: .92rem; font-weight: 500; color: var(--ink); padding: .75rem 1rem; border-radius: 8px; cursor: pointer; transition: background .2s, transform .2s; }
.mob-menu a:hover { background: var(--parchment); transform: translateX(4px); }
.mob-cta { margin-top: 6px; background: var(--forest); color: var(--white) !important; text-align: center; border-radius: 50px; padding: .78rem !important; font-weight: 600 !important; }

/* ---------------------------------------------------------
   LAYOUT
--------------------------------------------------------- */
.pb { padding-top: 80px; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 2rem; }
.wrap-sm { max-width: 820px; margin: 0 auto; padding: 0 2rem; }
.sec { padding: 100px 0; }
.sec-sm { padding: 68px 0; }

/* ---------------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .9rem;
}
.eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.d1 { font-family: var(--ff-d); font-size: clamp(3.2rem, 6.5vw, 5.5rem); font-weight: 400; line-height: 1.06; }
.d2 { font-family: var(--ff-d); font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 400; line-height: 1.12; }
.d3 { font-family: var(--ff-d); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 400; line-height: 1.2; }
.lead { font-size: 1rem; color: var(--muted); line-height: 1.85; font-weight: 300; }
.rule { width: 52px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-lt)); border-radius: 2px; margin: 1.25rem 0; }

/* ---------------------------------------------------------
   BUTTONS
--------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: .8rem 2rem; border-radius: 50px;
  font-family: var(--ff-b); font-size: .84rem; font-weight: 600;
  letter-spacing: .05em; cursor: pointer; text-decoration: none;
  transition: transform var(--dur), background var(--dur), box-shadow var(--dur), opacity var(--dur); 
  position: relative; overflow: hidden;
}
.btn-ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  transform: scale(0); animation: ripple .5s linear;
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(2.5); opacity: 0; } }
.btn-primary { background: var(--forest); color: var(--white); box-shadow: 0 2px 16px rgba(11, 61, 46, .2); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(11, 61, 46, .3); background: var(--forest-mid); }
.btn-gold { background: var(--gold); color: var(--white); box-shadow: 0 2px 16px rgba(184, 136, 42, .2); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(184, 136, 42, .35); }
.btn-ghost { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-ghost:hover { background: rgba(11, 61, 46, .05); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(11, 61, 46, .1); }
.btn-wa { background: #25D366; color: var(--white); box-shadow: 0 2px 16px rgba(37, 211, 102, .25); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37, 211, 102, .4); background: #1dbc59; }
.btn-white { background: var(--white); color: var(--forest); box-shadow: 0 2px 16px rgba(11, 61, 46, .12); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(11, 61, 46, .2); }
.btn-sm { padding: .55rem 1.3rem; font-size: .78rem; }

/* ---------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
--------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.v { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-left.v { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-right.v { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .6s var(--ease), transform .6s var(--spring); }
.reveal-scale.v { opacity: 1; transform: scale(1); }

.d1s { transition-delay: .1s !important; }
.d2s { transition-delay: .2s !important; }
.d3s { transition-delay: .3s !important; }
.d4s { transition-delay: .4s !important; }
.d5s { transition-delay: .5s !important; }
.d6s { transition-delay: .6s !important; }

/* ---------------------------------------------------------
   HERO SECTION
--------------------------------------------------------- */
.hero {
  min-height: calc(100vh - 70px);
  display: grid; grid-template-columns: 1.08fr 1fr; position: relative;
}
.hero::before {
  content: ''; position: absolute;
  top: -20%; left: -10%; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 136, 42, .06), transparent 65%);
  animation: floatBg 8s ease-in-out infinite alternate; pointer-events: none;
}
@keyframes floatBg { from { transform: translate(0, 0) } to { transform: translate(40px, 30px) } }
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem 5rem 0; position: relative; z-index: 2;
}
.hero-pre { display: flex; align-items: center; gap: 10px; margin-bottom: 1.25rem; }
.hero-pre-line { width: 40px; height: 1px; background: var(--gold); }
.hero-pre-txt { font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.hero-title {
  font-family: var(--ff-d);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 400; line-height: 1.06; color: var(--ink); margin-bottom: .5rem;
}
.hero-title em { color: var(--forest); font-style: italic; }
.shimmer-text {
  background: linear-gradient(90deg, var(--forest) 0%, var(--gold) 50%, var(--forest) 100%);
  background-size: 200%;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { from { background-position: 200% } to { background-position: -200% } }
.hero-spec { font-size: .88rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.hero-qual { font-size: .76rem; color: var(--muted-lt); margin-bottom: 2.5rem; letter-spacing: .02em; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

/* ── DOCTOR NAME IDENTITY CARD ──────────────────────────── */
.hero-name-block {
  margin: 1.5rem 0 1.5rem;
}
.hero-name-card {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--ink-mid) 100%);
  border: 1px solid rgba(184, 136, 42, 0.3);
  border-radius: 14px;
  padding: .85rem 1.4rem .9rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(11, 61, 46, .18);
}
.hero-name-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-lt));
  border-radius: 3px 0 0 3px;
}
.hero-name-label {
  font-size: .58rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-lt);
  opacity: .85;
}
.hero-name-display {
  font-family: var(--ff-d);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 400; line-height: 1.1;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: .01em;
}
.hero-name-md {
  font-size: .62rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255, 255, 255, .45);
  margin-top: 2px;
}
/* ─────────────────────────────────────────────────────────── */
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--white); border-radius: 18px; border: 1px solid var(--border-lt);
  overflow: hidden; max-width: 440px;
  box-shadow: 0 4px 32px rgba(11, 61, 46, .05);
}
.hstat { padding: 1.15rem; text-align: center; position: relative; transition: background var(--dur); cursor: default; }
.hstat:hover { background: var(--parchment); }
.hstat + .hstat::before { content: ''; position: absolute; left: 0; top: 20%; height: 60%; width: 1px; background: var(--border-lt); }
.hstat-n { font-family: var(--ff-d); font-size: 2rem; font-weight: 600; color: var(--forest); line-height: 1; }
.hstat-l { font-size: .65rem; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); margin-top: 5px; }
.count-up { display: inline-block; }

.hero-right {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--forest) 0%, var(--ink-mid) 100%);
}
.hero-right-deco {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184, 136, 42, .13) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(30, 122, 90, .15) 0%, transparent 50%);
  pointer-events: none;
}
.particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: rgba(255, 255, 255, .15); pointer-events: none;
  animation: float var(--dur2, 6s) ease-in-out infinite alternate;
  display: none; /* Hide on mobile by default */
}
@media (min-width: 900px) {
  .particle { display: block; }
}
@keyframes float { from { transform: translateY(0) translateX(0) } to { transform: translateY(-20px) translateX(10px) } }
.hero-right-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 1.5rem; padding: 4rem 2.5rem;
}
.hero-photo {
  width: 100%; max-width: 340px; aspect-ratio: 3/4;
  border-radius: 22px; overflow: hidden;
  border: 3px solid rgba(255, 255, 255, .13);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
  transition: transform .5s var(--spring), box-shadow .5s;
}
.hero-photo:hover { transform: scale(1.02) translateY(-4px); box-shadow: 0 40px 100px rgba(0, 0, 0, .45); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px; padding: .85rem 1.1rem;
  color: var(--white); max-width: 300px; width: 100%;
  transition: background var(--dur), transform var(--dur);
}
.hero-pill:hover { background: rgba(255, 255, 255, .17); transform: translateX(4px); }
.hero-pill-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, .15); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.hero-pill-t { font-size: .8rem; font-weight: 500; line-height: 1.3; }
.hero-pill-s { font-size: .66rem; opacity: .6; margin-top: 1px; }
.hero-gold-tag {
  background: var(--gold); color: var(--white);
  border-radius: 50px; padding: .48rem 1.25rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  transition: transform var(--dur), box-shadow var(--dur);
  cursor: default;
}
.hero-gold-tag:hover { transform: scale(1.04); box-shadow: 0 6px 20px rgba(184, 136, 42, .45); }

/* ---------------------------------------------------------
   MARQUEE
--------------------------------------------------------- */
.marquee-wrap { background: var(--forest); overflow: hidden; padding: .85rem 0; border-top: 1px solid rgba(255, 255, 255, .06); }
.marquee-inner { display: flex; gap: 0; }
.marquee-track { display: flex; gap: 3rem; flex-shrink: 0; animation: mq 32s linear infinite; white-space: nowrap; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes mq { from { transform: translateX(0) } to { transform: translateX(-100%) } }
.mq-item { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .55); transition: color .2s; }
.mq-item:hover { color: rgba(255, 255, 255, .9); }
.mq-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ---------------------------------------------------------
   ABOUT SECTION
--------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 6rem; align-items: center; }
.img-stack { position: relative; padding-bottom: 3rem; padding-right: 3rem; }
.img-stack-main {
  width: 100%; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 64px rgba(11, 61, 46, .14);
}
.img-stack-main img, .img-stack-accent img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .6s var(--ease);
}
.img-stack-main:hover img, .img-stack-accent:hover img { transform: scale(1.05); }
.img-stack-accent {
  position: absolute; bottom: 0; right: 0; width: 58%; aspect-ratio: 1;
  border-radius: 16px; overflow: hidden;
  border: 4px solid var(--ivory);
  box-shadow: 0 12px 40px rgba(11, 61, 46, .18);
}
.about-badge {
  position: absolute; top: 2.5rem; left: -1.8rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--white); border-radius: 14px; padding: .9rem 1.15rem;
  box-shadow: 0 8px 32px rgba(184, 136, 42, .4); text-align: center; z-index: 3;
  transition: transform var(--dur) var(--spring), box-shadow var(--dur);
}
.about-badge:hover { transform: scale(1.05) rotate(-2deg); box-shadow: 0 14px 40px rgba(184, 136, 42, .5); }
.badge-n { font-family: var(--ff-d); font-size: 2rem; font-weight: 600; line-height: 1; }
.badge-l { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; opacity: .88; margin-top: 2px; }
.creds { display: flex; flex-direction: column; gap: 13px; margin-top: 1.75rem; }
.cred {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .875rem; color: var(--muted);
  padding: .5rem 0; border-bottom: 1px solid transparent;
  transition: border-color var(--dur), padding var(--dur);
}
.cred:hover { border-color: var(--border-lt); padding-left: .5rem; }
.cred-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: .42rem; transition: transform var(--dur) var(--spring); }
.cred:hover .cred-dot { transform: scale(1.4); }
.cred strong { color: var(--ink); }

/* ---------------------------------------------------------
   SERVICES SECTION
--------------------------------------------------------- */
.svc-bg { background: var(--parchment); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: end; margin-bottom: 3.5rem; }
.svc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border-radius: 20px; overflow: hidden; border: 1px solid var(--border);
}
.svc-card {
  background: var(--white); padding: 1.7rem 1.4rem;
  position: relative; overflow: hidden; cursor: default;
  transition: background var(--dur), transform var(--dur);
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .5), transparent);
  transition: left .5s var(--ease);
}
.svc-card:hover::before { left: 150%; }
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2.5px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.svc-card:hover { background: var(--ivory); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon { 
  display: block; 
  width: 32px; height: 32px; 
  margin-bottom: 1.15rem; 
  color: var(--forest); 
  transition: transform .4s var(--spring), color .4s; 
}
.svc-icon svg { width: 100%; height: 100%; stroke-width: 1.5; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; }
.svc-card:hover .svc-icon { transform: translateY(-5px) scale(1.1); color: var(--gold); }
.svc-name { font-family: var(--ff-d); font-size: 1.05rem; font-weight: 500; color: var(--ink); margin-bottom: .35rem; line-height: 1.3; }
.svc-desc { font-size: .73rem; color: var(--muted); line-height: 1.55; }

/* ─── SERVICE DETAIL ─── */
.svc-det-wrap { max-width: 800px; margin: 0 auto; padding: 4rem 1.5rem; }
.back-btn { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 500; color: var(--forest); margin-bottom: 2.5rem; cursor: pointer; transition: transform .3s var(--spring); }
.back-btn:hover { transform: translateX(-5px); color: var(--gold); }
.svc-det-head { display: flex; align-items: center; gap: 20px; margin-bottom: 2rem; }
.svc-det-head .svc-icon { width: 52px; height: 52px; margin-bottom: 0; }
.svc-det-head h1 { font-family: var(--ff-d); font-size: clamp(2rem, 5vw, 3.2rem); color: var(--ink); line-height: 1.1; font-weight: 400; }
.svc-det-content { font-size: .95rem; line-height: 1.8; color: var(--muted); }
.svc-det-content h2 { font-family: var(--ff-d); font-size: 1.8rem; color: var(--ink); margin: 2.5rem 0 1.2rem; font-weight: 400; }
.svc-det-content p { margin-bottom: 1.5rem; }
.svc-det-content ul { list-style: none; margin-bottom: 2rem; }
.svc-det-content li { position: relative; padding-left: 24px; margin-bottom: 12px; }
.svc-det-content li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: bold; }
.svc-det-cta { margin-top: 4rem; padding: 3rem; background: var(--parchment); border-radius: 24px; text-align: center; border: 1.5px dashed var(--gold-pale); }

/* ---------------------------------------------------------
   GALLERY SECTION
--------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; grid-auto-rows: 200px; }
.gal-item { border-radius: 16px; overflow: hidden; position: relative; cursor: default; }
.gal-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(11, 29, 22, .72));
  opacity: 0; transition: opacity .35s;
}
.gal-item:hover::after { opacity: 1; }
.gal-item img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block; transition: transform .55s var(--ease);
}
.gal-item:hover img { transform: scale(1.07); }
.gal-wide { grid-column: span 2; }
.gal-tall { grid-row: span 2; }
.gal-label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: .75rem 1rem; font-size: .72rem; color: var(--white);
  font-weight: 500; letter-spacing: .04em;
  transform: translateY(8px); opacity: 0;
  transition: transform .3s, opacity .3s;
}
.gal-item:hover .gal-label { transform: translateY(0); opacity: 1; }

/* ---------------------------------------------------------
   QUOTE SECTION
--------------------------------------------------------- */
.quote-sec {
  background: linear-gradient(145deg, var(--forest) 0%, var(--ink-mid) 100%);
  padding: 88px 0; position: relative; overflow: hidden;
}
.quote-sec::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .05); pointer-events: none;
  animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow { from { transform: rotate(0) } to { transform: rotate(360deg) } }
.quote-inner { text-align: center; position: relative; z-index: 2; }
.quote-mark { font-family: Georgia, serif; font-size: 7rem; color: rgba(255, 255, 255, .07); line-height: .8; user-select: none; margin-bottom: -.5rem; }
.quote-text {
  font-family: var(--ff-d); font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 300; font-style: italic; color: var(--white);
  line-height: 1.55; max-width: 780px; margin: 0 auto 1.5rem;
}
.quote-attr { font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* ---------------------------------------------------------
   FAQ PREVIEW
--------------------------------------------------------- */
.faq-prev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.faq-prev-card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: 16px; padding: 1.4rem 1.5rem; cursor: default;
  position: relative; overflow: hidden;
  transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur);
}
.faq-prev-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(180deg, var(--forest), var(--gold));
  transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease);
}
.faq-prev-card:hover { border-color: rgba(11, 61, 46, .18); box-shadow: 0 10px 36px rgba(11, 61, 46, .09); transform: translateY(-3px); }
.faq-prev-card:hover::before { transform: scaleY(1); }
.faq-prev-q { font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.faq-prev-a { font-size: .78rem; color: var(--muted); line-height: 1.6; }

/* ---------------------------------------------------------
   TESTIMONIALS
--------------------------------------------------------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.testi-card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: 22px; padding: 2.5rem; position: relative; overflow: hidden;
  transition: box-shadow .4s var(--ease), transform .4s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: 0 4px 20px rgba(11, 61, 46, 0.03);
}
.testi-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.testi-card:hover { box-shadow: 0 24px 64px rgba(11, 61, 46, .1); transform: translateY(-8px); }
.testi-card:hover::before { transform: scaleX(1); }
.testi-card::after { content: '"'; position: absolute; top: 1.5rem; right: 2rem; font-family: Georgia, serif; font-size: 5rem; color: var(--gold-pale); line-height: 1; opacity: 0.5; }
.testi-stars { color: #fbca13; letter-spacing: 2px; margin-bottom: 1.25rem; font-size: .95rem; }
.testi-text { font-size: 0.92rem; color: var(--muted); line-height: 1.85; margin-bottom: 2rem; font-style: italic; flex: 1; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; border-top: 1px solid var(--border-lt); padding-top: 1.5rem; }
.tav { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--forest), var(--forest-lt)); display: flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 700; color: var(--white); flex-shrink: 0; box-shadow: 0 4px 12px rgba(11, 61, 46, 0.15); }
.tname { font-size: .88rem; font-weight: 700; color: var(--forest); }
.tloc { font-size: .72rem; color: var(--muted-lt); margin-top: 1px; }


.btn-google {
  background: var(--white);
  color: #4285F4;
  border: 1px solid #dadce0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  font-weight: 600 !important;
}
.btn-google:hover {
  background: #f8f9fa;
  border-color: #4285F4;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.15);
  transform: translateY(-2px);
}

/* ---------------------------------------------------------
   PHOTO TESTIMONIAL HIGHLIGHT SECTION
--------------------------------------------------------- */
.photo-testi-sec {
  background: linear-gradient(148deg, var(--forest) 0%, var(--ink-mid) 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
.photo-testi-sec::before {
  content: ''; position: absolute;
  top: -30%; right: -8%; width: 520px; height: 520px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04); pointer-events: none;
}
.photo-testi-sec::after {
  content: ''; position: absolute;
  bottom: -20%; left: -5%; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,136,42,.08), transparent 65%);
  pointer-events: none;
}
.photo-testi-header {
  text-align: center; margin-bottom: 3rem; position: relative; z-index: 2;
}
.photo-testi-title {
  font-family: var(--ff-d);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400; line-height: 1.12; color: var(--white);
  margin-top: .5rem;
}
.photo-testi-title em { color: var(--gold-lt); font-style: italic; }
.photo-testi-card {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem; align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px; padding: 3rem;
  position: relative; z-index: 2;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: box-shadow .5s;
}
.photo-testi-card:hover { box-shadow: 0 32px 80px rgba(0,0,0,.3); }
.photo-testi-images {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.photo-testi-img-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 3/4;
  border: 2px solid rgba(184,136,42,.3);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  transition: transform .4s var(--spring), box-shadow .4s;
}
.photo-testi-img-wrap:hover { transform: scale(1.02) translateY(-4px); box-shadow: 0 20px 56px rgba(0,0,0,.5); }
.photo-testi-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
.photo-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(11,29,22,.88));
  color: rgba(255,255,255,.9); font-size: .62rem;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 1.5rem .75rem .6rem; text-align: center;
}
.photo-testi-body { color: var(--white); }
.photo-testi-gold-bar {
  width: 48px; height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px; margin-bottom: 1.5rem;
}
.photo-testi-caption {
  font-family: var(--ff-d); font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 300; line-height: 1.68; color: rgba(255,255,255,.9);
  margin-bottom: 2rem;
}
.photo-testi-detail {
  display: flex; flex-direction: column; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem; margin-top: 1rem;
}
.photo-testi-fact { display: flex; flex-direction: column; gap: 3px; }
.photo-fact-label {
  font-size: .6rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold); opacity: .85;
}
.photo-fact-val {
  font-size: .83rem; color: rgba(255,255,255,.75); line-height: 1.55;
}

@media (max-width: 900px) {
  .photo-testi-card { grid-template-columns: 1fr; gap: 2.5rem; padding: 2rem; }
  .photo-testi-images { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .photo-testi-sec { padding: 32px 0 24px; }
  .photo-testi-header { margin-bottom: 1.5rem; }
  .photo-testi-images { grid-template-columns: 1fr; gap: 0.75rem; }
  .photo-testi-img-wrap { aspect-ratio: 4/3; }
  .photo-testi-card { padding: 1.15rem; gap: 1.25rem; }
  .photo-testi-caption { margin-bottom: 1rem; font-size: 1rem; line-height: 1.5; }
  .photo-testi-detail { padding-top: 1rem; margin-top: 0.5rem; }
  .pts-controls { margin-top: 0.25rem !important; gap: 0.85rem !important; }
}




/* ---------------------------------------------------------
   CTA BAND
--------------------------------------------------------- */
.cta-band { background: linear-gradient(135deg, var(--ink) 0%, #1a3530 100%); padding: 88px 0; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; bottom: -40%; left: -5%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(184, 136, 42, .08), transparent 70%); pointer-events: none; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-text h2 { font-family: var(--ff-d); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: .5rem; font-weight: 400; }
.cta-text p { color: rgba(255, 255, 255, .55); font-size: .95rem; font-weight: 300; }
.cta-acts { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ---------------------------------------------------------
   PAGE HERO
--------------------------------------------------------- */
.ph { background: linear-gradient(140deg, var(--forest) 0%, var(--ink) 100%); padding: 5rem 0 3.5rem; position: relative; overflow: hidden; }
.ph::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 56px; background: var(--ivory); clip-path: ellipse(55% 100% at 50% 100%); }
.ph-inner { position: relative; z-index: 2; }
.ph h1 { 
  font-family: var(--ff-d); 
  font-size: clamp(3rem, 6.5vw, 4.8rem); 
  color: var(--white); 
  margin-bottom: .85rem; 
  font-weight: 400; 
  letter-spacing: -0.01em;
  line-height: 1.05;
  position: relative;
}
.ph h1::after {
  content: ''; position: absolute; bottom: -8px; left: 0;
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.ph-name-surname { font-style: italic; color: var(--gold-lt); }
.ph p { color: rgba(255, 255, 255, .65); font-size: 1.05rem; font-weight: 300; max-width: 650px; line-height: 1.8; margin-top: 1.5rem; }



/* ---------------------------------------------------------
   BLOG SECTION
--------------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.blog-card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: 20px; overflow: hidden;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease); cursor: pointer;
}
.blog-card:hover { box-shadow: 0 24px 64px rgba(11, 61, 46, .12); transform: translateY(-6px); }
.blog-card-img {
  aspect-ratio: 16/9; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative;
}
.blog-tag-pill { display: inline-block; font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--forest); background: rgba(11, 61, 46, .08); padding: 3px 10px; border-radius: 50px; margin-bottom: .65rem; }
.blog-card-body { padding: 1.5rem; }
.blog-card h2 { font-family: var(--ff-d); font-size: 1.22rem; font-weight: 500; color: var(--ink); margin-bottom: .5rem; line-height: 1.3; }
.blog-excerpt { font-size: .78rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.blog-meta { font-size: .68rem; color: var(--muted-lt); display: flex; gap: .75rem; }
.blog-read { display: inline-flex; align-items: center; gap: 5px; font-size: .76rem; font-weight: 600; color: var(--forest); margin-top: .75rem; transition: gap .2s; }
.blog-card:hover .blog-read { gap: 10px; }

/* ---------------------------------------------------------
   FAQ PAGE
--------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border-lt); border-radius: 14px; overflow: hidden; transition: border-color var(--dur), box-shadow var(--dur); }
.faq-item.open { border-color: rgba(11, 61, 46, .28); box-shadow: 0 4px 24px rgba(11, 61, 46, .08); }
.faq-btn { width: 100%; text-align: left; padding: 1.25rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--ff-b); font-size: .92rem; font-weight: 500; color: var(--ink); transition: color var(--dur); }
.faq-item.open .faq-btn { color: var(--forest); }
.faq-ico { width: 26px; height: 26px; border-radius: 50%; background: var(--parchment); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--forest); flex-shrink: 0; transition: transform .35s var(--spring), background var(--dur); font-weight: 700; }
.faq-item.open .faq-ico { transform: rotate(45deg); background: var(--forest); color: var(--white); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-ans { max-height: 400px; }
.faq-ans-in { padding: 0 1.5rem 1.3rem; font-size: .87rem; color: var(--muted); line-height: 1.85; }

/* ---------------------------------------------------------
   APPOINTMENT SECTION
--------------------------------------------------------- */
.appt-layout { min-height: calc(100vh - 70px); display: grid; grid-template-columns: 1fr 1fr; }
.appt-left { background: linear-gradient(155deg, var(--forest), var(--ink)); padding: 5rem 3rem; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.appt-left-deco { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(184, 136, 42, .1), transparent 55%); pointer-events: none; }
.appt-left h1 { font-family: var(--ff-d); font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 1rem; font-weight: 400; position: relative; z-index: 2; }
.appt-left p { color: rgba(255, 255, 255, .6); font-size: .92rem; line-height: 1.85; margin-bottom: 2.5rem; font-weight: 300; position: relative; z-index: 2; }
.appt-details { display: flex; flex-direction: column; gap: 1.1rem; position: relative; z-index: 2; }
.appt-det { display: flex; align-items: flex-start; gap: 12px; transition: transform var(--dur); }
.appt-det:hover { transform: translateX(6px); }
.appt-det-ico { 
  width: 38px; height: 38px; 
  border-radius: 50%; 
  background: rgba(255, 255, 255, .1); 
  display: flex; align-items: center; justify-content: center; 
  flex-shrink: 0; transition: background var(--dur), transform var(--dur); 
}
.appt-det-ico svg { width: 18px; height: 18px; stroke: rgba(255, 255, 255, 0.8); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.appt-det:hover .appt-det-ico { background: rgba(255, 255, 255, .18); transform: scale(1.1); }
.appt-det-label { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .38); margin-bottom: 2px; }
.appt-det-val { font-size: .87rem; color: rgba(255, 255, 255, .8); line-height: 1.45; font-weight: 500; }
.appt-right { background: var(--ivory); padding: 5rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.appt-card { background: var(--white); border-radius: 24px; padding: 2.75rem; box-shadow: 0 24px 80px rgba(11, 61, 46, .1); border: 1px solid var(--border-lt); text-align: center; }
.appt-logo { width: 85px; height: 85px; border-radius: 50%; background: var(--parchment); margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; overflow: hidden; box-shadow: 0 4px 16px rgba(184, 136, 42, 0.1); }
.appt-logo img { width: 56px; height: 56px; object-fit: contain; }
.appt-card h2 { font-family: var(--ff-d); font-size: 1.85rem; color: var(--ink); margin-bottom: .5rem; font-weight: 500; }
.appt-card p { font-size: .87rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.7; }
.appt-card .btn { width: 100%; justify-content: center; font-size: .95rem; padding: 1rem; }
.appt-note { font-size: .7rem; color: var(--muted-lt); margin-top: .75rem; line-height: 1.55; }
.timing-card { background: var(--parchment); border-radius: 14px; padding: 1.25rem; margin-top: 1.5rem; text-align: left; }
.timing-title { font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--forest); margin-bottom: .75rem; }
.timing-row { display: flex; justify-content: space-between; font-size: .82rem; color: var(--ink); padding: 5px 0; border-bottom: 1px solid var(--border-lt); transition: background var(--dur), padding var(--dur); border-radius: 4px; }
.timing-row:hover { background: rgba(11, 61, 46, .04); padding: 5px 8px; }
.timing-row:last-child { border-bottom: none; }
.timing-val { font-weight: 600; color: var(--forest); }

/* ---------------------------------------------------------
   CONTACT & BIOGRAPHY
--------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.doc-img { width: 100%; aspect-ratio: 3/4; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 64px rgba(11, 61, 46, .14); margin-bottom: 2rem; transition: box-shadow .4s; }
.doc-img img { width: 100%; height: 100%; object-fit: cover; object-position: right top; transition: transform .6s var(--ease); }
.doc-img:hover { box-shadow: 0 30px 80px rgba(11, 61, 46, .2); }
.doc-img:hover img { transform: scale(1.04); }
.ach-list { display: flex; flex-direction: column; }
.ach-item { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border-lt); font-size: .84rem; color: var(--muted); line-height: 1.5; transition: padding var(--dur), color var(--dur); }
.ach-item:hover { padding-left: 8px; color: var(--ink); }
.ach-item:last-child { border-bottom: none; }
.ach-ico { color: var(--gold); font-size: .85rem; margin-top: 1px; flex-shrink: 0; }
.philo-card { background: var(--parchment); border-radius: 16px; padding: 2rem; margin-top: 2rem; border-left: 4px solid var(--gold); }
.philo-card p { font-family: var(--ff-d); font-size: 1.12rem; font-style: italic; color: var(--ink); line-height: 1.78; font-weight: 400; }
.philo-card cite { display: block; font-style: normal; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-top: .75rem; font-weight: 700; }
.info-cards { display: flex; flex-direction: column; gap: 1rem; }
.info-card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: 16px; padding: 1.5rem;
  transition: box-shadow var(--dur), transform var(--dur);
}
.info-card:hover { box-shadow: 0 8px 32px rgba(11, 61, 46, .08); transform: translateY(-2px); }
.info-card-title { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--forest); margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.c-row { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 11px; font-size: .875rem; transition: transform var(--dur); }
.c-row:hover { transform: translateX(4px); }
.c-row:last-child { margin-bottom: 0; }
.c-ico { 
  width: 32px; height: 32px; 
  border-radius: 50%; 
  background: var(--parchment); 
  display: flex; align-items: center; justify-content: center; 
  flex-shrink: 0; margin-top: 1px; 
  transition: transform .3s var(--spring);
}
.map-box { 
  width: 100%; padding: 1.5rem; 
  border-radius: 14px; 
  border: 1.5px dashed var(--border); 
  background: var(--parchment); 
  display: flex; flex-direction: column; 
  align-items: center; justify-content: center; 
  gap: 8px; text-align: center; 
  margin-top: 1rem;
}
.map-box span:first-child { font-size: 2.2rem; }
.map-box strong { font-size: .88rem; color: var(--ink); font-weight: 600; }
.map-box small { font-size: .75rem; color: var(--muted); line-height: 1.5; }

.c-ico svg { width: 14px; height: 14px; stroke: var(--forest); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.c-row:hover .c-ico { transform: scale(1.15) rotate(-5deg); background: var(--gold-pale); }
.c-main { color: var(--ink); font-weight: 500; line-height: 1.4; }
.c-sub { color: var(--muted); font-size: .76rem; }
.map-box { width: 100%; aspect-ratio: 16/9; border-radius: 14px; border: 1.5px dashed var(--border); background: var(--parchment); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 1.5rem; }
.map-box span:first-child { font-size: 2.5rem; opacity: .3; }
.map-box strong { font-size: .87rem; color: var(--ink); }
.map-box small { font-size: .73rem; color: var(--muted); line-height: 1.5; }

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
footer { background: var(--ink); color: rgba(255, 255, 255, .5); padding: 4rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.f-brand-name { font-family: var(--ff-d); font-size: 1.35rem; color: var(--white); margin-bottom: .25rem; }
.f-brand-spec { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .85rem; font-weight: 600; }
.f-brand-desc { font-size: .78rem; line-height: 1.8; opacity: .5; }
.f-col h4 { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.f-links { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.f-links a { font-size: .78rem; color: rgba(255, 255, 255, .42); cursor: pointer; transition: color .2s, padding .2s; position: relative; }
.f-links a:hover { color: var(--white); padding-left: 6px; }

/* Clinical Expertise treatment */
.f-expertise-item { display: flex; flex-direction: column; gap: 1px; }
.f-expertise-label { 
  font-size: .55rem; font-weight: 700; letter-spacing: .12em; 
  text-transform: uppercase; color: var(--gold-lt); 
  display: flex; align-items: center; gap: 5px; margin-top: 2px;
}
.f-expertise-label::before { content: '✦'; font-size: .65rem; }
.f-ci { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: rgba(255, 255, 255, .42); margin-bottom: 7px; transition: color .2s; }
.f-ci:hover { color: rgba(255, 255, 255, .8); }
.f-bottom { padding-top: 1.75rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; font-size: .7rem; opacity: .32; }

/* ---------------------------------------------------------
   WHATSAPP FAB
--------------------------------------------------------- */
.wa-fab {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 800;
  width: 48px; height: 48px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .3);
  cursor: pointer; transition: transform .3s var(--spring), box-shadow .3s; text-decoration: none;
}
.wa-fab::before {
  content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: #25D366; animation: waPulse 2.5s ease-out infinite; opacity: .6;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .6 } 100% { transform: scale(1.6); opacity: 0 } }
.wa-fab:hover { transform: scale(1.12); box-shadow: 0 12px 36px rgba(37, 211, 102, .6); }
.wa-fab svg { width: 24px; height: 24px; fill: white; position: relative; z-index: 2; }

/* ---------------------------------------------------------
   PAGE TRANSITIONS
--------------------------------------------------------- */
.page-transition-overlay {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(15px) saturate(1.2);
  -webkit-backdrop-filter: blur(15px) saturate(1.2);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .4s var(--ease);
}
.page-transition-overlay.active { 
  opacity: 1; 
  pointer-events: all; 
}

.transition-content {
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .5s var(--spring), opacity .5s var(--ease);
}
.page-transition-overlay.active .transition-content {
  transform: translateY(0);
  opacity: 1;
}

.transition-logo {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(11, 61, 46, 0.1);
}

body {
  font-family: var(--ff-b);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

.page {
  display: none;
}

.transition-loader {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.transition-loader::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: loadLine 1.5s ease-in-out infinite;
}
@keyframes loadLine {
  0% { left: -100%; }
  50% { left: 0%; }
  100% { left: 100%; }
}

/* ---------------------------------------------------------
   SOCIAL CONNECT CARD (ABOUT PAGE)
--------------------------------------------------------- */
.social-connect-grid {
  display: flex; flex-direction: column; gap: 0.85rem;
}

.social-connect-link {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--parchment);
  border: 1px solid var(--border-lt);
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s var(--ease);
}

.social-connect-link:hover {
  background: var(--white);
  border-color: rgba(11, 61, 46, 0.2);
  box-shadow: 0 4px 15px rgba(11, 61, 46, 0.05);
  transform: translateY(-2px);
}

.sc-left {
  display: flex; align-items: center; gap: 12px;
}

.sc-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease);
  color: var(--forest);
}

.sc-icon svg {
  width: 100%; height: 100%;
  fill: currentColor;
  transition: fill 0.3s var(--ease);
}

.social-connect-link:hover .sc-icon {
  transform: scale(1.1);
}

.sc-insta:hover .sc-icon svg { fill: url(#ig-grad); }
.sc-fb:hover .sc-icon svg { fill: #1877F2; }
.sc-yt:hover .sc-icon svg { fill: #FF0000; }

/* Footer Socials */
.f-social {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s var(--ease);
  display: inline-flex;
}
.f-social svg {
  fill: currentColor;
  transition: fill 0.3s var(--ease);
}
.f-social:hover { transform: scale(1.1); }
.fs-insta:hover svg { fill: url(#ig-grad); }
.fs-fb:hover svg { fill: #1877F2; }
.fs-yt:hover svg { fill: #FF0000; }

.sc-text {
  font-family: var(--ff-b); font-size: 0.95rem; font-weight: 600;
  color: var(--ink); display: block; line-height: 1.2;
}

.sc-sub {
  font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); display: block; margin-top: 3px;
}

.sc-arrow {
  color: var(--gold); font-size: 1.1rem;
  transition: transform 0.3s var(--ease);
}

.social-connect-link:hover .sc-arrow {
  transform: translateX(4px);
}

/* ---------------------------------------------------------
   SERVICE DETAIL — EDITORIAL LAYOUT (no images)
--------------------------------------------------------- */
.svc-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-lt);
  padding: 1.75rem 0 1.5rem;
}
.svc-header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  justify-content: space-between; flex-wrap: wrap;
}
.svc-header-left { flex: 1; min-width: 240px; }
.svc-back {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); cursor: pointer; margin-bottom: 1rem;
  transition: color .2s;
}
.svc-back:hover { color: var(--forest); }
.svc-back::before { content: '←'; font-size: .9rem; }
.svc-eyebrow-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--parchment); border-radius: 20px;
  padding: .25rem .8rem; margin-bottom: .75rem;
}
.svc-eyebrow-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--forest); flex-shrink: 0; }
.svc-eyebrow-tag span { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--forest); }
.svc-header-title { font-family: var(--ff-d); font-size: clamp(1.7rem, 4vw, 2.6rem); color: var(--ink); font-weight: 400; line-height: 1.08; margin-bottom: .5rem; }
.svc-header-tag { font-size: .88rem; color: var(--muted); line-height: 1.65; max-width: 500px; }
.svc-header-icon-wrap {
  width: 64px; height: 64px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--forest), var(--forest-lt));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(11,61,46,.18);
}
.svc-header-icon-wrap svg { width: 30px; height: 30px; stroke: rgba(255,255,255,.9); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.svc-body { padding: 2.5rem 0 0; }
.svc-two-col { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; align-items: start; }

/* LEFT COLUMN */
.svc-content-intro { font-size: .92rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border-lt); }
.svc-content-h2 { font-family: var(--ff-d); font-size: 1.3rem; color: var(--ink); font-weight: 500; margin-bottom: 1.1rem; }
.svc-num-list { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 0; }
.svc-num-item { display: grid; grid-template-columns: 40px 1fr; gap: .85rem; align-items: flex-start; padding: 1rem 1.1rem; border-radius: 14px; background: var(--white); border: 1px solid var(--border-lt); transition: box-shadow .25s, border-color .25s; }
.svc-num-item:hover { box-shadow: 0 4px 18px rgba(11,61,46,.07); border-color: rgba(11,61,46,.13); }
.svc-num { font-family: var(--ff-d); font-size: 1.35rem; font-weight: 600; color: rgba(11,61,46,.1); line-height: 1; padding-top: 2px; }
.svc-num-body strong { display: block; font-size: .85rem; color: var(--ink); margin-bottom: 3px; font-weight: 600; }
.svc-num-body span { font-size: .77rem; color: var(--muted); line-height: 1.6; }

/* RIGHT COLUMN — STICKY CARD */
.svc-summary-card {
  position: sticky; top: 88px;
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 6px 30px rgba(11,61,46,.07);
}
.svc-summary-top { background: linear-gradient(135deg, var(--forest), var(--ink-mid)); padding: 1.25rem 1.25rem 1.1rem; }
.svc-summary-top-label { font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: .3rem; }
.svc-summary-top-title { font-family: var(--ff-d); font-size: 1.1rem; color: var(--white); font-weight: 400; }
.svc-summary-body { padding: 1rem 1.1rem; }
.svc-summary-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1rem; }
.svc-sum-stat { background: var(--parchment); border-radius: 10px; padding: .7rem .65rem; text-align: center; }
.svc-sum-stat-n { font-family: var(--ff-d); font-size: 1.25rem; font-weight: 600; color: var(--forest); line-height: 1; }
.svc-sum-stat-l { font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.svc-summary-divider { height: 1px; background: var(--border-lt); margin: .85rem 0; }
.svc-summary-trust { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.svc-summary-trust-item { display: flex; align-items: center; gap: 7px; font-size: .74rem; color: var(--muted); }
.svc-summary-trust-item::before { content: '✓'; color: var(--forest); font-weight: 800; font-size: .68rem; flex-shrink: 0; }
.svc-summary-cta { display: flex; flex-direction: column; gap: .5rem; }
.svc-summary-cta .btn { justify-content: center; width: 100%; font-size: .82rem; padding: .75rem 1rem; }

/* FULL WIDTH CTA BAR */
.svc-cta-bar { background: linear-gradient(135deg, var(--forest) 0%, var(--ink-mid) 100%); margin-top: 2.5rem; padding: 2.25rem 0; }
.svc-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.svc-cta-bar h3 { font-family: var(--ff-d); font-size: 1.45rem; color: var(--white); font-weight: 400; margin-bottom: .25rem; }
.svc-cta-bar p { color: rgba(255,255,255,.5); font-size: .82rem; }
.svc-cta-acts { display: flex; gap: .75rem; flex-wrap: wrap; flex-shrink: 0; }
.svc-page-wrap { max-width: 1040px; margin: 0 auto; padding: 0 1.75rem; }

@media (max-width: 900px) {
  .svc-two-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-summary-card { position: static; }
  .svc-summary-stats { grid-template-columns: repeat(4, 1fr); }
  .svc-cta-inner { flex-direction: column; text-align: center; }
  .svc-cta-acts { justify-content: center; }
}
@media (max-width: 600px) {
  .svc-header-inner { flex-direction: column-reverse; gap: .75rem; }
  .svc-header-icon-wrap { width: 52px; height: 52px; }
  .svc-summary-stats { grid-template-columns: 1fr 1fr; }
  .svc-num-item { grid-template-columns: 32px 1fr; }
}

.svc-ph::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 48px; background: var(--ivory); clip-path: ellipse(55% 100% at 50% 100%);
}
.svc-ph::before {
  content: ''; position: absolute; top: -30%; right: -5%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,136,42,.12), transparent 65%);
  pointer-events: none;
}
.svc-ph-inner { position: relative; z-index: 2; display: flex; align-items: center; gap: 1.5rem; }
.svc-ph-icon {
  width: 72px; height: 72px; border-radius: 20px; flex-shrink: 0;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
}
.svc-ph-icon svg { width: 36px; height: 36px; stroke: var(--gold-lt); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.svc-ph-text .eyebrow { color: rgba(255,255,255,.45); margin-bottom: .5rem; }
.svc-ph-text h1 { font-family: var(--ff-d); font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--white); font-weight: 400; line-height: 1.1; margin-bottom: .5rem; }
.svc-ph-text p { color: rgba(255,255,255,.6); font-size: .92rem; font-weight: 300; max-width: 520px; }
.svc-body { padding: 4rem 0 0; }
.svc-lead { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.svc-lead p { font-size: 1.05rem; color: var(--muted); line-height: 1.9; }
.svc-section-title { font-family: var(--ff-d); font-size: 1.7rem; color: var(--ink); font-weight: 400; margin-bottom: 1.5rem; text-align: center; }
.svc-feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 3rem; }
.svc-feat {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: 16px; padding: 1.25rem 1.35rem;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.svc-feat:hover { box-shadow: 0 8px 28px rgba(11,61,46,.09); transform: translateY(-3px); border-color: rgba(11,61,46,.15); }
.svc-feat-ico {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--forest), var(--forest-lt));
  display: flex; align-items: center; justify-content: center;
}
.svc-feat-ico svg { width: 20px; height: 20px; stroke: var(--white); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.svc-feat-body strong { display: block; font-size: .9rem; color: var(--ink); margin-bottom: 4px; font-weight: 600; }
.svc-feat-body span { font-size: .78rem; color: var(--muted); line-height: 1.6; }
.svc-stats-bar {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--parchment); border-radius: 20px;
  overflow: hidden; margin-bottom: 3rem;
  border: 1px solid var(--border-lt);
}
.svc-stat-big { text-align: center; padding: 2rem 1rem; position: relative; }
.svc-stat-big + .svc-stat-big::before { content: ''; position: absolute; left: 0; top: 20%; height: 60%; width: 1px; background: var(--border); }
.svc-stat-big-n { font-family: var(--ff-d); font-size: 2.4rem; font-weight: 600; color: var(--forest); line-height: 1; }
.svc-stat-big-l { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.svc-who {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: 20px; padding: 2rem 2.5rem; margin-bottom: 3rem;
  display: flex; align-items: flex-start; gap: 1.5rem;
  border-left: 4px solid var(--gold);
}
.svc-who-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.svc-who h3 { font-family: var(--ff-d); font-size: 1.25rem; color: var(--ink); font-weight: 500; margin-bottom: .5rem; }
.svc-who p { font-size: .88rem; color: var(--muted); line-height: 1.8; }
.svc-mini-faq { margin-bottom: 3rem; }
.svc-mfaq-item {
  background: var(--white); border: 1px solid var(--border-lt);
  border-radius: 14px; margin-bottom: .75rem; overflow: hidden;
}
.svc-mfaq-q {
  padding: 1.1rem 1.5rem; font-size: .92rem; font-weight: 600;
  color: var(--ink); display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; cursor: default;
}
.svc-mfaq-q::after { content: '?'; width: 26px; height: 26px; border-radius: 50%; background: var(--parchment); display: flex; align-items: center; justify-content: center; color: var(--forest); font-size: .85rem; flex-shrink: 0; font-weight: 700; }
.svc-mfaq-a { padding: 0 1.5rem 1.1rem; font-size: .84rem; color: var(--muted); line-height: 1.8; }
.svc-cta-bar {
  background: linear-gradient(135deg, var(--forest) 0%, var(--ink-mid) 100%);
  margin-top: 4rem; padding: 3rem; border-radius: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.svc-cta-bar h3 { font-family: var(--ff-d); font-size: 1.65rem; color: var(--white); font-weight: 400; margin-bottom: .35rem; }
.svc-cta-bar p { color: rgba(255,255,255,.55); font-size: .85rem; }
.svc-cta-bar-acts { display: flex; gap: .9rem; flex-wrap: wrap; flex-shrink: 0; }
.svc-page-wrap { max-width: 1000px; margin: 0 auto; padding: 0 2rem; }

@media (max-width: 900px) {
  .svc-feat-grid { grid-template-columns: 1fr; }
  .svc-stats-bar { grid-template-columns: repeat(3, 1fr); }
  .svc-cta-bar { flex-direction: column; text-align: center; }
  .svc-cta-bar-acts { justify-content: center; }
  .svc-ph-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
@media (max-width: 600px) {
  .svc-stats-bar { grid-template-columns: 1fr; }
  .svc-stat-big + .svc-stat-big::before { display: none; }
  .svc-feat-grid { grid-template-columns: 1fr; }
  .svc-who { flex-direction: column; gap: 1rem; padding: 1.5rem; }
}

/* ---------------------------------------------------------
   RESPONSIVE DESIGN
--------------------------------------------------------- */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1/-1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-wide { grid-column: span 1; }
}
@media (max-width: 900px) {
  .nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-ham { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem 0 2rem; text-align: center; }
  .hero-pre { justify-content: center; }
  .hero-name-block { display: flex; justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { width: 100%; max-width: 100%; margin: 0 auto; }
  .hero-right { min-height: 400px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .img-stack { padding-bottom: 2rem; padding-right: 2rem; }
  .img-stack-accent { display: none; }
  .services-header { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-prev-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .appt-layout { grid-template-columns: 1fr; }
  .appt-left { padding: 3.5rem 2rem; }
  .appt-right { padding: 2.5rem 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-acts { justify-content: center; }
  
  /* Mobile Fix for Photo Slider */
  .photo-testi-card { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 2rem; }
  .photo-testi-title { font-size: 2.4rem; }
}
@media (max-width: 600px) {
  .sec { padding: 64px 0; }
  .svc-grid { 
    grid-template-columns: 1fr; 
    gap: 0.65rem; 
    background: transparent; 
    border: none;
  }
  .svc-card { 
    display: grid; 
    grid-template-columns: 42px 1fr 20px; 
    grid-template-areas: 
      "icon name arrow"
      "icon desc arrow";
    align-items: center;
    column-gap: 1rem;
    row-gap: 0.15rem;
    padding: 1rem 1.15rem; 
    text-align: left; 
    background: var(--white);
    border: 1px solid var(--border-lt);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(11, 61, 46, 0.03);
  }
  .svc-icon { 
    grid-area: icon;
    width: 42px; height: 42px; 
    margin: 0; 
  }
  .svc-name { 
    grid-area: name;
    font-size: 0.95rem; 
    margin-bottom: 0;
    align-self: end;
  }
  .svc-desc { 
    grid-area: desc;
    font-size: 0.72rem; 
    line-height: 1.35; 
    margin-bottom: 0;
    align-self: start;
    color: var(--muted);
  }
  .svc-read { 
    display: none !important; 
  }
  .svc-card::after {
    content: '→';
    grid-area: arrow;
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0.6;
    justify-self: end;
  }
  
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top > div:first-child { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gal-wide, .gal-tall { grid-column: auto; grid-row: auto; }
  .gal-item { height: auto; }
  .about-badge { left: 0; top: 1.5rem; }
  .appt-left { padding: 2.5rem 1.25rem; }
  .appt-right { padding: 1.5rem 1rem; }
  .appt-card { padding: 1.75rem 1.25rem; }
  .cta-text h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hstat { padding: .85rem .5rem; }
  .hstat-n { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-name-display { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; max-width: 280px; }
  .hero-right { min-height: 320px; }
  .ph { padding: 2.5rem 0 6rem; text-align: left; }
  .ph::after { height: 32px; clip-path: ellipse(60% 100% at 50% 100%); }
  .ph h1 { font-size: 2.4rem; line-height: 1.1; margin-bottom: 0.75rem; position: relative; display: inline-block; }
  .ph p { font-size: 0.9rem; line-height: 1.55; max-width: 100%; opacity: 0.8; margin-top: 1rem; margin-bottom: 1rem; }



  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }

  .faq-prev-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }


  .wrap, .wrap-sm { padding: 0 1rem; }
  .nav { padding: 0 1rem; }
  .nav-brand-main { font-size: .95rem; }
  .f-bottom { flex-direction: column; text-align: center; }
  
  /* Mobile Adjustments for Floating Elements */
  .floating-reviews { bottom: 1rem; left: 1rem; padding: 0.5rem; gap: 0.5rem; border-radius: 12px; }
  .fr-icon { width: 24px; height: 24px; }
  .fr-icon img { width: 14px; }
  .fr-title { font-size: 0.65rem; }
  .fr-sub { font-size: 0.55rem; }
  .wa-fab { bottom: 1rem; right: 1rem; width: 42px; height: 42px; }
  .wa-fab svg { width: 20px; height: 20px; }
  #footer { padding-bottom: 5rem; } /* Add padding so floating elements don't hide footer content */
}

/* ---------------------------------------------------------
   SELECTION COLORS
--------------------------------------------------------- */
::selection { background: var(--gold); color: var(--white); }
::-moz-selection { background: var(--gold); color: var(--white); }

/* ---------------------------------------------------------
   JS ANIMATIONS & INTERACTION
--------------------------------------------------------- */
.reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 0; transition: all .8s var(--ease); }
.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-scale { transform: scale(.9); }
.reveal.v, .reveal-left.v, .reveal-right.v, .reveal-scale.v { opacity: 1; transform: translate(0) scale(1); }

.btn-ripple { position: absolute; background: rgba(255, 255, 255, .3); border-radius: 50%; pointer-events: none; transform: scale(0); animation: rippleEffect .6s linear; }
@keyframes rippleEffect { to { transform: scale(4); opacity: 0; } }

/* Hardware Acceleration */
.photo-testi-slider { will-change: transform; transform: translateZ(0); }
.photo-testi-slide { will-change: transform, opacity, filter; transform: translateZ(0); }

/* ---------------------------------------------------------
   LIKE BUTTON
--------------------------------------------------------- */
.like-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-lt);
  border-radius: 50px;
  padding: 6px 12px;
  font-family: var(--ff-b);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  z-index: 10;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(11, 61, 46, 0.05);
}
.like-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 61, 46, 0.1);
  border-color: rgba(184, 136, 42, 0.3);
}
.like-btn .like-icon {
  width: 15px;
  height: 15px;
  stroke-width: 2.5;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.like-btn.liked {
  color: var(--gold);
  border-color: rgba(184, 136, 42, 0.4);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(184, 136, 42, 0.15);
}
.like-btn.liked .like-icon {
  fill: var(--gold);
  stroke: var(--gold);
  animation: heartBurst 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes heartBurst {
  0% { transform: scale(1); }
  40% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* Specific Placements */
.svc-card .like-btn {
  top: 1.5rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  gap: 5px;
}
.svc-card .like-btn:hover {
  transform: scale(1.1);
  background: transparent;
  box-shadow: none;
}
.svc-card .like-btn.liked {
  background: transparent;
  box-shadow: none;
  border: none;
}

.testi-card .like-btn {
  top: auto;
  bottom: 1.5rem;
  right: 1.5rem;
}

.photo-testi-card .like-btn {
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}
.photo-testi-card .like-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.photo-testi-card .like-btn.liked {
  color: var(--gold-lt);
  border-color: rgba(184, 136, 42, 0.6);
  background: rgba(184, 136, 42, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.photo-testi-card .like-btn.liked .like-icon {
  fill: var(--gold-lt);
  stroke: var(--gold-lt);
}

/* ---------------------------------------------------------
   GOOGLE BUSINESS REVIEWS BADGE
--------------------------------------------------------- */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--border-lt);
  padding: 0.6rem 1rem;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(11, 61, 46, 0.05);
  backdrop-filter: blur(10px);
  margin-top: 1.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none !important;
  color: inherit !important;
}
.google-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-lt);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.gb-logo {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gb-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.gb-stars {
  color: #fbca13;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.gb-text {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.gb-count {
  color: var(--forest);
  font-weight: 600;
}

/* Floating Badge */
.floating-reviews {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 1000;
  background: var(--forest);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: float 4s ease-in-out infinite;
}
.floating-reviews:hover {
  transform: scale(1.05) translateY(-5px);
  border-color: var(--gold);
}
.fr-icon {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.fr-icon img {
  width: 16px;
}
.fr-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fr-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.fr-sub {
  font-size: 0.6rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 4px;
}
.fr-stars {
  color: #fbca13;
}

@media (max-width: 768px) {
  .floating-reviews {
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 0.6rem 1rem;
  }
}
@media (max-width: 480px) {
  .floating-reviews {
    display: none; /* Hide on very small screens to avoid clutter */
  }
}
