/* ============================================================
   Legacy Memorial Restorations — styles.css
   Palette: cream / charcoal / antique gold
   ============================================================ */

:root {
  --cream: #F7F2E8;
  --cream-deep: #EFE7D7;
  --white: #FFFDF8;
  --ink: #26241F;
  --charcoal: #33302A;
  --charcoal-soft: #4A463E;
  --stone: #7C766A;
  --gold: #A0803F;
  --gold-bright: #C9A961;
  --gold-pale: #E8DCC0;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Source Sans 3', 'Segoe UI', sans-serif;
  --shadow: 0 10px 40px rgba(38, 36, 31, .12);
  --shadow-soft: 0 4px 18px rgba(38, 36, 31, .08);
  --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; }

h1, h2, h3, .price-amount { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--ink); }

/* ---------- eyebrow / section headings ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }
.eyebrow.gold { color: var(--gold-bright); }
.section { padding: 96px 0; }
.section-title { font-size: clamp(34px, 4.5vw, 48px); text-align: center; margin-bottom: 18px; }
.section-intro {
  max-width: 680px; margin: 0 auto 56px; text-align: center;
  color: var(--stone); font-size: 18px;
}
.section-intro.light { color: #B8B2A4; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  text-align: center;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #8a6d33; transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-ghost { border-color: rgba(38,36,31,.25); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-full { width: 100%; }

/* ============ TOP BAR ============ */
.topbar { background: var(--charcoal); color: #D8D2C4; font-size: 13.5px; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 4px 20px; }
.topbar a { color: var(--gold-bright); font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar-sep { margin: 0 10px; opacity: .4; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 253, 248, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(38,36,31,.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 13px; color: var(--ink); }
.brand-mark { width: 46px; height: 46px; flex: none; }
.mark-stone { color: var(--charcoal); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif); font-size: 23px; font-weight: 700;
  letter-spacing: .02em; color: var(--ink);
}
.brand-sub {
  font-size: 12.5px; font-weight: 700; letter-spacing: .34em;
  text-transform: uppercase; color: var(--gold);
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  color: var(--charcoal-soft); font-weight: 600; font-size: 15.5px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold); color: #fff; padding: 11px 22px;
  border-radius: 6px; font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
}
.nav-links .nav-cta:hover { background: #8a6d33; color: #fff; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--ink); margin: 5.5px 0; border-radius: 2px; transition: .25s; }

/* ============ PAGE HERO (interior pages) ============ */
.page-hero {
  background:
    radial-gradient(900px 350px at 80% -20%, rgba(201,169,97,.18), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding: 72px 0 64px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(38px, 5vw, 56px); margin-bottom: 14px; }
.page-hero p {
  max-width: 640px; margin: 0 auto;
  color: var(--stone); font-size: 18px;
}
.nav-links a.active { color: var(--gold); }

/* ============ CTA BAND ============ */
.cta-band { background: var(--charcoal); padding: 72px 0; text-align: center; }
.cta-band h2 {
  color: var(--cream); font-size: clamp(30px, 4vw, 42px); margin-bottom: 14px;
}
.cta-band p { color: #B8B2A4; font-size: 17px; max-width: 560px; margin: 0 auto 30px; }
.cta-band .btn-gold { margin: 0 8px 10px; }
.cta-band .btn-ghost-light {
  display: inline-block;
  font-size: 15px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 6px;
  border: 2px solid rgba(201,169,97,.5); color: var(--gold-bright);
  transition: all .22s ease; margin: 0 8px 10px;
}
.cta-band .btn-ghost-light:hover { border-color: var(--gold-bright); background: rgba(201,169,97,.1); }

/* ============ HOMEPAGE TEASERS ============ */
.teaser-cta { text-align: center; margin-top: 44px; }
.price-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  max-width: 980px; margin: 0 auto 44px;
}
.price-strip-item {
  background: var(--white); border: 1px solid rgba(38,36,31,.1);
  border-radius: var(--radius); box-shadow: var(--shadow-soft);
  padding: 26px 20px; text-align: center;
}
.price-strip-item .psi-label {
  font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--charcoal-soft); display: block; margin-bottom: 6px;
}
.price-strip-item .psi-price {
  font-family: var(--serif); font-size: 34px; font-weight: 700; color: var(--gold);
}
.price-strip-item .psi-sub { font-size: 13px; color: var(--stone); }
@media (max-width: 1020px) {
  .price-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .price-strip { grid-template-columns: 1fr; }
}

/* ============ HERO ============ */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(201,169,97,.16), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding: 84px 0 96px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(42px, 5.5vw, 62px);
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-lede { font-size: 19px; color: var(--charcoal-soft); margin-bottom: 32px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-points { list-style: none; }
.hero-points li {
  position: relative; padding-left: 30px; margin-bottom: 10px;
  color: var(--charcoal-soft); font-size: 15.5px; font-weight: 500;
}
.hero-points li::before {
  content: ''; position: absolute; left: 0; top: 5px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round" d="M4 12.5l5 5L20 6.5"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round" d="M4 12.5l5 5L20 6.5"/></svg>') center/contain no-repeat;
}
.hero-slider-caption {
  text-align: center; font-size: 13.5px; color: var(--stone);
  margin-top: 14px; font-style: italic;
}

/* ============ BEFORE/AFTER SLIDER ============ */
.ba-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  user-select: none;
  touch-action: pan-y;
  background: var(--cream-deep);
}
.ba-img { width: 100%; height: 100%; object-fit: cover; }
.ba-before { position: absolute; inset: 0; }
.ba-after-wrap {
  position: absolute; inset: 0;
  clip-path: inset(0 0 0 50%);
  will-change: clip-path;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0,0,0,.35);
  pointer-events: none;
}
.ba-grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 700;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.ba-label {
  position: absolute; top: 14px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 4px;
  background: rgba(38,36,31,.72); color: #fff;
  pointer-events: none;
}
.ba-label-before { left: 14px; }
.ba-label-after { right: 14px; background: rgba(160,128,63,.9); }
.ba-range {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}

/* ============ TRUST BAR ============ */
.trustbar { background: var(--charcoal); padding: 26px 0; }
.trustbar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.trust-item {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  color: var(--gold-pale); font-weight: 600; font-size: 15.5px; letter-spacing: .02em;
}
.trust-item svg { width: 27px; height: 27px; color: var(--gold-bright); flex: none; }

/* ============ SERVICES ============ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(38,36,31,.09);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold-pale); }
.service-card { position: relative; }
.soon-badge {
  position: absolute; top: 18px; right: 18px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  background: var(--cream);
}
.service-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--cream); border: 1px solid var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 29px; height: 29px; color: var(--gold); }
.service-card h3 { font-size: 24px; margin-bottom: 12px; }
.service-card p { color: var(--stone); font-size: 15.5px; }

/* ============ PROCESS ============ */
.section-dark { background: var(--charcoal); }
.section-dark .section-title { color: var(--cream); }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; margin-top: 56px;
}
.process-step { position: relative; }
.step-num {
  font-family: var(--serif); font-size: 52px; font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1.3px var(--gold-bright);
  display: block; margin-bottom: 8px; line-height: 1;
}
.process-step h3 { color: var(--cream); font-size: 22px; margin-bottom: 10px; }
.process-step p { color: #B8B2A4; font-size: 15px; }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
}
.gallery-item figcaption {
  margin-top: 14px; text-align: center;
  font-size: 14.5px; color: var(--stone); font-style: italic;
}
.gallery-photo {
  border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 4 / 3; object-fit: cover; width: 100%;
}

/* ============ PRICING ============ */
.section-cream { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start;
}
.price-card {
  background: var(--white);
  border: 1px solid rgba(38,36,31,.1);
  border-radius: var(--radius);
  padding: 40px 32px 34px;
  text-align: center;
  position: relative;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.price-featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
  transform: scale(1.03);
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 20px; white-space: nowrap;
}
.price-tier { font-size: 25px; margin-bottom: 6px; }
.price-amount { font-size: 52px; color: var(--gold); margin-bottom: 2px; }
.price-desc { color: var(--stone); font-size: 15px; font-style: italic; margin-bottom: 24px; }
.price-card ul { list-style: none; text-align: left; margin-bottom: 24px; flex-grow: 1; }
.price-card li {
  position: relative; padding: 8px 0 8px 28px;
  font-size: 15px; color: var(--charcoal-soft);
  border-bottom: 1px solid rgba(38,36,31,.06);
}
.price-card li::before {
  content: '✓'; position: absolute; left: 2px; color: var(--gold); font-weight: 700;
}
.price-note {
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 20px;
}

.pricing-material-title {
  font-family: var(--serif); font-size: 28px; text-align: center;
  margin-bottom: 34px;
}
.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin: 0 auto;
}
.featured-ba { max-width: 900px; margin: 0 auto; }
.featured-ba figcaption {
  margin-top: 14px; text-align: center;
  font-size: 14.5px; font-style: italic;
}
.bronze-block { margin-top: 56px; }
.bronze-lede {
  text-align: center; color: var(--stone); font-size: 16px;
  max-width: 680px; margin: -8px auto 26px;
}

/* ---------- add-ons ---------- */
.addons { max-width: 820px; margin: 64px auto 0; }
.addons-title { font-family: var(--serif); font-size: 28px; text-align: center; margin-bottom: 28px; }
.addons-table {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); overflow: hidden;
  border: 1px solid rgba(38,36,31,.08);
}
.addon-row {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 16px 26px;
  border-bottom: 1px solid rgba(38,36,31,.07);
  font-size: 15.5px;
}
.addon-row:last-child { border-bottom: 0; }
.addon-row em { color: var(--stone); font-size: 13.5px; }
.addon-row span:last-child {
  font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--gold);
  white-space: nowrap;
}
.addons-fineprint {
  margin-top: 22px; text-align: center;
  font-size: 13.5px; color: var(--stone); line-height: 1.7;
}

/* ============ ABOUT ============ */
.about-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center;
}
.about-photo { position: relative; }
.about-photo img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.4; object-fit: cover; width: 100%;
}
.about-quote {
  position: absolute; bottom: -26px; right: -20px;
  background: var(--charcoal); color: var(--gold-pale);
  border-radius: var(--radius);
  padding: 22px 26px; max-width: 320px;
  font-family: var(--serif); font-size: 18px; font-style: italic; line-height: 1.45;
  box-shadow: var(--shadow);
}
.about-copy h2 { font-size: clamp(32px, 4vw, 42px); margin-bottom: 20px; }
.about-copy p { color: var(--charcoal-soft); margin-bottom: 16px; }
.about-points { list-style: none; margin: 26px 0 32px; }
.about-points li {
  position: relative; padding: 9px 0 9px 32px; color: var(--charcoal-soft); font-size: 16px;
}
.about-points li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 18px; height: 18px; border-radius: 50%; background: var(--gold);
  -webkit-mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round" d="M4 12.5l5 5L20 6.5"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round" d="M4 12.5l5 5L20 6.5"/></svg>') center/contain no-repeat;
}

/* ============ SERVICE AREA ============ */
.area-tags {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  max-width: 860px; margin: 0 auto 30px;
}
.area-tags span {
  background: rgba(201,169,97,.12);
  border: 1px solid rgba(201,169,97,.35);
  color: var(--gold-pale);
  padding: 9px 20px; border-radius: 24px;
  font-size: 15px; font-weight: 600;
}
.area-note { text-align: center; color: #B8B2A4; font-size: 15px; }
.area-note a { color: var(--gold-bright); font-weight: 600; }

/* ============ FAQ ============ */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(38,36,31,.1);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--gold-pale); box-shadow: var(--shadow-soft); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 20px 56px 20px 26px;
  font-family: var(--serif); font-size: 21px; font-weight: 600;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans); font-size: 26px; font-weight: 300; color: var(--gold);
  transition: transform .25s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body { padding: 0 26px 22px; color: var(--stone); font-size: 15.5px; }

/* ============ CONTACT ============ */
.section-contact {
  background:
    radial-gradient(900px 400px at 15% 0%, rgba(201,169,97,.12), transparent 55%),
    var(--charcoal);
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-copy h2 { color: var(--cream); font-size: clamp(32px, 4vw, 44px); margin-bottom: 18px; }
.contact-copy > p { color: #B8B2A4; font-size: 17px; margin-bottom: 34px; max-width: 460px; }
.contact-methods { display: flex; flex-direction: column; gap: 18px; margin-bottom: 34px; }
.contact-method {
  display: flex; align-items: center; gap: 18px;
  background: rgba(255,253,248,.05);
  border: 1px solid rgba(201,169,97,.25);
  border-radius: var(--radius);
  padding: 18px 22px;
  color: var(--cream);
  transition: border-color .2s, background .2s;
  overflow-wrap: anywhere;
}
.contact-method:hover { border-color: var(--gold-bright); background: rgba(255,253,248,.08); }
.contact-method svg { width: 30px; height: 30px; color: var(--gold-bright); flex: none; }
.contact-method span { display: flex; flex-direction: column; font-size: 16px; }
.contact-method strong {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 2px;
}
.contact-hours { color: #96907F; font-size: 14.5px; line-height: 1.8; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 34px;
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 27px; margin-bottom: 24px; text-align: center; }
.contact-form label {
  display: block; margin-bottom: 16px;
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--charcoal-soft);
}
.contact-form input, .contact-form select, .contact-form textarea {
  display: block; width: 100%; margin-top: 6px;
  padding: 12px 14px;
  border: 1.5px solid rgba(38,36,31,.16);
  border-radius: 6px;
  font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  background: var(--white);
  transition: border-color .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { margin-top: 14px; text-align: center; font-size: 13px; color: var(--stone); }

/* ============ SOCIAL LINKS ============ */
.social-row { display: flex; gap: 12px; margin-top: 14px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(201,169,97,.45);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
  transition: all .2s ease;
}
.social-row a:hover { background: var(--gold-bright); color: #1E1C18; border-color: var(--gold-bright); }
.social-row svg { width: 19px; height: 19px; }
.social-label {
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-bright); margin-top: 26px;
}
.footer .social-label { color: #96907F; }
.footer .social-row a { border-color: rgba(255,253,248,.2); color: #B8B2A4; }
.footer .social-row a:hover { background: var(--gold-bright); color: #1E1C18; border-color: var(--gold-bright); }

/* ============ FOOTER ============ */
.footer { background: #1E1C18; color: #96907F; }
.footer-inner {
  display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 40px;
  padding: 56px 24px; align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-mark { width: 52px; height: 52px; }
.footer-name { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--cream); }
.footer-tag { font-size: 12.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-bright); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #B8B2A4; font-size: 15px; }
.footer-links a:hover { color: var(--gold-bright); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 15px; }
.footer-contact a { color: var(--gold-bright); font-weight: 600; overflow-wrap: anywhere; }
.footer-bottom {
  border-top: 1px solid rgba(255,253,248,.08);
  text-align: center; padding: 20px; font-size: 13.5px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { text-align: center; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-points { display: inline-block; text-align: left; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .pricing-grid, .pricing-grid-2 { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; gap: 34px; }
  .price-featured { transform: none; }
  .about-inner { grid-template-columns: 1fr; gap: 56px; }
  .about-quote { right: 10px; bottom: -22px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-contact { align-items: center; }
}

@media (max-width: 760px) {
  .section { padding: 68px 0; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-area { display: none; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: min(320px, 82vw); height: 100vh;
    background: var(--charcoal);
    flex-direction: column; align-items: flex-start;
    padding: 100px 36px 40px; gap: 26px;
    transition: right .3s ease;
    z-index: 99;
  }
  .nav-links.open { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,.4); }
  .nav-links a { color: var(--cream); font-size: 18px; }
  .nav-toggle { display: block; position: relative; z-index: 101; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--cream); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--cream); }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .trustbar-inner { grid-template-columns: 1fr 1fr; gap: 16px 10px; }
  .trust-item { font-size: 13.5px; justify-content: flex-start; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .addon-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .about-quote { position: static; margin-top: 18px; max-width: none; }
}
