/* ============================================================
   EYR DENTAL ASSOCIATION CORP.
   Premium dental clinic — gold on charcoal design system
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --gold:        #C69B4B;
  --gold-light:  #E8C874;
  --gold-deep:   #A67C2E;
  --silver:      #C9CCD1;
  --silver-dark: #8A8D93;

  /* Neutrals */
  --ink:         #1B1B1F;   /* darkest bg */
  --charcoal:    #26262B;   /* primary dark bg */
  --charcoal-2:  #303036;   /* raised dark surface */
  --graphite:    #3A3A41;
  --cream:       #F7F4EE;   /* light section bg */
  --paper:       #FFFFFF;
  --line:        rgba(255,255,255,.10);
  --line-dark:   rgba(27,27,31,.10);

  /* Text */
  --tx-light:    #F4F2ED;
  --tx-mut:      #B7B9BD;
  --tx-dark:     #24242A;
  --tx-dark-mut: #5E606A;

  /* Effects */
  --grad-gold:   linear-gradient(135deg, #E8C874 0%, #C69B4B 45%, #A67C2E 100%);
  --grad-silver: linear-gradient(180deg, #EDEFF2 0%, #C9CCD1 50%, #8A8D93 100%);
  --grad-dark:   linear-gradient(160deg, #26262B 0%, #17171A 100%);
  --shadow-sm:   0 2px 10px rgba(0,0,0,.10);
  --shadow-md:   0 12px 32px rgba(0,0,0,.14);
  --shadow-lg:   0 30px 70px rgba(0,0,0,.22);
  --shadow-gold: 0 14px 34px rgba(198,155,75,.32);

  --radius:      16px;
  --radius-lg:   26px;
  --radius-pill: 999px;

  --container:   1200px;
  --ease:        cubic-bezier(.22,.61,.36,1);

  --f-display: 'Montserrat', system-ui, sans-serif;
  --f-body:    'Inter', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--tx-dark);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
section { position: relative; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.bg-dark  { background: var(--charcoal); color: var(--tx-light); }
.bg-ink   { background: var(--grad-dark); color: var(--tx-light); }
.bg-cream { background: var(--cream); }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 800; line-height: 1.12; letter-spacing: -.01em; }
.display { font-size: clamp(2.4rem, 5.4vw, 4rem); }
.h-xl { font-size: clamp(2rem, 4vw, 3rem); }
.h-lg { font-size: clamp(1.6rem, 3vw, 2.25rem); }
.h-md { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { color: inherit; }
.lead { font-size: 1.15rem; color: var(--tx-dark-mut); max-width: 60ch; }
.bg-dark .lead, .bg-ink .lead { color: var(--tx-mut); }

.gold-text { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.silver-text { background: var(--grad-silver); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Eyebrow / kicker (matches flyer's gold banner tags) */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.kicker::before { content: ""; width: 30px; height: 2px; background: var(--grad-gold); }
.kicker.centered { justify-content: center; }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-display); font-weight: 700; font-size: .95rem;
  letter-spacing: .02em; padding: 15px 30px; border-radius: var(--radius-pill);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold { background: var(--grad-gold); color: #241a06; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(198,155,75,.44); }
.btn-dark { background: var(--charcoal); color: var(--tx-light); }
.btn-dark:hover { transform: translateY(-3px); background: var(--ink); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--gold); border: 1.5px solid rgba(198,155,75,.5); }
.btn-ghost:hover { background: var(--gold); color: #241a06; border-color: var(--gold); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--tx-dark); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-block { width: 100%; }

/* ---------- Announcement bar ---------- */
.topbar {
  background: var(--ink); color: var(--tx-mut);
  font-size: .82rem; border-bottom: 1px solid var(--line);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: var(--tx-mut); transition: color .2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar-left { display: flex; align-items: center; gap: 8px; }
.topbar-left b { color: var(--gold-light); font-weight: 600; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-right span { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; color: var(--gold); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(27,27,31,.86); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s, box-shadow .3s;
}
.header.scrolled { background: rgba(20,20,23,.97); box-shadow: 0 8px 30px rgba(0,0,0,.35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 24px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 52px; width: auto; }

.nav-list { display: flex; align-items: center; gap: 34px; }
.nav-link {
  font-family: var(--f-display); font-weight: 500; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--tx-mut); padding: 6px 0;
  position: relative; white-space: nowrap; transition: color .3s var(--ease);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: center;
  transition: transform .35s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-display); font-weight: 700; color: var(--tx-light); font-size: .95rem;
}
.header-phone svg { width: 20px; height: 20px; color: var(--gold); }
.header-phone small { display: block; font-size: .66rem; font-weight: 500; letter-spacing: .12em; color: var(--tx-mut); text-transform: uppercase; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--tx-light); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { background: var(--grad-dark); color: var(--tx-light); overflow: hidden; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 85% 15%, rgba(198,155,75,.16), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(198,155,75,.08), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding: 88px 0 96px; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(198,155,75,.12); border: 1px solid rgba(198,155,75,.3);
  color: var(--gold-light); padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 28px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 4px rgba(232,200,116,.2); }
.hero h1 { margin-bottom: 22px; }
.hero .lead { color: var(--tx-mut); margin-bottom: 34px; font-size: 1.18rem; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--f-display); font-weight: 800; font-size: 2rem; line-height: 1; }
.hero-stat .lbl { font-size: .82rem; color: var(--tx-mut); margin-top: 6px; letter-spacing: .04em; }

/* Hero visual — framed photo slot with gold ring + inset smile */
.hero-visual { position: relative; }
.hero-frame {
  position: relative; aspect-ratio: 4/5; border-radius: 30px; overflow: hidden;
  background:
    linear-gradient(160deg, var(--charcoal-2), var(--ink)),
    url("../images/hero/hero-patient.jpg") center/cover no-repeat;
  background-blend-mode: overlay;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.hero-frame .ph-tag {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; color: var(--tx-mut);
  text-align: center; padding: 24px;
}
.hero-frame .ph-tag svg { width: 60px; height: 60px; color: rgba(198,155,75,.55); }
.hero-frame .ph-tag span { font-size: .82rem; letter-spacing: .06em; }
.hero-ring {
  position: absolute; top: -26px; left: -26px; width: 160px; height: 160px;
  border-radius: 50%; overflow: hidden; border: 5px solid var(--gold);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(160deg, var(--charcoal-2), var(--ink));
  display: flex; align-items: center; justify-content: center;
}
.hero-ring svg { width: 54px; height: 54px; color: rgba(255,255,255,.6); }
.hero-float {
  position: absolute; bottom: 22px; right: -18px;
  background: rgba(27,27,31,.9); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 18px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-md);
}
.hero-float .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-gold); display: grid; place-items: center; flex-shrink: 0; }
.hero-float .ic svg { width: 22px; height: 22px; color: #241a06; }
.hero-float .t { font-family: var(--f-display); font-weight: 700; font-size: .95rem; color: var(--tx-light); }
.hero-float .s { font-size: .76rem; color: var(--tx-mut); }

/* ---------- Marquee / trust strip ---------- */
.trust { background: var(--ink); border-block: 1px solid var(--line); padding: 24px 0; }
.trust .container { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--tx-mut); font-size: .92rem; }
.trust-item svg { width: 26px; height: 26px; color: var(--gold); flex-shrink: 0; }
.trust-item b { color: var(--tx-light); font-family: var(--f-display); }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
  background: var(--paper); border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  padding: 34px 30px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-ic {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(198,155,75,.16), rgba(198,155,75,.05));
  border: 1px solid rgba(198,155,75,.25); margin-bottom: 22px; transition: background .35s;
}
.service-ic svg { width: 30px; height: 30px; color: var(--gold-deep); }
.service-card:hover .service-ic { background: var(--grad-gold); }
.service-card:hover .service-ic svg { color: #241a06; }
.service-card h3 { font-size: 1.22rem; margin-bottom: 10px; }
.service-card p { color: var(--tx-dark-mut); font-size: .95rem; }
.service-card .more { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--gold-deep); font-weight: 700; font-family: var(--f-display); font-size: .88rem; }
.service-card .more svg { width: 16px; height: 16px; transition: transform .3s; }
.service-card:hover .more svg { transform: translateX(4px); }

/* Dark variant service card */
.bg-dark .service-card, .bg-ink .service-card {
  background: var(--charcoal-2); border-color: var(--line);
}
.bg-dark .service-card h3, .bg-ink .service-card h3 { color: var(--tx-light); }
.bg-dark .service-card p, .bg-ink .service-card p { color: var(--tx-mut); }

/* ---------- Split / feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px;
  background: linear-gradient(160deg, var(--charcoal-2), var(--ink));
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  display: grid; place-items: center;
}
.media-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media-frame .ph { display: flex; flex-direction: column; align-items: center; gap: 14px; color: var(--tx-mut); text-align: center; padding: 20px; }
.media-frame .ph svg { width: 56px; height: 56px; color: rgba(198,155,75,.5); }
.media-frame .ph span { font-size: .82rem; letter-spacing: .05em; }

.check-list { display: grid; gap: 16px; margin-top: 28px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-list .ck { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.check-list .ck svg { width: 14px; height: 14px; color: #241a06; }
.check-list b { font-family: var(--f-display); display: block; }
.check-list p { color: var(--tx-dark-mut); font-size: .92rem; }
.bg-dark .check-list p { color: var(--tx-mut); }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-box .num { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.2rem,4vw,3rem); line-height: 1; }
.stat-box .lbl { color: var(--tx-mut); margin-top: 8px; font-size: .9rem; letter-spacing: .03em; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .n {
  width: 58px; height: 58px; border-radius: 16px; background: var(--charcoal); color: var(--gold-light);
  display: grid; place-items: center; font-family: var(--f-display); font-weight: 800; font-size: 1.4rem;
  margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.bg-cream .step .n { background: var(--charcoal); }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--tx-dark-mut); font-size: .92rem; }

/* ---------- Testimonials ---------- */
.testi-card {
  background: var(--charcoal-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; height: 100%; display: flex; flex-direction: column; gap: 18px;
}
.testi-stars { display: flex; gap: 3px; color: var(--gold-light); }
.testi-stars svg { width: 18px; height: 18px; }
.testi-card p { color: var(--tx-light); font-size: 1.02rem; line-height: 1.7; }
.testi-who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-ava { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; font-family: var(--f-display); font-weight: 800; color: #241a06; }
.testi-who b { color: var(--tx-light); font-family: var(--f-display); display: block; font-size: .96rem; }
.testi-who span { color: var(--tx-mut); font-size: .82rem; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 1; border-radius: 24px; overflow: hidden; margin-bottom: 20px; position: relative;
  background: linear-gradient(160deg, var(--charcoal-2), var(--ink));
  border: 1px solid var(--line-dark); box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
}
.team-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team-photo .ph svg { width: 54px; height: 54px; color: rgba(198,155,75,.5); }
.team-card h3 { font-size: 1.2rem; }
.team-card .role { color: var(--gold-deep); font-weight: 700; font-family: var(--f-display); font-size: .88rem; letter-spacing: .04em; margin-top: 4px; }
.team-card p { color: var(--tx-dark-mut); font-size: .9rem; margin-top: 10px; }
.team-social { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
.team-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-dark); display: grid; place-items: center; color: var(--tx-dark-mut); transition: .25s; }
.team-social a:hover { background: var(--charcoal); color: var(--gold-light); border-color: transparent; transform: translateY(-3px); }
.team-social svg { width: 16px; height: 16px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--grad-dark); color: var(--tx-light); position: relative; overflow: hidden; border-radius: 0; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 120% at 80% 0%, rgba(198,155,75,.18), transparent 60%); }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 720px; margin: 0 auto; }
.cta-inner .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ---------- FAQ / accordion ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; background: var(--paper); transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--shadow-md); border-color: transparent; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; text-align: left; padding: 22px 24px; font-family: var(--f-display); font-weight: 700; font-size: 1.04rem; color: var(--tx-dark); }
.faq-q .ic { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold-deep); display: grid; place-items: center; flex-shrink: 0; transition: .3s; }
.faq-item.open .faq-q .ic { background: var(--grad-gold); color: #241a06; border-color: transparent; transform: rotate(45deg); }
.faq-q .ic svg { width: 16px; height: 16px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 24px 24px; color: var(--tx-dark-mut); }

/* ---------- Forms / booking ---------- */
.form-card { background: var(--paper); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--line-dark); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--f-display); font-weight: 600; font-size: .85rem; color: var(--tx-dark); letter-spacing: .02em; }
.field input, .field select, .field textarea {
  padding: 14px 16px; border: 1.5px solid var(--line-dark); border-radius: 12px; background: #fafafa;
  color: var(--tx-dark); transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(198,155,75,.15); }
.form-note { font-size: .82rem; color: var(--tx-dark-mut); margin-top: 6px; }
.form-success { display: none; text-align: center; padding: 20px; border-radius: 14px; background: rgba(198,155,75,.12); border: 1px solid rgba(198,155,75,.35); color: var(--gold-deep); font-weight: 600; margin-top: 18px; }
.form-success.show { display: block; }

/* ---------- Contact info tiles ---------- */
.info-tile { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border-radius: var(--radius); background: var(--charcoal-2); border: 1px solid var(--line); }
.info-tile .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--grad-gold); display: grid; place-items: center; flex-shrink: 0; }
.info-tile .ic svg { width: 22px; height: 22px; color: #241a06; }
.info-tile b { font-family: var(--f-display); color: var(--tx-light); display: block; margin-bottom: 3px; }
.info-tile p, .info-tile a { color: var(--tx-mut); font-size: .94rem; }
.info-tile a:hover { color: var(--gold-light); }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--grad-dark); color: var(--tx-light); padding: 72px 0 76px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 90% at 50% 0%, rgba(198,155,75,.14), transparent 60%); }
.page-hero .inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.page-hero .lead { color: var(--tx-mut); margin-inline: auto; }
.crumbs { display: flex; gap: 8px; justify-content: center; align-items: center; font-size: .85rem; color: var(--tx-mut); margin-top: 18px; }
.crumbs a:hover { color: var(--gold-light); }
.crumbs svg { width: 14px; height: 14px; opacity: .6; }

/* ---------- Pricing / service detail rows ---------- */
.svc-row {
  display: grid; grid-template-columns: 72px 1fr auto; gap: 24px; align-items: center;
  padding: 26px; border: 1px solid var(--line-dark); border-radius: var(--radius); background: var(--paper);
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.svc-row:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.svc-row .ic { width: 72px; height: 72px; border-radius: 18px; background: linear-gradient(160deg, rgba(198,155,75,.16), rgba(198,155,75,.05)); border: 1px solid rgba(198,155,75,.25); display: grid; place-items: center; }
.svc-row .ic svg { width: 34px; height: 34px; color: var(--gold-deep); }
.svc-row h3 { font-size: 1.2rem; margin-bottom: 6px; }
.svc-row p { color: var(--tx-dark-mut); font-size: .94rem; max-width: 62ch; }
.svc-row .price { font-family: var(--f-display); font-weight: 800; color: var(--gold-deep); font-size: 1.05rem; white-space: nowrap; }
.svc-row .price small { display: block; font-weight: 500; font-size: .72rem; color: var(--tx-dark-mut); letter-spacing: .04em; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--tx-mut); padding-top: 72px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 52px; }
.footer .logo img { height: 56px; margin-bottom: 20px; }
.footer p { font-size: .92rem; line-height: 1.75; max-width: 34ch; }
.footer h4 { font-family: var(--f-display); color: var(--tx-light); font-size: .95rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 22px; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { font-size: .92rem; transition: color .2s, padding .2s; }
.footer-links a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-contact { display: grid; gap: 14px; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: .25s; }
.footer-social a:hover { background: var(--grad-gold); color: #241a06; border-color: transparent; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid var(--line); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Gold pill label (matches flyer tags) ---------- */
.pill-label {
  display: inline-block; background: var(--grad-gold); color: #fff;
  font-family: var(--f-display); font-weight: 700; font-size: 1rem;
  letter-spacing: .01em; padding: 9px 26px; border-radius: 6px;
  box-shadow: var(--shadow-sm); position: relative;
}
.pill-label.notch::after {
  content: ""; position: absolute; right: -14px; top: 0; bottom: 0; width: 16px;
  background: var(--grad-gold); clip-path: polygon(0 0, 0 100%, 100% 50%);
}

/* ---------- Welcome band ---------- */
.welcome-band {
  background: var(--graphite); color: #fff; text-align: center; padding: 26px 0;
}
.welcome-band h2 {
  font-size: clamp(1.15rem, 2.4vw, 1.6rem); letter-spacing: .06em; text-transform: uppercase;
}

/* ---------- Gold divider ---------- */
.gold-divider { height: 4px; width: 100%; background: var(--grad-gold); border-radius: 4px; margin: 8px 0; }
.gold-divider.short { max-width: 90px; margin-inline: auto; }

/* ---------- Feature list (why choose us) ---------- */
.feature-list { max-width: 860px; margin: 0 auto; display: grid; gap: 40px; text-align: center; }
.feature-item .pill-label { margin-bottom: 18px; }
.feature-item p { color: var(--tx-dark-mut); font-size: 1.06rem; max-width: 64ch; margin-inline: auto; }
.bg-dark .feature-item p { color: var(--tx-mut); }

/* ---------- Intro copy block ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose p { color: var(--tx-dark-mut); font-size: 1.1rem; margin-bottom: 22px; }
.prose p:last-child { margin-bottom: 0; }

/* ---------- Financing highlight ---------- */
.fin-highlight { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.fin-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.fin-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 20px; border-radius: var(--radius-pill);
  background: rgba(198,155,75,.12); border: 1px solid rgba(198,155,75,.3); color: var(--gold-deep);
  font-family: var(--f-display); font-weight: 700; font-size: .88rem;
}
.bg-dark .fin-badge { color: var(--gold-light); }
.fin-badge svg { width: 16px; height: 16px; }
@media (max-width: 860px) { .fin-highlight { grid-template-columns: 1fr; gap: 34px; } }

/* ---------- Full-bleed hero (home) with logo overlay ---------- */
.hero-full {
  position: relative; min-height: 640px; display: flex; align-items: center;
  background: var(--ink); color: #fff; overflow: hidden;
}
.hero-full .bg { position: absolute; inset: 0; }
.hero-full .bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: right center; }
.hero-full .bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(17,17,20,.95) 0%, rgba(17,17,20,.80) 40%, rgba(17,17,20,.35) 68%, rgba(17,17,20,.08) 100%);
}
.hero-full .bg .ph {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  color: rgba(198,155,75,.4); display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-full .bg .ph svg { width: 90px; height: 90px; }
.hero-full .bg .ph span { font-size: .8rem; letter-spacing: .1em; color: var(--tx-mut); }
.hero-full .container { position: relative; z-index: 2; }
.hero-full-inner { max-width: 560px; padding: 80px 0; }
.hero-logo { width: min(420px, 78%); margin-bottom: 34px; filter: drop-shadow(0 10px 30px rgba(0,0,0,.5)); }
.hero-full .tagline {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(.85rem, 1.3vw, 1.05rem);
  text-transform: uppercase; letter-spacing: .1em; line-height: 1.7;
  color: #EDEBE4; max-width: 46ch; margin-bottom: 36px;
}
@media (max-width: 860px) { .hero-full .tagline br { display: none; } }
.hero-full .hero-cta { margin-bottom: 0; }
.hero-full .hero-cta .btn { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 600; padding: 16px 30px; }
@media (max-width: 860px) {
  .hero-full { min-height: auto; }
  .hero-full .bg img { object-position: center 22%; }
  .hero-full .bg::after { background: linear-gradient(180deg, rgba(17,17,20,.55) 0%, rgba(17,17,20,.78) 55%, rgba(17,17,20,.94) 100%); }
  .hero-full-inner { padding: 60px 0; max-width: 100%; text-align: center; }
  .hero-logo { margin-inline: auto; }
  .hero-full .tagline { margin-inline: auto; }
  .hero-full .hero-cta { justify-content: center; }
}

/* ---------- CareCredit financing band ---------- */
.carecredit-band {
  color: #fff; border-block: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(120% 140% at 18% -10%, rgba(255,255,255,.07), transparent 42%),
    radial-gradient(80% 120% at 92% 120%, rgba(198,155,75,.10), transparent 55%),
    linear-gradient(115deg, #1a1a1d 0%, #0b0b0d 45%, #101013 62%, #08080a 100%);
  position: relative; overflow: hidden;
}
/* faint marble veining */
.carecredit-band::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background:
    linear-gradient(72deg, transparent 0 48%, rgba(255,255,255,.05) 49% 50%, transparent 51%),
    linear-gradient(58deg, transparent 0 63%, rgba(255,255,255,.035) 64% 65%, transparent 66%),
    linear-gradient(80deg, transparent 0 77%, rgba(255,255,255,.03) 78% 79%, transparent 80%);
}
.cc-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(190px, 250px) 1px 1fr; gap: 46px; align-items: center;
}
.cc-logo img { width: 100%; max-width: 240px; }
.cc-divider { width: 1px; align-self: stretch; min-height: 170px; background: linear-gradient(180deg, transparent, var(--gold), transparent); }
.cc-list { display: grid; gap: 12px; }
.cc-list li { display: flex; gap: 12px; align-items: baseline; font-size: 1.08rem; color: #EDEDEF; }
.cc-list li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--grad-gold); flex-shrink: 0; transform: translateY(-2px); }
.cc-list li b { color: #fff; font-weight: 700; }
.cc-list li span { color: var(--tx-mut); }
.cc-apply {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 26px;
  font-family: var(--f-display); font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  font-size: .86rem; color: #241a06; background: var(--grad-gold);
  padding: 14px 34px; border-radius: 6px; box-shadow: var(--shadow-gold);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cc-apply:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(198,155,75,.42); }
.cc-apply svg { width: 16px; height: 16px; }
@media (max-width: 768px) {
  .cc-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .cc-divider { display: none; }
  .cc-logo img { margin: 0 auto; }
  .cc-list li { justify-content: center; text-align: left; }
  .cc-apply { margin-inline: auto; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Floating action (mobile call) ---------- */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: none; width: 58px; height: 58px; border-radius: 50%; background: var(--grad-gold); box-shadow: var(--shadow-gold); place-items: center; }
.fab svg { width: 26px; height: 26px; color: #241a06; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .stats-band { grid-template-columns: repeat(2,1fr); gap: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .nav.open {
    display: block; position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
    background: var(--ink); padding: 96px 28px 40px; box-shadow: -20px 0 60px rgba(0,0,0,.5);
    animation: slideIn .35s var(--ease);
  }
  .nav.open .nav-list { flex-direction: column; align-items: stretch; gap: 6px; }
  .nav.open .nav-link { padding: 14px 16px; font-size: 1.05rem; }
  @keyframes slideIn { from { transform: translateX(100%); } to { transform: none; } }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 64px; }
  .hero-visual { max-width: 440px; margin: 0 auto; width: 100%; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .fab { display: grid; }
  .section-pad { padding: 68px 0; }
  .svc-row { grid-template-columns: 56px 1fr; }
  .svc-row .price { grid-column: 2; }
  .svc-row .ic { width: 56px; height: 56px; }
}
@media (max-width: 520px) {
  .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-right { display: none; }
  .hero-float { right: 8px; }
  .form-card { padding: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
