
  :root {
    --teal-900: #0A2F3A;
    --teal-800: #0F4C5C;
    --teal-700: #1E6B7E;
    --teal-500: #3A8A9E;
    --mint-100: #E8F1F0;
    --mint-50:  #F2F7F6;
    --cream:    #FAF7F2;
    --ivory:    #FFFDF9;
    --ink:      #0A1F2C;
    --ink-70:   #3C5059;
    --ink-50:   #6B7A82;
    --hair:     #DCE4E3;
    --accent:   #C86F4F;
    --accent-soft: #F4E4DB;
    --white: #ffffff;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { background: var(--ivory); color: var(--ink); font-family: 'Manrope', system-ui, sans-serif; font-weight: 400; line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: clip; }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  .serif { font-family: 'Fraunces', serif; font-weight: 400; letter-spacing: -0.015em; }
  .eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal-700); }
  .container { max-width: 1360px; margin: 0 auto; padding: 0 40px; }
  .container-wide { max-width: 1560px; margin: 0 auto; padding: 0 40px; }

  /* ===== Top bar ===== */
  .topbar { background: var(--teal-900); color: rgba(255,255,255,0.85); font-size: 12.5px; letter-spacing: 0.01em; }
  .topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 10px 40px; max-width: 1560px; margin: 0 auto; }
  .topbar-left { display: flex; gap: 28px; align-items: center; }
  .topbar-item { display: flex; align-items: center; gap: 8px; }
  .topbar-item svg { opacity: 0.7; }
  .topbar-right { display: flex; gap: 20px; align-items: center; }
  .topbar-right a { transition: color .2s; }
  .topbar-right a:hover { color: #fff; }

  /* ===== Nav ===== */
  nav.main { position: sticky; top: 0; z-index: 50; background: transparent; overflow: visible; padding-top: 0; transition: padding-top 480ms cubic-bezier(0.22, 1, 0.36, 1); }
  nav.main.is-scrolled { padding-top: 22px; }
  nav.main::before { content: ''; position: absolute; left: 0; right: 0; top: 0; bottom: 0; background: rgba(255,253,249,0.92); backdrop-filter: saturate(1.2) blur(16px); -webkit-backdrop-filter: saturate(1.2) blur(16px); border-bottom: 1px solid var(--hair); pointer-events: none; opacity: 1; transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1); z-index: -1; }
  nav.main.is-scrolled::before { opacity: 0; }
  nav.main .nav-inner { background: transparent; border: 1px solid transparent; border-radius: 0; box-shadow: 0 0 0 0 rgba(6,34,43,0); transition: background 480ms cubic-bezier(0.22, 1, 0.36, 1), border-color 480ms ease, border-radius 480ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 480ms cubic-bezier(0.22, 1, 0.36, 1), padding 480ms cubic-bezier(0.22, 1, 0.36, 1), max-width 480ms cubic-bezier(0.22, 1, 0.36, 1); }
  nav.main.is-scrolled .nav-inner { background: rgba(255,253,249,0.96); backdrop-filter: saturate(1.2) blur(16px); -webkit-backdrop-filter: saturate(1.2) blur(16px); border-color: rgba(6,34,43,0.06); border-radius: 999px; box-shadow: 0 22px 48px -22px rgba(6,34,43,0.32), 0 8px 18px -10px rgba(6,34,43,0.12); padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 14px; max-width: min(1440px, calc(100% - 24px)); }
  nav.main .brand-logo { transition: height 480ms cubic-bezier(0.22, 1, 0.36, 1), max-height 480ms cubic-bezier(0.22, 1, 0.36, 1); }
  nav.main.is-scrolled .brand-logo { height: 44px !important; max-height: 44px; }
  /* Compact (scrolled) pill: tighten spacing so all items + the CTA fit at any width.
     City labels (BUCURESTI / CAMPINA) stay — they sit stacked above the number, so they
     add no horizontal width, only show the location. */
  nav.main.is-scrolled .nav-links { gap: 20px; }
  nav.main.is-scrolled .phone-pill-seg { gap: 8px; padding: 5px 12px 5px 6px; }
  .nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 18px 40px; max-width: 1560px; margin: 0 auto; }
  .brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
  .brand .brand-logo { height: 58px !important; width: auto !important; max-width: none; max-height: 58px; display: block; flex-shrink: 0; }
  .brand .brand-logo-light { filter: brightness(0) invert(1); opacity: 0.95; }
  .brand-mark { width: 38px; height: 38px; border-radius: 50%; background: var(--teal-800); display: grid; place-items: center; color: var(--ivory); font-family: 'Fraunces', serif; font-size: 22px; }
  .brand-text { display: flex; flex-direction: column; line-height: 1; }
  .brand-text strong { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 400; letter-spacing: -0.01em; color: var(--ink); }
  .brand-text span { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-50); margin-top: 3px; }
  .nav-links { display: flex; gap: 26px; font-size: 14px; font-weight: 500; color: var(--ink); align-items: center; }
  .nav-links > a, .nav-links .nav-dd { height: 40px; display: inline-flex; align-items: center; }
  .nav-links > a { position: relative; padding: 0; transition: color .2s; white-space: nowrap; }
  .nav-links a:hover { color: var(--teal-800); }
  .nav-links a.has-caret::after { content: ''; display: inline-block; margin-left: 6px; width: 5px; height: 5px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translate(-2px, -2px); opacity: 0.5; }

  /* ===== DROPDOWNS ===== */
  .nav-dd { position: relative; display: inline-flex; align-items: center; height: 40px; }
  .nav-dd > a { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; white-space: nowrap; color: var(--ink); font-weight: 500; }
  .nav-dd > a:hover { color: var(--teal-800); }
  .nav-caret { width: 10px; height: 10px; opacity: 0.55; display: inline-block; transition: transform .3s cubic-bezier(0.2,0.8,0.2,1); margin-left: 6px; flex-shrink: 0; }
  .nav-dd.open .nav-caret, .nav-dd:hover .nav-caret { transform: rotate(180deg); color: var(--teal-800); opacity: 1; }
  .nav-mega { position: absolute; top: 100%; right: -80px; width: 760px; max-width: calc(100vw - 40px); background: var(--ivory); border: 1px solid var(--hair); border-radius: 22px; box-shadow: 0 40px 80px -24px rgba(6,34,43,0.28), 0 12px 32px -10px rgba(6,34,43,0.1); padding: 28px; z-index: 200; margin-top: 14px; pointer-events: auto; transform-origin: top right; opacity: 0; transform: translateY(-10px) scale(0.98); animation: dropIn .35s cubic-bezier(0.2, 0.9, 0.2, 1) forwards; }
  .nav-mega-sm { width: 400px; right: auto; left: 50%; margin-left: -200px; transform-origin: top center; }
  .nav-mega::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
  .nav-mega::after { content: ''; position: absolute; top: -7px; right: 140px; width: 14px; height: 14px; background: var(--ivory); border-top: 1px solid var(--hair); border-left: 1px solid var(--hair); transform: rotate(45deg); }
  .nav-mega-sm::after { right: auto; left: 50%; margin-left: -7px; }
  .nav-mega-head { padding: 4px 10px 18px; margin-bottom: 16px; border-bottom: 1px solid var(--hair); display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
  .nav-mega-head .eyebrow { display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal-800); margin-bottom: 8px; font-weight: 500; }
  .nav-mega-head h4 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 400; color: var(--ink); letter-spacing: -0.01em; line-height: 1.15; flex: 1; }
  .nav-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
  .nav-mega-item { display: flex; gap: 14px; padding: 12px 14px; border-radius: 14px; transition: background .25s, transform .25s; color: var(--ink); align-items: flex-start; opacity: 0; animation: itemIn .4s cubic-bezier(0.2, 0.9, 0.2, 1) forwards; }
  .nav-mega-item:nth-child(1) { animation-delay: 0.05s; }
  .nav-mega-item:nth-child(2) { animation-delay: 0.08s; }
  .nav-mega-item:nth-child(3) { animation-delay: 0.11s; }
  .nav-mega-item:nth-child(4) { animation-delay: 0.14s; }
  .nav-mega-item:nth-child(5) { animation-delay: 0.17s; }
  .nav-mega-item:nth-child(6) { animation-delay: 0.20s; }
  .nav-mega-item:nth-child(7) { animation-delay: 0.23s; }
  .nav-mega-item:nth-child(8) { animation-delay: 0.26s; }
  .nav-mega-item:nth-child(9) { animation-delay: 0.29s; }
  .nav-mega-item:hover { background: var(--mint-50); transform: translateX(3px); }
  .nav-mega-item:hover .tooth-spin svg { animation: toothSpin 1.4s linear infinite; color: var(--teal-800); }
  .nav-mega-item:hover .nav-mega-t { color: var(--teal-800); }
  .nav-mega-item .tooth-spin, .nav-mega-item .nav-mega-pin { flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px; background: var(--mint-100); display: grid; place-items: center; color: var(--teal-800); margin-top: 1px; transition: background .25s; }
  .nav-mega-t { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: 3px; letter-spacing: -0.01em; line-height: 1.2; transition: color .25s; }
  .nav-mega-d { font-size: 12.5px; color: var(--ink-50); line-height: 1.45; }
  .nav-mega-all { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--teal-800); color: var(--ivory); border-radius: 999px; font-size: 12.5px; font-weight: 500; letter-spacing: 0.02em; transition: all .25s; white-space: nowrap; flex-shrink: 0; }
  .nav-mega-all:hover { background: var(--teal-900); transform: translateX(3px); }
  @keyframes dropIn { to { opacity: 1; transform: translateY(0) scale(1); } }
  @keyframes itemIn { to { opacity: 1; transform: translateY(0); } }

  /* ===== TOOTH SPIN ===== */
  @keyframes toothSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  @keyframes toothFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-4px) rotate(6deg); } }
  @keyframes pulseRing { 0% { box-shadow: 0 0 0 0 rgba(11,89,98,0.35); } 70% { box-shadow: 0 0 0 14px rgba(11,89,98,0); } 100% { box-shadow: 0 0 0 0 rgba(11,89,98,0); } }
  @keyframes slowSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  .tooth-spin svg { transition: color .3s; }
  .tooth-auto-spin { animation: slowSpin 14s linear infinite; display: inline-block; }
  .tooth-float { animation: toothFloat 3.5s ease-in-out infinite; display: inline-block; }
  .marquee-tooth { display: inline-flex; align-items: center; padding: 0 22px; color: var(--accent); opacity: 0.85; vertical-align: middle; }
  .marquee-tooth svg { animation: slowSpin 8s linear infinite; }
  .svc-media { position: relative; }
  .svc-tooth { position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border-radius: 50%; background: var(--teal-800); display: grid; place-items: center; z-index: 2; box-shadow: 0 10px 24px -6px rgba(10,47,58,0.45); transition: transform .3s; }
  .svc:hover .svc-tooth { transform: scale(1.08); }
  .svc:hover .svc-tooth svg { animation: toothSpin 1.4s linear infinite; }

  /* ===== SERVICES SIDEBAR LAYOUT ===== */
  .svc-layout { display: grid; grid-template-columns: 280px 1fr; gap: 48px; padding: 0 40px 100px; max-width: 1560px; margin: 0 auto; align-items: start; }
  .svc-sidebar { position: sticky; top: 100px; border-right: 1px solid var(--hair); padding-right: 24px; }
  .svc-sidebar-head { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 16px; }
  .svc-sidebar-item { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--hair); font-size: 14px; font-weight: 500; color: var(--ink-70); transition: all .2s; cursor: pointer; }
  .svc-sidebar-item:hover { color: var(--teal-800); padding-left: 6px; }
  .svc-sidebar-item.active { color: var(--teal-800); padding-left: 6px; }
  .svc-sidebar-item:hover .tooth-spin svg, .svc-sidebar-item.active .tooth-spin svg { animation: toothSpin 1.5s linear infinite; }
  .svc-sidebar-item .num { font-family: 'Fraunces', serif; font-size: 12px; color: var(--ink-50); min-width: 22px; }
  .svc-sidebar-item.active .num { color: var(--accent); }
  .svc-sidebar-cta { margin-top: 28px; padding: 18px 0 0; border-top: 1px solid var(--hair); }

  /* icon chip — used in lists, cards */
  .tooth-chip { width: 44px; height: 44px; border-radius: 50%; background: var(--mint-100); color: var(--teal-800); display: inline-grid; place-items: center; flex-shrink: 0; }
  .nav-cta { display: flex; align-items: center; gap: 12px; }
  .phone-btn { display: flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--hair); border-radius: 999px; font-size: 13px; font-weight: 500; transition: all .2s; }
  .phone-btn:hover { border-color: var(--teal-800); color: var(--teal-800); }
  /* Twin-segment phone pill (Bucuresti | Campina) */
  .phone-pill { display: inline-flex; align-items: stretch; border: 1px solid var(--hair); border-radius: 999px; background: var(--ivory); transition: border-color .25s ease, box-shadow .25s ease, background .25s ease; }
  .phone-pill:hover { border-color: rgba(15,76,92,0.22); box-shadow: 0 8px 18px -10px rgba(6,34,43,0.18); }
  .phone-pill-seg { display: inline-flex; align-items: center; gap: 9px; padding: 6px 14px 6px 8px; border-radius: 999px; color: var(--ink); transition: background .2s ease, color .2s ease; text-decoration: none; }
  .phone-pill-seg:first-child { padding-left: 6px; padding-right: 14px; }
  .phone-pill-seg:last-child  { padding-left: 12px; padding-right: 8px; }
  .phone-pill-seg:hover { color: var(--teal-800); }
  .phone-pill-seg:hover .phone-pill-ic { background: var(--teal-800); border-color: var(--teal-800); color: var(--ivory); transform: scale(1.04); }
  .phone-pill-seg:hover .phone-pill-tag { color: var(--teal-800); }
  .phone-pill-ic { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--mint-50); border: 1px solid var(--hair); color: var(--teal-800); flex-shrink: 0; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .25s ease; }
  .phone-pill-ic svg { width: 12px; height: 12px; }
  .phone-pill-text { display: inline-flex; flex-direction: column; line-height: 1.1; gap: 2px; }
  .phone-pill-tag { font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-50); font-weight: 600; transition: color .2s ease; }
  .phone-pill-num { font-size: 12.5px; font-weight: 500; font-variant-numeric: tabular-nums; letter-spacing: 0.005em; white-space: nowrap; }
  .phone-pill-div { width: 1px; align-self: stretch; background: var(--hair); margin: 7px 0; }
  /* Floating navbar — slightly tighter so the pill sits clean inside the capsule */
  nav.main.is-scrolled .phone-pill { background: rgba(255,253,249,0.7); border-color: rgba(6,34,43,0.08); }
  nav.main.is-scrolled .phone-pill-seg { padding-top: 5px; padding-bottom: 5px; }
  nav.main.is-scrolled .phone-pill-ic { width: 24px; height: 24px; }
  nav.main.is-scrolled .phone-pill-tag { font-size: 9px; }
  nav.main.is-scrolled .phone-pill-num { font-size: 12px; }
  .book-btn { display: inline-flex; align-items: center; gap: 10px; padding: 11px 20px; background: var(--teal-800); color: var(--ivory); border-radius: 999px; font-size: 13.5px; font-weight: 500; transition: all .2s; }
  .book-btn:hover { background: var(--teal-900); transform: translateY(-1px); }
  .book-btn .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

  /* ===== HERO ===== */
  .hero { padding: 60px 40px 40px; max-width: 1560px; margin: 0 auto; }
  .hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: end; }
  .hero-left h1 { font-family: 'Fraunces', serif; font-size: clamp(56px, 7.2vw, 116px); font-weight: 400; line-height: 0.95; letter-spacing: -0.025em; color: var(--ink); margin-top: 24px; }
  .hero-left h1 .it { color: var(--teal-800); }
  .hero-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
  .hero-kicker .line { width: 48px; height: 1px; background: var(--teal-700); }
  .hero-sub { margin-top: 28px; font-size: 17px; line-height: 1.6; color: var(--ink-70); max-width: 520px; }
  .hero-actions { margin-top: 36px; display: flex; gap: 14px; align-items: center; }
  .cta-primary { display: inline-flex; align-items: center; gap: 12px; padding: 16px 26px; background: var(--teal-800); color: var(--ivory); border-radius: 999px; font-size: 14px; font-weight: 500; transition: all .25s; }
  .cta-primary:hover { background: var(--teal-900); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(15, 76, 92, 0.4); }
  .cta-primary svg { transition: transform .25s; }
  .cta-primary:hover svg { transform: translateX(4px); }
  .cta-ghost { display: inline-flex; align-items: center; gap: 10px; padding: 16px 24px; border: 1px solid var(--hair); border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--ink); transition: all .2s; }
  .cta-ghost:hover { border-color: var(--teal-800); background: var(--mint-50); }

  .hero-meta { margin-top: 52px; display: flex; gap: 48px; padding-top: 28px; border-top: 1px solid var(--hair); }
  .hero-stat .n { font-family: 'Fraunces', serif; font-size: 42px; color: var(--teal-800); line-height: 1; }
  .hero-stat .l { font-size: 12.5px; color: var(--ink-50); margin-top: 8px; letter-spacing: 0.02em; }

  .hero-right { position: relative; }
  .hero-photo { position: relative; aspect-ratio: 4 / 5; border-radius: 18px 18px 180px 18px; overflow: hidden; background: var(--mint-100); }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
  .hero-float-card { position: absolute; background: var(--ivory); border-radius: 14px; padding: 16px 18px; box-shadow: 0 30px 60px -30px rgba(10, 47, 58, 0.3); border: 1px solid var(--hair); display: flex; align-items: center; gap: 12px; }
  .hero-float-card.tl { top: 24px; left: -32px; }
  .hero-float-card.br { bottom: 40px; right: -24px; }
  .hero-float-card .icon { width: 40px; height: 40px; border-radius: 10px; background: var(--mint-100); display: grid; place-items: center; color: var(--teal-800); }
  .hero-float-card .label { font-size: 11px; color: var(--ink-50); letter-spacing: 0.05em; text-transform: uppercase; }
  .hero-float-card .val { font-size: 15px; font-weight: 500; color: var(--ink); margin-top: 2px; }

  /* ===== Marquee ===== */
  .marquee { margin-top: 80px; padding: 22px 0; border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); overflow: hidden; background: var(--cream); }
  .marquee-track { display: flex; gap: 64px; white-space: nowrap; animation: marquee 40s linear infinite; font-family: 'Fraunces', serif; font-size: 22px; color: var(--ink-70); }
  .marquee-track span { display: inline-flex; align-items: center; gap: 64px; }
  .marquee-track .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
  @keyframes marquee { to { transform: translateX(-50%); } }

  /* ===== Services ===== */
  .section { padding: 120px 40px; max-width: 1560px; margin: 0 auto; }
  .section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 60px; }
  .section-head h2 { font-family: 'Fraunces', serif; font-size: clamp(40px, 4.6vw, 72px); line-height: 1.02; letter-spacing: -0.02em; font-weight: 400; }
  .section-head h2 .it { color: var(--teal-800); }
  .section-head p { font-size: 16px; color: var(--ink-70); line-height: 1.65; max-width: 460px; }

  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .svc { position: relative; border-radius: 16px; overflow: hidden; background: var(--cream); border: 1px solid var(--hair); display: flex; flex-direction: column; transition: all .35s cubic-bezier(.2,.8,.2,1); cursor: pointer; min-height: 440px; }
  .svc:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(10, 47, 58, 0.25); border-color: var(--teal-500); }
  .svc-media { height: 240px; overflow: hidden; background: var(--mint-100); position: relative; }
  .svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
  .svc:hover .svc-media img { transform: scale(1.06); }
  .svc-num { position: absolute; top: 14px; left: 14px; background: rgba(255,253,249,0.95); border-radius: 999px; padding: 5px 12px; font-size: 11px; letter-spacing: 0.1em; color: var(--teal-800); font-weight: 500; }
  .svc-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
  .svc-body h3 { font-family: 'Fraunces', serif; font-size: 26px; line-height: 1.15; font-weight: 400; letter-spacing: -0.01em; }
  .svc-body p { font-size: 14px; color: var(--ink-70); line-height: 1.6; margin-top: 10px; flex: 1; }
  .svc-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--teal-800); }
  .svc-link .arrow { display: inline-block; transition: transform .25s; }
  .svc:hover .arrow { transform: translateX(4px); }

  /* Big feature service card */
  .svc.feature { grid-column: span 2; background: var(--teal-900); color: var(--ivory); border: none; min-height: 440px; }
  .svc.feature .svc-body h3, .svc.feature .svc-body p { color: var(--ivory); }
  .svc.feature .svc-body p { color: rgba(255,255,255,0.75); }
  .svc.feature .svc-link { color: var(--accent-soft); }
  .svc.feature .svc-media { height: 240px; }

  /* ===== About ===== */
  .about { background: var(--cream); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
  .about-wrap { padding: 120px 40px; max-width: 1560px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
  .about-media { position: relative; }
  .about-img-main { aspect-ratio: 4/5; border-radius: 16px; overflow: hidden; background: var(--mint-100); max-height: 70vh; }
  .about-img-main img { width: 100%; height: 100%; object-fit: cover; }
  .about-img-secondary { position: absolute; bottom: -40px; right: -40px; width: 46%; aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; border: 10px solid var(--cream); }
  .about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
  .about-badge { position: absolute; top: 24px; left: 24px; background: var(--ivory); border-radius: 100px; padding: 10px 14px 10px 10px; display: flex; align-items: center; gap: 10px; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.2); }
  .about-badge .b-circle { width: 32px; height: 32px; border-radius: 50%; background: var(--teal-800); color: var(--ivory); display: grid; place-items: center; font-family: 'Fraunces', serif; font-size: 14px; }
  .about-badge .b-text { font-size: 12.5px; font-weight: 500; }

  .about-content h2 { font-family: 'Fraunces', serif; font-size: clamp(40px, 4.4vw, 64px); line-height: 1.05; letter-spacing: -0.02em; font-weight: 400; margin-top: 18px; }
  .about-content h2 .it { color: var(--teal-800); }
  .about-content p.lead { margin-top: 24px; font-size: 16.5px; line-height: 1.65; color: var(--ink-70); }
  .about-features { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .feat { padding: 20px; background: var(--ivory); border: 1px solid var(--hair); border-radius: 14px; }
  .feat-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--mint-100); color: var(--teal-800); display: grid; place-items: center; margin-bottom: 14px; }
  .feat h4 { font-size: 15px; font-weight: 600; color: var(--ink); }
  .feat p { font-size: 13px; color: var(--ink-70); line-height: 1.55; margin-top: 6px; }

  /* ===== Specialties strip ===== */
  .specialties { padding: 100px 40px; max-width: 1560px; margin: 0 auto; }
  .spec-head { text-align: center; margin-bottom: 54px; }
  .spec-head h2 { font-family: 'Fraunces', serif; font-size: clamp(36px, 4vw, 56px); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; margin-top: 12px; }
  .spec-head h2 .it { color: var(--teal-800); }
  .spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .spec-item { background: var(--cream); padding: 28px 22px; border-radius: 14px; border: 1px solid var(--hair); transition: all .3s; }
  .spec-item:hover { background: var(--teal-900); color: var(--ivory); border-color: var(--teal-900); transform: translateY(-4px); }
  .spec-item:hover .spec-num, .spec-item:hover h4 { color: var(--ivory); }
  .spec-item:hover p { color: rgba(255,255,255,0.75); }
  .spec-num { font-family: 'Fraunces', serif; font-size: 22px; color: var(--teal-700); }
  .spec-item h4 { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 400; letter-spacing: -0.01em; margin-top: 18px; line-height: 1.15; }
  .spec-item p { font-size: 13px; color: var(--ink-70); margin-top: 10px; line-height: 1.55; }

  /* ===== Gallery ===== */
  .gallery { padding: 20px 40px 120px; max-width: 1560px; margin: 0 auto; }
  .gallery-head { margin-bottom: 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
  .gallery-head h2 { font-family: 'Fraunces', serif; font-size: clamp(40px, 4.4vw, 64px); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }
  .gallery-head h2 .it { color: var(--teal-800); }
  .gallery-head p { font-size: 15.5px; color: var(--ink-70); line-height: 1.65; max-width: 440px; }
  .gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 180px; gap: 14px; }
  .g-cell { border-radius: 14px; overflow: hidden; background: var(--mint-100); position: relative; }
  .g-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
  .g-cell:hover img { transform: scale(1.04); }
  .g-cell .caption { position: absolute; bottom: 12px; left: 14px; background: rgba(255,253,249,0.95); padding: 6px 12px; font-size: 11.5px; border-radius: 999px; letter-spacing: 0.05em; color: var(--teal-800); font-weight: 500; opacity: 0; transform: translateY(6px); transition: all .3s; }
  .g-cell:hover .caption { opacity: 1; transform: translateY(0); }

  /* ===== Locations ===== */
  .locations { background: var(--teal-900); color: var(--ivory); }
  .loc-wrap { padding: 120px 40px; max-width: 1560px; margin: 0 auto; }
  .loc-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 60px; }
  .loc-head h2 { font-family: 'Fraunces', serif; font-size: clamp(44px, 5vw, 76px); font-weight: 400; line-height: 1.02; letter-spacing: -0.02em; }
  .loc-head h2 .it { color: #9AC9D0; }
  .loc-head p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.6; max-width: 460px; }
  .loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .loc-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden; transition: all .3s; }
  .loc-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.2); }
  .loc-media { aspect-ratio: 16/10; overflow: hidden; }
  .loc-media img { width: 100%; height: 100%; object-fit: cover; }
  .loc-body { padding: 32px; }
  .loc-city { font-family: 'Fraunces', serif; font-size: 44px; font-weight: 400; letter-spacing: -0.02em; }
  .loc-city .it { color: #9AC9D0; font-size: 28px; margin-left: 6px; }
  .loc-details { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
  .loc-row { display: flex; gap: 14px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5; }
  .loc-row svg { flex-shrink: 0; margin-top: 3px; color: #9AC9D0; }
  .loc-actions { margin-top: 28px; display: flex; gap: 12px; }
  .loc-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 999px; font-size: 13px; font-weight: 500; transition: all .2s; }
  .loc-btn.primary { background: var(--ivory); color: var(--teal-900); }
  .loc-btn.primary:hover { background: #fff; transform: translateY(-2px); }
  .loc-btn.ghost { border: 1px solid rgba(255,255,255,0.2); color: var(--ivory); }
  .loc-btn.ghost:hover { border-color: #fff; background: rgba(255,255,255,0.05); }

  /* ===== Testimonials ===== */
  .testi { padding: 120px 40px; max-width: 1560px; margin: 0 auto; }
  .testi-head { text-align: center; margin-bottom: 60px; }
  .testi-head .rating-row { display: inline-flex; align-items: center; gap: 16px; padding: 10px 18px; background: var(--cream); border-radius: 999px; border: 1px solid var(--hair); }
  .rating-row .stars { color: #E4A930; letter-spacing: 2px; }
  .rating-row .score { font-weight: 600; font-size: 14px; }
  .rating-row .label { font-size: 13px; color: var(--ink-50); }
  .testi-head h2 { font-family: 'Fraunces', serif; font-size: clamp(40px, 4.6vw, 68px); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; margin-top: 22px; max-width: 900px; margin-left: auto; margin-right: auto; }
  .testi-head h2 .it { color: var(--teal-800); }

  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .testi-carousel { position: relative; display: flex; align-items: stretch; gap: 14px; }
  .testi-viewport { flex: 1; overflow: hidden; }
  .testi-track { display: flex; gap: 18px; transition: transform 540ms cubic-bezier(0.22, 1, 0.36, 1); will-change: transform; }
  .testi-track > .testi-card { box-sizing: border-box; min-height: 100%; margin-right: 0; }
  .testi-nav { flex: 0 0 auto; align-self: center; width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--hair); background: var(--ivory); color: var(--teal-800); display: grid; place-items: center; cursor: pointer; transition: background 220ms, color 220ms, transform 220ms, box-shadow 220ms; box-shadow: 0 1px 2px rgba(11, 30, 36, 0.04); }
  .testi-nav:hover { background: var(--teal-800); color: var(--ivory); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(11, 30, 36, 0.12); }
  .testi-nav:active { transform: translateY(0); }
  .testi-nav:focus-visible { outline: 2px solid var(--teal-800); outline-offset: 3px; }
  .testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
  .testi-dot { width: 8px; height: 8px; padding: 0; border-radius: 50%; border: none; background: rgba(11, 30, 36, 0.18); cursor: pointer; transition: background 220ms, transform 220ms; }
  .testi-dot.is-active { background: var(--teal-800); transform: scale(1.25); }
  .testi-dot:hover { background: var(--teal-700); }
  .testi-card { background: var(--cream); border: 1px solid var(--hair); border-radius: 18px; padding: 30px; display: flex; flex-direction: column; gap: 18px; }
  .testi-card.dark { background: var(--teal-900); color: var(--ivory); border: none; }
  .testi-card.dark .t-quote { color: var(--ivory); }
  .testi-card.dark .t-name { color: var(--ivory); }
  .testi-card.dark .t-meta { color: rgba(255,255,255,0.6); }
  .testi-card.dark .t-stars { color: #E4A930; }
  .testi-card .t-mark { font-family: 'Fraunces', serif; font-size: 72px; line-height: 0; height: 30px; color: var(--teal-700); }
  .testi-card.dark .t-mark { color: #9AC9D0; }
  .t-quote { font-family: 'Fraunces', serif; font-size: 22px; line-height: 1.3; letter-spacing: -0.01em; color: var(--ink); font-weight: 400; flex: 1; }
  .t-stars { font-size: 14px; letter-spacing: 2px; color: #E4A930; }
  .t-footer { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--hair); }
  .testi-card.dark .t-footer { border-top-color: rgba(255,255,255,0.1); }
  .t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--mint-100); color: var(--teal-800); display: grid; place-items: center; font-weight: 600; font-size: 14px; }
  .testi-card.dark .t-avatar { background: rgba(255,255,255,0.1); color: var(--ivory); }
  .t-name { font-size: 14px; font-weight: 600; }
  .t-meta { font-size: 12px; color: var(--ink-50); margin-top: 2px; }

  /* ===== Process ===== */
  .process { background: var(--cream); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); }
  .process-wrap { padding: 120px 40px; max-width: 1560px; margin: 0 auto; }
  .process-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }
  .process-head h2 { font-family: 'Fraunces', serif; font-size: clamp(40px, 4.6vw, 68px); font-weight: 400; line-height: 1.02; letter-spacing: -0.02em; }
  .process-head h2 .it { color: var(--teal-800); }
  .process-head p { color: var(--ink-70); font-size: 16px; line-height: 1.65; max-width: 460px; }
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .step { padding: 30px 28px; background: var(--ivory); border: 1px solid var(--hair); border-radius: 18px; position: relative; min-height: 260px; display: flex; flex-direction: column; }
  .step-num { font-family: 'Fraunces', serif; font-size: 48px; line-height: 1; color: var(--teal-700); }
  .step h4 { font-family: 'Fraunces', serif; font-size: 26px; font-weight: 400; letter-spacing: -0.01em; margin-top: 24px; line-height: 1.1; }
  .step p { font-size: 13.5px; color: var(--ink-70); line-height: 1.6; margin-top: 10px; flex: 1; }

  /* ===== CTA Band ===== */
  .cta-band { padding: 80px 40px; max-width: 1560px; margin: 0 auto; }
  .cta-band-inner { background: var(--teal-900); color: var(--ivory); border-radius: 28px; padding: 80px 64px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; overflow: hidden; }
  .cta-band-inner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 30%, rgba(154, 201, 208, 0.15), transparent 50%); pointer-events: none; }
  .cta-band h2 { font-family: 'Fraunces', serif; font-size: clamp(36px, 4vw, 60px); font-weight: 400; line-height: 1.02; letter-spacing: -0.02em; position: relative; }
  .cta-band h2 .it { color: #9AC9D0; }
  .cta-band p { color: rgba(255,255,255,0.75); margin-top: 20px; font-size: 16px; line-height: 1.65; position: relative; }
  .cta-band .phones { display: flex; flex-direction: column; gap: 16px; position: relative; }
  .phone-card { padding: 22px 26px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; transition: all .3s; }
  .phone-card:hover { background: rgba(255,255,255,0.1); transform: translateX(4px); }
  .phone-card .city { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.15em; text-transform: uppercase; }
  .phone-card .num { font-family: 'Fraunces', serif; font-size: 36px; letter-spacing: -0.01em; margin-top: 6px; display: flex; align-items: center; gap: 12px; }
  .phone-card .num svg { color: #9AC9D0; }

  /* ===== Footer ===== */
  footer { background: #06222B; color: rgba(255,255,255,0.7); padding: 80px 40px 40px; }
  .foot-wrap { max-width: 1560px; margin: 0 auto; }
  .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .foot-brand .brand-text strong { color: var(--ivory); }
  .foot-brand p { margin-top: 22px; font-size: 14px; line-height: 1.6; max-width: 400px; }
  .foot-brand .socials { margin-top: 24px; display: flex; gap: 10px; }
  .foot-brand .socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: grid; place-items: center; transition: all .2s; }
  .foot-brand .socials a:hover { border-color: var(--ivory); color: var(--ivory); }
  .foot-col h5 { font-size: 12px; color: var(--ivory); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 22px; font-weight: 500; }
  .foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
  .foot-col ul a:hover { color: var(--ivory); }
  .foot-col ul li.foot-sublink { padding-left: 18px; position: relative; font-size: 13px; opacity: 0.78; margin-top: -4px; }
  .foot-col ul li.foot-sublink::before { content: ''; position: absolute; left: 0; top: 10px; width: 10px; height: 1px; background: rgba(255,255,255,0.3); }
  .foot-bottom { padding-top: 30px; display: flex; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,0.5); }

  /* ===== Tweaks panel ===== */
  .tweaks-panel { position: fixed; right: 20px; bottom: 20px; width: 280px; background: var(--ivory); border: 1px solid var(--hair); border-radius: 16px; padding: 18px; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25); z-index: 100; display: none; }
  .tweaks-panel.visible { display: block; }
  .tweaks-panel h5 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 400; margin-bottom: 14px; }
  .tw-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-top: 1px solid var(--hair); font-size: 13px; }
  .tw-row:first-of-type { border-top: none; }
  .tw-swatches { display: flex; gap: 6px; }
  .tw-swatch { width: 22px; height: 22px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; transition: transform .2s; }
  .tw-swatch.active { border-color: var(--ink); }
  .tw-swatch:hover { transform: scale(1.1); }
  .tw-toggle { width: 38px; height: 22px; background: var(--hair); border-radius: 999px; position: relative; cursor: pointer; transition: background .2s; }
  .tw-toggle.on { background: var(--teal-800); }
  .tw-toggle::after { content: ''; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: #fff; border-radius: 50%; transition: transform .2s; }
  .tw-toggle.on::after { transform: translateX(16px); }

  /* ===== Mobile hamburger + drawer ===== */
  .nav-burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: none; border: 1px solid var(--hair); border-radius: 10px; padding: 0; }
  .nav-burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-drawer { position: fixed; inset: 0; background: rgba(10, 47, 58, 0.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .3s; }
  .mobile-drawer.open { opacity: 1; pointer-events: auto; }
  .mobile-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(400px, 88vw); background: var(--ivory); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1); overflow-y: auto; }
  .mobile-drawer.open .mobile-panel { transform: translateX(0); }
  .mobile-head { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--hair); }
  .mobile-close { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--hair); display: grid; place-items: center; color: var(--ink); }
  .mobile-close:hover { background: var(--mint-50); }
  .mobile-links { flex: 1; padding: 14px 10px; display: flex; flex-direction: column; }
  .mobile-links > a, .mobile-sub > button { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 16px 14px; font-size: 16px; font-weight: 500; color: var(--ink); border-radius: 10px; text-align: left; font-family: inherit; cursor: pointer; background: none; border: none; transition: background .2s; }
  .mobile-links > a:hover, .mobile-sub > button:hover { background: var(--mint-50); }
  .mobile-links > a.active, .mobile-sub.open > button { color: var(--teal-800); background: var(--mint-50); }
  .mobile-sub > button svg { transition: transform .25s; }
  .mobile-sub.open > button svg { transform: rotate(180deg); }
  .mobile-sublist { display: flex; flex-direction: column; padding: 4px 14px 8px 26px; }
  .mobile-sublist a { padding: 11px 12px; font-size: 14px; color: var(--ink-70); border-radius: 8px; }
  .mobile-sublist a:first-child { font-weight: 600; color: var(--teal-800); }
  .mobile-sublist a:hover { background: var(--mint-50); color: var(--teal-800); }
  .mobile-cta { padding: 18px 22px; border-top: 1px solid var(--hair); display: flex; flex-direction: column; gap: 10px; background: var(--cream); }
  .mobile-phone { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 18px; border: 1px solid var(--hair); border-radius: 999px; font-size: 14px; font-weight: 500; background: var(--ivory); color: var(--ink); transition: border-color .2s ease, color .2s ease, background .2s ease; }
  .mobile-phone:hover { border-color: var(--teal-800); color: var(--teal-800); }
  .mobile-phone-ic { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--mint-50); color: var(--teal-800); flex-shrink: 0; }
  .mobile-phone-ic svg { width: 13px; height: 13px; }
  .mobile-phone-tag { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: var(--teal-800); margin-right: 2px; }
  .mobile-phone-num { font-variant-numeric: tabular-nums; letter-spacing: 0.005em; }

  /* ===== Responsive — Laptop ≤1280 ===== */
  @media (max-width: 1280px) {
    .phone-pill-seg { gap: 8px; padding-top: 5px; padding-bottom: 5px; }
    .phone-pill-ic { width: 24px; height: 24px; }
    .phone-pill-num { font-size: 12px; }
    .phone-pill-tag { font-size: 9px; letter-spacing: 0.18em; }
  }

  /* ===== Responsive — Laptop ≤1200 ===== */
  @media (max-width: 1200px) {
    .nav-links { gap: 22px; font-size: 13.5px; }
    .phone-btn { padding: 9px 13px; font-size: 12.5px; }
    .book-btn { padding: 10px 16px; font-size: 12.5px; }
    .section, .specialties, .testi, .hero, .gallery, .cta-band { padding-left: 28px; padding-right: 28px; }
    .loc-wrap, .about-wrap, .process-wrap { padding-left: 28px; padding-right: 28px; }
    .svc-layout { padding: 0 28px 80px; gap: 32px; grid-template-columns: 240px 1fr; }
    .topbar-inner { padding: 10px 28px; }
    .nav-inner { padding: 16px 28px; }
  }

  /* ===== Responsive — Compact laptop / iPad landscape ≤1100 =====
     Collapse phone pills to call-icons only (numbers would overflow with the CTA). */
  @media (max-width: 1100px) {
    .nav-cta { gap: 10px; }
    .phone-pill-seg { padding: 7px 9px; gap: 0; }
    .phone-pill-tag, .phone-pill-num { display: none; }
    .phone-pill-ic { width: 24px; height: 24px; }
    .phone-pill-ic svg { width: 12px; height: 12px; }
  }

  /* ===== Responsive — Tablet ≤960 ===== */
  @media (max-width: 960px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-burger { display: flex; margin-left: auto; }
    .nav-inner { padding: 14px 24px; }
    .topbar-inner { padding: 8px 24px; flex-wrap: wrap; gap: 8px; }
    .topbar { font-size: 11.5px; }
    .topbar-left { gap: 16px; }
    .topbar-right { gap: 12px; }

    .hero { padding: 44px 24px 28px; }
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .hero-right { max-width: 560px; margin: 0 auto; }
    .hero-photo { border-radius: 18px 18px 120px 18px; }
    .hero-float-card.tl { left: 8px; top: 14px; }
    .hero-float-card.br { right: 8px; bottom: 20px; }
    .hero-meta { margin-top: 38px; gap: 32px; flex-wrap: wrap; padding-top: 22px; }

    .marquee { margin-top: 56px; }
    .marquee-track { font-size: 18px; gap: 40px; }
    .marquee-track span { gap: 40px; }
    .marquee-tooth { padding: 0 14px; }

    .section { padding: 80px 24px; }
    .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .svc { min-height: 400px; }
    .svc.feature { grid-column: span 2; }

    .about-wrap { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px; }
    .about-media { max-width: 520px; margin: 0 auto; width: 100%; }
    .about-img-secondary { width: 42%; bottom: -24px; right: -16px; }
    .about-features { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }

    .specialties { padding: 80px 24px; }
    .spec-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .gallery { padding: 20px 24px 80px; }
    .gallery-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
    .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 150px; gap: 10px; }

    .loc-wrap { padding: 80px 24px; }
    .loc-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
    .loc-grid { grid-template-columns: 1fr; gap: 20px; }
    .loc-body { padding: 24px; }
    .loc-city { font-size: 36px; }

    .testi { padding: 80px 24px; }
    .testi-grid { grid-template-columns: 1fr; gap: 14px; }
    .testi-head { margin-bottom: 40px; }
    .testi-carousel { gap: 8px; }
    .testi-track { gap: 14px; }
    .testi-nav { width: 44px; height: 44px; }

    .process-wrap { padding: 80px 24px; }
    .process-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .step { padding: 24px 22px; min-height: auto; }

    .cta-band { padding: 60px 24px; }
    .cta-band-inner { grid-template-columns: 1fr; gap: 36px; padding: 56px 36px; border-radius: 22px; }

    footer { padding: 60px 24px 30px; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 44px; }
    .foot-brand { grid-column: span 2; }
    .foot-bottom { flex-direction: column; gap: 8px; text-align: center; padding-top: 24px; }
  }

  /* ===== Responsive — Mobile ≤640 ===== */
  @media (max-width: 640px) {
    .container, .container-wide { padding-left: 18px; padding-right: 18px; }
    .topbar-inner { padding: 8px 18px; }
    .topbar-left .topbar-item { font-size: 11px; }
    .topbar-left .topbar-item:first-child { display: none; }
    .topbar-right { width: 100%; justify-content: space-between; gap: 8px; }
    .topbar-right a { font-size: 11px; }
    .nav-inner { padding: 12px 18px; }
    .brand .brand-logo { height: 44px !important; max-height: 44px; min-width: 150px !important; }

    .hero { padding: 32px 18px 20px; }
    .hero-left h1 { font-size: clamp(40px, 10vw, 56px); margin-top: 14px; }
    .hero-sub { margin-top: 20px; font-size: 15.5px; }
    .hero-actions { margin-top: 26px; gap: 10px; flex-wrap: wrap; }
    .cta-primary, .cta-ghost { padding: 13px 20px; font-size: 13.5px; }
    .hero-meta { gap: 22px; margin-top: 30px; padding-top: 18px; }
    .hero-stat .n { font-size: 32px; }
    .hero-stat .l { font-size: 11.5px; margin-top: 6px; }
    .hero-photo { border-radius: 14px 14px 80px 14px; }
    .hero-float-card { padding: 12px 14px; }
    .hero-float-card.tl { left: 6px; top: 10px; }
    .hero-float-card.br { right: 6px; bottom: 14px; }
    .hero-float-card .icon { width: 34px; height: 34px; }
    .hero-float-card .val { font-size: 13px; }

    .marquee { margin-top: 40px; padding: 16px 0; }
    .marquee-track { font-size: 15px; gap: 28px; }
    .marquee-track span { gap: 28px; }

    .section { padding: 60px 18px; }
    .section-head { margin-bottom: 30px; gap: 18px; }
    .services-grid, .spec-grid, .process-grid, .testi-grid { grid-template-columns: 1fr; gap: 14px; }
    .svc { min-height: auto; }
    .svc.feature { grid-column: auto; }
    .svc-media, .svc.feature .svc-media { height: 200px; }
    .svc-body { padding: 20px; }
    .svc-body h3 { font-size: 22px; }

    .about-wrap { padding: 60px 18px; gap: 36px; }
    .about-img-secondary { width: 46%; bottom: -18px; right: -10px; border-width: 6px; }
    .about-features { grid-template-columns: 1fr !important; gap: 12px; }
    .about-content p.lead { font-size: 15.5px; margin-top: 18px; }

    .specialties { padding: 60px 18px; }
    .spec-item { padding: 22px 18px; }

    .gallery { padding: 16px 18px 60px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 8px; }

    .loc-wrap { padding: 60px 18px; }
    .loc-card { border-radius: 16px; }
    .loc-body { padding: 22px; }
    .loc-city { font-size: 30px; }
    .loc-city .it { font-size: 20px; }
    .loc-actions { flex-wrap: wrap; gap: 8px; }

    .testi { padding: 60px 18px; }
    .testi-card { padding: 24px; }
    .t-quote { font-size: 18px; }

    .process-wrap { padding: 60px 18px; }
    .step { padding: 22px 20px; }
    .step h4 { font-size: 22px; margin-top: 18px; }

    .cta-band { padding: 44px 18px; }
    .cta-band-inner { padding: 40px 22px; gap: 28px; border-radius: 20px; }
    .phone-card { padding: 18px 20px; }
    .phone-card .num { font-size: 26px; gap: 10px; }

    footer { padding: 48px 18px 24px; }
    .foot-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
    .foot-brand { grid-column: auto; }
    .foot-brand p { font-size: 13.5px; }

    .tweaks-panel { right: 12px; bottom: 12px; width: calc(100vw - 24px); max-width: 280px; }
    .mobile-panel { width: 100vw; }

    /* Services page sidebar → horizontal chips on mobile */
    .svc-layout { grid-template-columns: 1fr !important; padding: 0 18px 60px; gap: 20px; }
    .svc-sidebar { position: static !important; border-right: none; padding-right: 0; padding-bottom: 14px; margin: 0 -18px; padding-left: 18px; padding-right: 18px; overflow-x: auto; display: flex; gap: 8px; border-bottom: 1px solid var(--hair); -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
    .svc-sidebar::-webkit-scrollbar { height: 4px; }
    .svc-sidebar::-webkit-scrollbar-thumb { background: var(--hair); border-radius: 2px; }
    .svc-sidebar-head { display: none; }
    .svc-sidebar-item { flex-shrink: 0; padding: 8px 14px !important; border: 1px solid var(--hair); border-radius: 999px; font-size: 12.5px; white-space: nowrap; background: var(--cream); }
    .svc-sidebar-item.active { background: var(--teal-800); color: var(--ivory) !important; padding-left: 14px !important; border-color: var(--teal-800); }
    .svc-sidebar-item.active .num, .svc-sidebar-item.active .tooth-spin { display: none; }
    .svc-sidebar-cta { display: none; }
  }

  /* ===== Ultra-narrow ≤380 ===== */
  @media (max-width: 380px) {
    .topbar-right { gap: 6px; }
    .topbar-right a { font-size: 10.5px; }
    .hero-left h1 { font-size: 38px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .cta-primary, .cta-ghost { justify-content: center; }
  }

  /* ===== Scroll-triggered animations (modern premium) ===== */
  @media (prefers-reduced-motion: no-preference) {
    .reveal,
    .reveal-zoom,
    .reveal-img,
    .reveal-left,
    .reveal-right {
      will-change: opacity, transform;
      transition: opacity .95s cubic-bezier(.2,.9,.2,1), transform 1.05s cubic-bezier(.2,.9,.2,1);
    }
    .reveal       { opacity: 0; transform: translateY(32px); }
    .reveal-zoom  { opacity: 0; transform: scale(.965) translateY(18px); }
    .reveal-img   { opacity: 0; transform: scale(1.08); }
    .reveal-left  { opacity: 0; transform: translateX(-32px); }
    .reveal-right { opacity: 0; transform: translateX(32px); }

    .reveal.is-visible,
    .reveal-zoom.is-visible,
    .reveal-img.is-visible,
    .reveal-left.is-visible,
    .reveal-right.is-visible {
      opacity: 1;
      transform: none;
    }

    /* Image reveal inside a container: clip the overflow so the scale looks organic */
    .reveal-img-wrap { overflow: hidden; }

    /* Subtle blur lift for hero media (extra premium touch) */
    .reveal-hero {
      opacity: 0;
      transform: scale(1.04);
      filter: blur(6px);
      transition: opacity 1.1s ease, transform 1.3s cubic-bezier(.2,.9,.2,1), filter 1s ease;
      will-change: opacity, transform, filter;
    }
    .reveal-hero.is-visible {
      opacity: 1;
      transform: none;
      filter: blur(0);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-zoom, .reveal-img, .reveal-left, .reveal-right, .reveal-hero {
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
      transition: none !important;
    }
  }

/* ======= Lightbox (FLIP expand-from-origin) ======= */

/* Gallery thumbnails: subtle hover lift, zoom-in cursor */
.gallery-grid img,
.clinic-gallery img {
  cursor: zoom-in;
  transition: transform .4s cubic-bezier(.2,.85,.25,1), box-shadow .4s ease;
}
.gallery-grid img:hover,
.clinic-gallery img:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 22px 44px -22px rgba(10,47,58,.45);
}

/* Fullscreen overlay — starts transparent, fades to dark teal with blur */
.dfx-lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 47, 58, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background .45s ease, backdrop-filter .45s ease;
  pointer-events: auto;
}
.dfx-lb.dfx-lb-open {
  background: rgba(10, 47, 58, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* The expanding image — position:fixed so it animates against the viewport */
.dfx-lb-img {
  position: fixed;
  margin: 0;
  padding: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  user-select: none;
  -webkit-user-drag: none;
  cursor: zoom-out;
  transition:
    top    .55s cubic-bezier(.22,.9,.18,1),
    left   .55s cubic-bezier(.22,.9,.18,1),
    width  .55s cubic-bezier(.22,.9,.18,1),
    height .55s cubic-bezier(.22,.9,.18,1),
    border-radius .5s ease,
    box-shadow    .5s ease,
    opacity .2s ease;
  will-change: top, left, width, height;
}
.dfx-lb.dfx-lb-open .dfx-lb-img {
  border-radius: 8px;
  box-shadow: 0 40px 120px -20px rgba(0, 0, 0, .55),
              0 0 0 1px rgba(255, 253, 249, .06);
}

/* Buttons — glass pill with cream foreground, Fraunces serif accent */
.dfx-lb-btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255, 253, 249, .08);
  border: 1px solid rgba(255, 253, 249, .18);
  color: #fffdf9;
  padding: 0;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease, opacity .35s ease .18s;
  opacity: 0;
  z-index: 10001;
}
.dfx-lb.dfx-lb-open .dfx-lb-btn { opacity: 1; }
.dfx-lb-btn:hover {
  background: rgba(255, 253, 249, .22);
  border-color: rgba(255, 253, 249, .42);
}
.dfx-lb-btn svg { display: block; }

.dfx-lb-close { top: 28px;  right: 28px; }
.dfx-lb-close:hover { transform: rotate(90deg) scale(1.06); }

.dfx-lb-prev { left: 28px;  top: 50%; transform: translateY(-50%); }
.dfx-lb-next { right: 28px; top: 50%; transform: translateY(-50%); }
.dfx-lb-prev:hover { transform: translateY(-50%) translateX(-3px) scale(1.06); }
.dfx-lb-next:hover { transform: translateY(-50%) translateX( 3px) scale(1.06); }

/* Counter pill — cream text, serif numerals */
.dfx-lb-counter {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .32);
  border: 1px solid rgba(255, 253, 249, .16);
  color: rgba(255, 253, 249, .9);
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: .04em;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-variant-numeric: tabular-nums;
  z-index: 10001;
  opacity: 0;
  transition: opacity .35s ease .25s;
}
.dfx-lb.dfx-lb-open .dfx-lb-counter { opacity: 1; }

/* Mobile tightening */
@media (max-width: 760px) {
  .dfx-lb-btn     { width: 44px; height: 44px; }
  .dfx-lb-close   { top: 16px; right: 16px; }
  .dfx-lb-prev    { left: 10px;  }
  .dfx-lb-next    { right: 10px; }
  .dfx-lb-counter { bottom: 18px; font-size: 13px; padding: 8px 16px; }
}

/* Respect reduced motion — skip expand/shrink, just fade */
@media (prefers-reduced-motion: reduce) {
  .dfx-lb, .dfx-lb-img, .dfx-lb-btn, .dfx-lb-counter {
    transition: opacity .2s ease !important;
  }
}

/* ======= Responsive — Laptop optimizations ======= */

/* Mid-large laptop: 1600px (covers 1536/1600 viewports) */
@media (min-width: 1201px) and (max-width: 1600px) {
  .hero { padding: 56px 36px 38px; }
  .section, .specialties, .testi, .gallery, .cta-band { padding-left: 36px; padding-right: 36px; }
  .loc-wrap, .about-wrap, .process-wrap { padding-left: 36px; padding-right: 36px; }
  .topbar-inner, .nav-inner { padding-left: 36px; padding-right: 36px; }
  .hero-grid { gap: 44px; }
}

/* Standard laptop: 1440px (MacBook Pro 14", 1440×900) */
@media (min-width: 1201px) and (max-width: 1440px) {
  .hero { padding: 50px 32px 34px; }
  .hero h1 { font-size: clamp(48px, 6.4vw, 88px) !important; }
  .hero-grid { gap: 40px; }
  .section, .specialties, .testi, .gallery, .cta-band { padding: 100px 32px; }
  .gallery, .specialties { padding-top: 80px; padding-bottom: 80px; }
  .loc-wrap, .about-wrap, .process-wrap { padding: 100px 32px; }
  .topbar-inner, .nav-inner { padding-left: 32px; padding-right: 32px; }
  .nav-links { gap: 22px; }
  .services-grid { gap: 16px; }
  .spec-grid { gap: 12px; }
}

/* Small laptop: 1366px (legacy laptops, 1366×768) */
@media (min-width: 1201px) and (max-width: 1366px) {
  .hero { padding: 28px 32px 24px; }
  .hero-photo { aspect-ratio: 4 / 4.6; }
  .hero h1 { font-size: clamp(40px, 5.6vw, 72px) !important; line-height: 1.0; margin-top: 14px !important; }
  .hero-sub { margin-top: 18px; font-size: 16px; }
  .hero-actions { margin-top: 22px; }
  .hero-meta { margin-top: 28px; gap: 28px; padding-top: 18px; }
  .hero-grid { gap: 36px; }
  .section, .specialties, .testi, .gallery, .cta-band { padding: 88px 32px; }
  .loc-wrap, .about-wrap, .process-wrap { padding: 88px 32px; }
  .nav-links { gap: 16px; font-size: 13px; }
  .nav-links > a { padding: 0 2px; }
  .phone-pill-seg { gap: 7px; padding: 5px 10px 5px 6px; }
  .nav-cta { gap: 10px; }
  .topbar-item { font-size: 12px; }
  .marquee { margin-top: 80px; }
}

/* Short viewport: 14" laptops with zoom or 1366×768 / 1280×720 — collapse hero so CTA is above the fold */
@media (max-height: 900px) and (min-width: 961px) {
  .hero { padding-top: 22px !important; padding-bottom: 18px !important; }
  .hero-left h1 { font-size: clamp(36px, 4.6vw, 60px) !important; margin-top: 10px !important; line-height: 1.0; }
  .hero-sub { margin-top: 14px !important; font-size: 15px; }
  .hero-actions { margin-top: 18px !important; }
  .hero-kicker { margin-bottom: 4px; }
  .hero-meta { margin-top: 20px !important; padding-top: 14px !important; gap: 24px; }
  .hero-stat .n { font-size: 30px; }
  .hero-stat .l { font-size: 11.5px; margin-top: 4px; }
  .hero-photo { aspect-ratio: 4 / 4.4; }
  .hero-grid { gap: 32px; align-items: center; }
}

/* Even shorter: small 14" laptops with browser zoom — push everything closer */
@media (max-height: 760px) and (min-width: 961px) {
  .hero { padding-top: 16px !important; padding-bottom: 14px !important; }
  .hero-left h1 { font-size: clamp(32px, 4.2vw, 54px) !important; margin-top: 8px !important; }
  .hero-sub { margin-top: 12px !important; font-size: 14.5px; line-height: 1.5; }
  .hero-actions { margin-top: 14px !important; gap: 10px; }
  .cta-primary, .cta-ghost { padding: 11px 18px; font-size: 13px; }
  .hero-meta { margin-top: 16px !important; padding-top: 12px !important; gap: 20px; }
  .hero-stat .n { font-size: 26px; }
}

/* ======= Floating pill — reduced motion ======= */
@media (prefers-reduced-motion: reduce) {
  nav.main, nav.main::before, nav.main .nav-inner, nav.main .brand-logo { transition: none !important; }
}

/* ======= Floating pill — responsive ======= */
@media (max-width: 1600px) {
  nav.main.is-scrolled .nav-inner { max-width: min(1180px, calc(100% - 28px)); }
}
@media (max-width: 1440px) {
  nav.main.is-scrolled .nav-inner { max-width: min(1120px, calc(100% - 28px)); }
}
@media (max-width: 1366px) {
  nav.main.is-scrolled .nav-inner { max-width: min(1060px, calc(100% - 24px)); padding-left: 22px; padding-right: 14px; }
}
@media (max-width: 1200px) {
  nav.main.is-scrolled .nav-inner { max-width: calc(100% - 24px); padding-left: 20px; padding-right: 14px; }
}
@media (max-width: 960px) {
  nav.main.is-scrolled { padding-top: 16px; }
  nav.main.is-scrolled .nav-inner { max-width: calc(100% - 20px); padding-top: 8px; padding-bottom: 8px; padding-left: 16px; padding-right: 12px; border-radius: 24px; box-shadow: 0 14px 32px -16px rgba(6,34,43,0.28), 0 6px 14px -8px rgba(6,34,43,0.10); }
  nav.main.is-scrolled .brand-logo { height: 38px !important; max-height: 38px; }
}
@media (max-width: 640px) {
  nav.main.is-scrolled { padding-top: 12px; }
  nav.main.is-scrolled .nav-inner { max-width: calc(100% - 14px); padding-top: 6px; padding-bottom: 6px; padding-left: 14px; padding-right: 8px; border-radius: 20px; }
  nav.main.is-scrolled .brand-logo { height: 36px !important; max-height: 36px; min-width: 130px !important; }
}

/* ======= Dropdown menus — laptop responsive ======= */
/* Ensure nav doesn't clip dropdowns and dropdowns stay visible */
nav.main, .nav-inner, .nav-links { overflow: visible; }
.nav-dd { overflow: visible; }

/* Servicii mega — switch from right-anchored to center-anchored on trigger.
   This keeps mega centered on the dropdown link at all laptop widths,
   so it never overflows the viewport on either side. */
@media (max-width: 1600px) {
  .nav-mega:not(.nav-mega-sm) {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.98);
    transform-origin: top center;
    animation-name: dropInCenter;
  }
  .nav-mega:not(.nav-mega-sm)::after {
    right: auto;
    left: 50%;
    margin-left: -7px;
  }
}
@keyframes dropInCenter {
  to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

/* Servicii mega — narrow widths */
@media (max-width: 1440px) {
  .nav-mega:not(.nav-mega-sm) { width: 720px; max-width: calc(100vw - 32px); }
}
@media (max-width: 1280px) {
  .nav-mega:not(.nav-mega-sm) { width: 660px; padding: 22px; }
  .nav-mega-grid { gap: 0; }
  .nav-mega-item { padding: 10px 12px; }
  .nav-mega-head { padding: 4px 8px 14px; margin-bottom: 12px; gap: 24px; }
  .nav-mega-head h4 { font-size: 19px; }
  .nav-mega-d { font-size: 11.5px; }
}
@media (max-width: 1200px) {
  .nav-mega:not(.nav-mega-sm) { width: 600px; }
}

/* ===== Safety net: collapse inline-styled multi-column grids on small viewports ===== */
/* 4-col image grids (galleries) → 3 on tablet, 2 on phone (keep visual density for images) */
@media (max-width: 960px) {
  [style*="repeat(4,1fr)"], [style*="repeat(4, 1fr)"] { grid-template-columns: repeat(3, 1fr) !important; gap: 12px !important; }
}
@media (max-width: 640px) {
  [style*="repeat(4,1fr)"], [style*="repeat(4, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
}
/* 3-col content grids (e.g. info cards) → 1 col on phone for readability */
@media (max-width: 960px) {
  [style*="repeat(3,1fr)"], [style*="repeat(3, 1fr)"] { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  [style*="repeat(3,1fr)"], [style*="repeat(3, 1fr)"] { grid-template-columns: 1fr !important; }
}

