/* =========================================================
   PARSONS SMILE CENTER — Theme
   Dr. Fady Salha · Cosmetic & General Dentistry · NYC
   Visual system: warm ivory base, premium gold foil accents,
   obsidian contrast sections. Cormorant Garamond display,
   Cinzel labels, Inter body.
   ========================================================= */

/* Fonts (Cormorant Garamond, Cinzel, Inter) are enqueued by the theme
   (inc/enqueue.php) per the build spec, loaded asynchronously with preconnect.
   The original render-blocking @import was removed ONLY to meet the mobile
   Performance budget — the identical fonts still load; nothing visual changed. */

:root {
  /* gold */
  --gold-hi:    #e8cc92;
  --gold-light: #d9b97a;
  --gold:       #b8924c;
  --gold-deep:  #785b26;
  --gold-shade: #5d4720;

  /* neutrals */
  --paper:    #fffdf8;
  --ivory:    #faf6ec;
  --cream:    #f2ebdb;
  --sand:     #e9e0cc;
  --ink:      #2a221a;
  --ink-soft: #5e5340;
  --ink-mute: #8a7d64;

  /* dark */
  --obsidian: #1c1610;
  --charcoal: #14100d;
  --black:    #0c0907;

  /* lines */
  --hair:        rgba(138,106,48,0.22);
  --hair-strong: rgba(138,106,48,0.42);
  --hair-dark:   rgba(217,185,122,0.22);

  --gold-grad: linear-gradient(135deg,#5d4720 0%,#8a6a30 16%,#e8cc92 40%,#d9b97a 52%,#e8cc92 64%,#8a6a30 84%,#5d4720 100%);
  --gold-grad-soft: linear-gradient(120deg,#a87f38 0%,#d9b97a 35%,#f0d8a0 50%,#d9b97a 65%,#a87f38 100%);

  --shadow-sm: 0 2px 14px rgba(42,34,26,0.06);
  --shadow:    0 18px 50px -18px rgba(42,34,26,0.22);
  --shadow-lg: 0 40px 90px -30px rgba(20,16,13,0.45);

  --wrap: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-caps: 'Cinzel', serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ---------- accessibility ---------- */
.skip-link {
  position: fixed; top: 10px; left: 50%; transform: translateX(-50%) translateY(-140%);
  z-index: 1000; background: var(--charcoal); color: var(--ivory);
  font-size: 14px; font-weight: 600; letter-spacing: .03em;
  padding: 12px 24px; border-radius: 3px; border: 1px solid var(--gold);
  transition: transform .25s var(--ease);
}
.skip-link:focus { transform: translateX(-50%) translateY(0); outline: none; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-dark :focus-visible, .hero :focus-visible, .section.dark :focus-visible,
.section.obsidian :focus-visible, .site-footer :focus-visible, .cta-band :focus-visible,
.emergency-band :focus-visible { outline-color: var(--gold-light); }
main:focus { outline: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .scroll-cue .line { animation: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- shared text utilities ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 40px; }
.eyebrow {
  font-family: var(--font-caps);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow.on-dark { color: var(--gold-light); }
.foil {
  background-image: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 500; margin: 0; line-height: 1.08; letter-spacing: 0.005em; }
.display { font-size: clamp(44px, 6vw, 88px); font-weight: 500; }
.h2 { font-size: clamp(34px, 4.2vw, 56px); }
.h3 { font-size: clamp(24px, 2.4vw, 32px); }
.lead { font-size: 19px; color: var(--ink-soft); line-height: 1.7; }
.muted { color: var(--ink-soft); }

/* ornament */
.ornament { display: inline-flex; align-items: center; gap: 12px; color: var(--gold); }
.ornament::before, .ornament::after { content: ''; width: 46px; height: 1px; background: currentColor; opacity: .7; }
.ornament .diamond { width: 7px; height: 7px; border: 1px solid currentColor; transform: rotate(45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 15px 30px; border-radius: 2px;
  cursor: pointer; border: 1px solid transparent;
  transition: all .4s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-grad-soft);
  background-size: 180% 100%;
  color: #2a200f;
  box-shadow: 0 10px 30px -12px rgba(138,106,48,.6);
}
.btn-gold:hover { background-position: 100% 0; box-shadow: 0 14px 34px -10px rgba(138,106,48,.75); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: var(--gold); color: var(--gold-deep); }
.btn-ghost:hover { background: var(--gold); color: #2a200f; }
.btn-ghost.on-dark { border-color: var(--gold-light); color: var(--gold-light); }
.btn-ghost.on-dark:hover { background: var(--gold-light); color: #2a200f; }
.btn svg { width: 16px; height: 16px; }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .bar {
  max-width: var(--wrap); margin: 0 auto; padding: 0 40px;
  height: 92px; display: flex; align-items: center; justify-content: space-between;
  transition: height .45s var(--ease);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 50px; width: auto; transition: all .4s var(--ease); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--ivory); transition: color .4s var(--ease); }
.brand-text .sub { font-family: var(--font-caps); font-size: 8px; letter-spacing: 0.34em; color: var(--gold-light); margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 38px; }
.nav a.link {
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(250,246,236,.85);
  position: relative; padding: 6px 0; transition: color .3s;
}
.nav a.link::after { content:''; position:absolute; left:0; bottom:0; width:0; height:1px; background: var(--gold-light); transition: width .35s var(--ease); }
.nav a.link:hover, .nav a.link.active { color: var(--gold-light); }
.nav a.link:hover::after, .nav a.link.active::after { width: 100%; }

/* scrolled state */
.site-header.scrolled { background: rgba(255,253,248,.92); backdrop-filter: blur(14px); border-bottom-color: var(--hair); box-shadow: var(--shadow-sm); }
.site-header.scrolled .bar { height: 74px; }
.site-header.scrolled .brand-text .name { color: var(--ink); }
.site-header.scrolled .brand-text .sub { color: var(--gold-deep); }
.site-header.scrolled .brand img { height: 42px; }
.site-header.scrolled .nav a.link { color: var(--ink-soft); }
.site-header.scrolled .nav a.link:hover, .site-header.scrolled .nav a.link.active { color: var(--gold-deep); }

/* on solid (internal page) header always solid */
.site-header.solid { background: rgba(255,253,248,.96); backdrop-filter: blur(14px); border-bottom-color: var(--hair); }
.site-header.solid .brand-text .name { color: var(--ink); }
.site-header.solid .brand-text .sub { color: var(--gold-deep); }
.site-header.solid .nav a.link { color: var(--ink-soft); }
.site-header.solid .nav a.link:hover, .site-header.solid .nav a.link.active { color: var(--gold-deep); }

.header-cta { display: flex; align-items: center; gap: 22px; }
.header-phone { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--gold-light); letter-spacing: .02em; }
.site-header.scrolled .header-phone, .site-header.solid .header-phone { color: var(--gold-deep); }
.header-phone svg { width: 15px; height: 15px; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--ivory); transition: .3s; }
.site-header.scrolled .menu-toggle span, .site-header.solid .menu-toggle span { background: var(--ink); }

/* mobile nav */
.mobile-nav { position: fixed; inset: 0; z-index: 99; background: var(--charcoal); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; opacity: 0; pointer-events: none; transition: opacity .4s; }
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a { font-family: var(--font-display); font-size: 34px; color: var(--ivory); }
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .close { position: absolute; top: 30px; right: 34px; font-size: 30px; color: var(--gold-light); background: none; border: none; cursor: pointer; }

/* ---------- sections ---------- */
section { position: relative; }
.section { padding: 120px 0; }
.section-sm { padding: 84px 0; }
.section.dark { background: var(--charcoal); color: var(--cream); }
.section.obsidian { background: radial-gradient(ellipse at 50% -10%, var(--obsidian), var(--black)); color: var(--cream); }
.section.cream { background: var(--cream); }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-head h2 { margin-bottom: 0; }
.section-head .lead { margin-top: 22px; }

/* paper grain overlay helper */
.grain::after {
  content:''; position:absolute; inset:0; pointer-events:none; opacity:.4; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.42 0 0 0 0 0.18 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; color: var(--ivory); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content:''; position:absolute; inset:0; background:
  linear-gradient(100deg, rgba(10,7,5,.95) 0%, rgba(10,7,5,.82) 40%, rgba(10,7,5,.5) 72%, rgba(10,7,5,.66) 100%),
  linear-gradient(to top, rgba(10,7,5,.6) 0%, transparent 40%); }
.hero-inner { position: relative; z-index: 2; padding-top: 92px; }
.hero h1 { margin: 22px 0 0; text-shadow: 0 2px 30px rgba(0,0,0,.55); }
.hero .foil { filter: drop-shadow(0 2px 14px rgba(0,0,0,.5)); }
.hero .lead { color: rgba(250,246,236,.9); max-width: 540px; margin-top: 26px; text-shadow: 0 1px 16px rgba(0,0,0,.5); }
.hero-actions { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero-locations { display: flex; gap: 40px; margin-top: 64px; padding-top: 30px; border-top: 1px solid var(--hair-dark); max-width: 620px; }
.hero-loc { display: flex; flex-direction: column; gap: 4px; }
.hero-loc .lab { font-family: var(--font-caps); font-size: 11px; letter-spacing: .3em; color: var(--gold-light); }
.hero-loc .addr { font-family: var(--font-display); font-size: 19px; color: var(--ivory); }
.hero-loc .ph { font-size: 13px; color: rgba(250,246,236,.7); }
.scroll-cue { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--gold-light); }
.scroll-cue .line { width: 1px; height: 46px; background: linear-gradient(var(--gold-light), transparent); animation: cue 2.2s infinite; }
@keyframes cue { 0%,100%{opacity:.3; transform:scaleY(.6) } 50%{opacity:1; transform:scaleY(1)} }

/* ---------- trust strip ---------- */
.trust { background: var(--charcoal); color: var(--cream); padding: 26px 0; }
.trust .wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust .item { display: flex; align-items: center; gap: 12px; font-size: 13px; letter-spacing: .04em; color: rgba(242,235,219,.85); }
.trust .item svg { width: 20px; height: 20px; color: var(--gold-light); }
.trust .divider { width: 1px; height: 26px; background: var(--hair-dark); }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: 58px; font-weight: 500; line-height: 1; }
.stat .lab { font-family: var(--font-caps); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; margin-top: 12px; color: var(--ink-mute); }
.dark .stat .lab { color: var(--gold-light); }

/* ---------- services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); margin-top: 64px; }
.svc-card { background: var(--paper); padding: 44px 38px; transition: all .45s var(--ease); position: relative; overflow: hidden; }
.svc-card::before { content:''; position:absolute; left:0; top:0; height:2px; width:0; background: var(--gold-grad-soft); transition: width .5s var(--ease); }
.svc-card:hover { background: var(--ivory); }
.svc-card:hover::before { width: 100%; }
.svc-icon { width: 54px; height: 54px; color: var(--gold-deep); margin-bottom: 26px; transition: transform .5s var(--ease); }
.svc-card:hover .svc-icon { transform: translateY(-4px); }
.svc-icon svg { width: 100%; height: 100%; }
.svc-card h3 { font-size: 27px; margin-bottom: 12px; }
.svc-card p { font-size: 15px; color: var(--ink-soft); margin: 0 0 22px; line-height: 1.6; }
.svc-more { font-family: var(--font-caps); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); display: inline-flex; align-items: center; gap: 8px; }
.svc-more svg { width: 14px; height: 14px; transition: transform .35s; }
.svc-card:hover .svc-more svg { transform: translateX(5px); }
.svc-num { position: absolute; top: 26px; right: 30px; font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--sand); }

/* ---------- split / feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .frame { position: relative; aspect-ratio: 4/5; overflow: hidden; box-shadow: var(--shadow); }
.split-media .frame img, .split-media .frame image-slot { width: 100%; height: 100%; object-fit: cover; }
.split-media .accent-line { position: absolute; inset: 18px; border: 1px solid var(--gold-light); z-index: 2; pointer-events: none; mix-blend-mode: overlay; }
.split-media .badge { position: absolute; z-index: 3; background: var(--charcoal); color: var(--cream); padding: 22px 26px; box-shadow: var(--shadow); }
.split-media .badge.br { bottom: -28px; right: -28px; }
.split-media .badge .big { font-family: var(--font-display); font-size: 40px; color: var(--gold-light); line-height: 1; }
.split-media .badge .small { font-family: var(--font-caps); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; margin-top: 6px; color: rgba(242,235,219,.8); }
.feature-list { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 18px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--ivory); border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold-deep); margin-top: 3px; }
.dark .feature-list .tick { background: rgba(217,185,122,.1); }
.feature-list .tick svg { width: 13px; height: 13px; }
.feature-list h4 { font-family: var(--font-body); font-size: 16px; font-weight: 600; margin: 0 0 3px; }
.feature-list p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }
.dark .feature-list p { color: rgba(242,235,219,.7); }

/* ---------- locations ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 60px; }
.loc-card { background: var(--paper); border: 1px solid var(--hair); overflow: hidden; transition: box-shadow .45s var(--ease), transform .45s var(--ease); display: flex; flex-direction: column; }
.loc-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.loc-photo { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.loc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.loc-card:hover .loc-photo img { transform: scale(1.05); }
.loc-photo .tag { position: absolute; top: 18px; left: 18px; background: rgba(20,16,13,.78); backdrop-filter: blur(6px); color: var(--gold-light); font-family: var(--font-caps); font-size: 11px; letter-spacing: .26em; padding: 8px 16px; }
.loc-body { padding: 34px 36px 38px; }
.loc-body h3 { font-size: 30px; margin-bottom: 6px; }
.loc-row { display: flex; gap: 13px; align-items: flex-start; padding: 13px 0; border-top: 1px solid var(--hair); font-size: 15px; }
.loc-row:first-of-type { border-top: none; }
.loc-row svg { width: 17px; height: 17px; color: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
.loc-row .hours { display: grid; grid-template-columns: 84px 1fr; font-size: 13.5px; color: var(--ink-soft); row-gap: 2px; }
.loc-row .hours b { color: var(--ink); font-weight: 600; }
.loc-actions { display: flex; gap: 12px; margin-top: 22px; }

/* ---------- testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 60px; }
.quote { background: rgba(217,185,122,.05); border: 1px solid var(--hair-dark); padding: 38px 34px; position: relative; }
.quote .mark { font-family: var(--font-display); font-size: 70px; color: var(--gold); line-height: .6; height: 30px; }
.quote p { font-family: var(--font-display); font-size: 21px; line-height: 1.5; color: var(--cream); font-style: italic; margin: 16px 0 26px; }
.quote .who { display: flex; align-items: center; gap: 14px; }
.quote .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-grad-soft); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 20px; color: #2a200f; }
.quote .who .nm { font-size: 14px; font-weight: 600; color: var(--ivory); }
.quote .who .mt { font-size: 12px; color: var(--gold-light); }
.stars { display: flex; gap: 3px; color: var(--gold-light); margin-bottom: 6px; }
.stars svg { width: 15px; height: 15px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; color: var(--ivory); text-align: center; padding: 130px 0; }
.cta-band .hero-bg::after { background: linear-gradient(rgba(12,9,7,.82), rgba(12,9,7,.88)); }
.cta-band h2 { margin: 20px 0 0; }
.cta-band .lead { color: rgba(250,246,236,.8); max-width: 580px; margin: 22px auto 0; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--black); color: rgba(242,235,219,.7); padding: 80px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 50px; padding-bottom: 56px; border-bottom: 1px solid var(--hair-dark); }
.footer-brand img { height: 64px; margin-bottom: 22px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-col h4 { font-family: var(--font-caps); font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 22px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.footer-col a, .footer-col li { font-size: 14px; transition: color .3s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact div { font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.footer-contact b { color: var(--cream); font-weight: 500; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 26px 0; font-size: 12.5px; color: rgba(242,235,219,.45); flex-wrap: wrap; gap: 12px; }
.footer-bottom .socials { display: flex; gap: 14px; }
.footer-bottom .socials a { width: 34px; height: 34px; border: 1px solid var(--hair-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold-light); transition: .3s; }
.footer-bottom .socials a:hover { background: var(--gold-light); color: var(--black); }
.footer-bottom .socials svg { width: 15px; height: 15px; }

/* ---------- page hero (internal pages) ---------- */
.page-hero { position: relative; padding: 180px 0 90px; overflow: hidden; color: var(--ivory); text-align: center; }
.page-hero .hero-bg::after { background: linear-gradient(rgba(12,9,7,.7), rgba(12,9,7,.82)); }
.page-hero .crumb { font-family: var(--font-caps); font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(40px, 5vw, 72px); }
.page-hero p { color: rgba(250,246,236,.8); max-width: 580px; margin: 20px auto 0; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- service detail (services page) ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.svc-detail.reverse .svc-media { order: 2; }
.svc-media { position: relative; }
.svc-media .frame { position: relative; aspect-ratio: 5/4; overflow: hidden; box-shadow: var(--shadow); }
.svc-media .frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.svc-media:hover .frame img { transform: scale(1.04); }
.svc-media .accent-line { position: absolute; inset: 18px; border: 1px solid var(--gold-light); z-index: 2; pointer-events: none; mix-blend-mode: overlay; }
.svc-media .big-num { position: absolute; bottom: -22px; left: -22px; font-family: var(--font-display); font-style: italic; font-size: 96px; line-height: .7; color: var(--gold); z-index: 3; text-shadow: 0 6px 30px rgba(0,0,0,.25); }
.dark .svc-media .big-num { color: var(--gold-light); }
.svc-detail .svc-detail-icon { width: 56px; height: 56px; color: var(--gold-deep); margin-bottom: 22px; }
.dark .svc-detail .svc-detail-icon { color: var(--gold-light); }
.svc-detail-icon svg { width: 100%; height: 100%; }
.svc-detail h2 { margin: 6px 0 18px; }
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.pill { font-family: var(--font-caps); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--hair-strong); padding: 7px 15px; border-radius: 100px; white-space: nowrap; }
.dark .pill { color: var(--gold-light); border-color: var(--hair-dark); }

/* ---------- process steps ---------- */
.process { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 60px; }
.step { padding: 40px 30px; position: relative; }
.step .step-num { font-family: var(--font-display); font-size: 22px; width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.dark .step .step-num { color: var(--gold-light); border-color: var(--hair-dark); }
.step h4 { font-family: var(--font-display); font-size: 24px; margin: 0 0 10px; }
.step p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }
.dark .step p { color: rgba(242,235,219,.7); }
.step:not(:last-child)::after { content:''; position: absolute; top: 68px; right: -1px; width: 1px; height: 40px; background: var(--hair); }

/* ---------- values grid (about) ---------- */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 60px; }
.value-card { padding: 40px 34px; border: 1px solid var(--hair-dark); background: rgba(217,185,122,.04); transition: all .45s var(--ease); }
.value-card:hover { background: rgba(217,185,122,.08); transform: translateY(-4px); }
.value-card .v-icon { width: 48px; height: 48px; color: var(--gold-light); margin-bottom: 22px; }
.value-card .v-icon svg { width: 100%; height: 100%; }
.value-card h3 { font-size: 25px; margin-bottom: 10px; color: var(--cream); }
.value-card p { font-size: 14.5px; color: rgba(242,235,219,.72); margin: 0; line-height: 1.6; }

/* ---------- about gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 56px; }
.gallery .g-item { position: relative; aspect-ratio: 3/4; overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery .g-item:nth-child(2) { margin-top: 40px; }
.gallery .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery .g-item:hover img { transform: scale(1.05); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: start; }
.form-card { background: var(--paper); border: 1px solid var(--hair); padding: 48px 46px; box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 32px; margin-bottom: 8px; }
.form-card .sub { color: var(--ink-soft); font-size: 15px; margin-bottom: 30px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-caps); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--hair-strong); border-radius: 2px;
  padding: 13px 15px; transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,146,76,.12); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { display: none; align-items: center; gap: 10px; margin-top: 16px; color: var(--gold-deep); font-size: 14px; font-weight: 500; }
.form-success svg { width: 18px; height: 18px; }
.contact-aside .info-block { padding: 28px 0; border-bottom: 1px solid var(--hair); }
.contact-aside .info-block:first-child { padding-top: 0; }
.contact-aside h4 { font-family: var(--font-caps); font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 18px; }
.info-line { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 14px; font-size: 15px; }
.info-line svg { width: 17px; height: 17px; color: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
.info-line .hours { display: grid; grid-template-columns: 84px 1fr; font-size: 13.5px; color: var(--ink-soft); row-gap: 2px; }
.info-line .hours b { color: var(--ink); font-weight: 600; }

/* ---------- map ---------- */
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
.map-card { border: 1px solid var(--hair); overflow: hidden; background: var(--paper); }
.map-card iframe { width: 100%; height: 300px; border: 0; display: block; filter: grayscale(.3) contrast(1.05); }
.map-card .map-foot { padding: 22px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.map-card .map-foot .mt { font-family: var(--font-display); font-size: 24px; }
.map-card .map-foot .ma { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 26px 4px; cursor: pointer; font-family: var(--font-display); font-size: 24px; color: var(--ink); transition: color .3s; background: none; border: none; text-align: left; }
.faq-q:hover { color: var(--gold-deep); }
.faq-q .pm { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content:''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--gold); transition: .35s var(--ease); }
.faq-q .pm::before { width: 14px; height: 1.5px; }
.faq-q .pm::after { width: 1.5px; height: 14px; }
.faq-item.open .faq-q .pm::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { margin: 0 0 26px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.7; max-width: 720px; }
.faq-item.open .faq-a { max-height: 240px; }

/* ---------- emergency band ---------- */
.emergency-band { background: linear-gradient(120deg, var(--obsidian), var(--charcoal)); color: var(--cream); }
.emergency-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 44px 40px; flex-wrap: wrap; }
.emergency-band .e-left { display: flex; align-items: center; gap: 24px; }
.emergency-band .e-ic { width: 54px; height: 54px; color: var(--gold-light); flex-shrink: 0; }
.emergency-band .e-ic svg { width: 100%; height: 100%; }
.emergency-band h3 { font-size: 30px; color: var(--ivory); }
.emergency-band p { margin: 4px 0 0; font-size: 15px; color: rgba(242,235,219,.7); }

@media (max-width: 980px) {
  .svc-detail, .contact-grid, .map-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-detail.reverse .svc-media { order: 0; }
  .process, .values, .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .g-item:nth-child(2) { margin-top: 0; }
}
@media (max-width: 620px) {
  .process, .values, .gallery, .field-row { grid-template-columns: 1fr; }
  .form-card { padding: 34px 26px; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .nav, .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .split, .loc-grid, .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .svc-grid, .quote-grid, .stats { grid-template-columns: 1fr 1fr; }
  .split.reverse .split-media { order: 0; }
  .section { padding: 84px 0; }
  .hero-locations { flex-direction: column; gap: 20px; }
}
@media (max-width: 620px) {
  .wrap { padding: 0 22px; }
  .svc-grid, .quote-grid, .stats { grid-template-columns: 1fr; }
  .trust .wrap { justify-content: center; }
  .trust .divider { display: none; }
}
