:root {
  --ink: #131720;
  --ink-soft: #4a4f5a;
  --paper: #ffffff;
  --bone: #f5f6f8;
  --bone-deep: #e9ebef;
  --gold: #1e3a5f;
  --gold-deep: #16304f;
  --gold-soft: #e7edf4;
  --line: #e1e4e9;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Archivo', sans-serif; font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; }
img { display: block; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 18px;
}

/* NAV */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line); transition: box-shadow 0.3s;
}
nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark-img { height: 44px; width: auto; display: block; border-radius: 5px; }
.logo-text { font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 20px; }
.logo-text span { color: var(--gold-deep); }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: var(--paper) !important; padding: 11px 22px;
  border-radius: 6px; font-size: 14px; font-weight: 600; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-deep); }
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 26px; color: var(--ink); line-height: 1; padding: 8px;
}

/* HERO */
.hero { padding: 168px 0 96px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(46px, 6vw, 78px); margin-bottom: 26px; }
.hero h1 em { font-style: normal; color: var(--gold-deep); position: relative; display: inline-block; }
.hero-stroke { position: absolute; left: 0; right: 0; bottom: -14px; width: 100%; height: 14px; overflow: visible; }
.hero-stroke path {
  fill: none; stroke: var(--gold); stroke-width: 5; stroke-linecap: round; opacity: 0.55;
  stroke-dasharray: 320; stroke-dashoffset: 320;
}
.in .hero-stroke path, .hero-copy.in .hero-stroke path { animation: strokeDraw 1s ease 0.9s forwards; }
@keyframes strokeDraw { to { stroke-dashoffset: 0; } }
.hero-lead { font-size: 19px; color: var(--ink-soft); max-width: 460px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--ink); color: var(--paper); padding: 16px 32px; border-radius: 7px;
  font-size: 15px; font-weight: 600; transition: all 0.2s; display: inline-flex; align-items: center; gap: 9px;
  position: relative; overflow: hidden;
}
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-1px); }
.btn-primary::after, .btn-gold::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg); transition: left 0.5s ease;
}
.btn-primary:hover::after, .btn-gold:hover::after { left: 130%; }
.btn-ghost { padding: 16px 26px; font-size: 15px; font-weight: 600; color: var(--ink); border-bottom: 2px solid transparent; transition: border-color 0.2s; }
.btn-ghost:hover { border-color: var(--gold); }
.hero-phone { display: block; margin-top: 28px; font-size: 14px; color: var(--ink-soft); }
.hero-phone strong { font-family: 'Archivo', sans-serif; font-size: 26px; color: var(--ink); font-weight: 600; display: block; margin-top: 3px; }

.hero-visual { position: relative; }
.hero-img {
  aspect-ratio: 4/5; border-radius: 12px; overflow: hidden; background: var(--bone-deep);
  position: relative; border: 1px solid var(--line);
}
.hero-img img { width: 100%; height: 112%; object-fit: cover; will-change: transform; }

/* Hero paint-wipe reveal */
.hero-visual.in .hero-img img {
  clip-path: inset(0 100% 0 0);
  animation: heroWipe 1.15s cubic-bezier(0.65, 0, 0.3, 1) 0.35s forwards;
}
@keyframes heroWipe { to { clip-path: inset(0 -1% 0 0); } }
.hero-wipe-edge {
  position: absolute; top: 0; bottom: 0; width: 14px; left: -4%; opacity: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.85), rgba(255,255,255,0));
  filter: blur(1px); pointer-events: none; z-index: 2;
}
.hero-visual.in .hero-wipe-edge { animation: heroWipeEdge 1.15s cubic-bezier(0.65, 0, 0.3, 1) 0.35s forwards; }
@keyframes heroWipeEdge {
  0% { left: -4%; opacity: 0; }
  8% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 102%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual.in .hero-img img { clip-path: none; animation: none; }
  .hero-wipe-edge { display: none; }
}
.hero-badge {
  position: absolute; bottom: 26px; left: -26px; background: var(--paper);
  border-radius: 11px; padding: 18px 22px; box-shadow: 0 12px 36px rgba(26,25,22,0.13);
  border: 1px solid var(--line);
  opacity: 0; transform: translateY(14px) scale(0.96);
}
.hero-visual.in .hero-badge { animation: badgePop 0.6s cubic-bezier(0.34,1.4,0.64,1) 0.7s forwards; }
@keyframes badgePop { to { opacity: 1; transform: none; } }
.hero-badge-top { font-family: 'Archivo', sans-serif; font-size: 32px; font-weight: 600; color: var(--gold-deep); line-height: 1; }
.hero-badge-bot { font-size: 12.5px; color: var(--ink-soft); margin-top: 5px; font-weight: 500; }

/* Staggered hero entrance */
.hero-copy.reveal.in > * { opacity: 0; animation: riseIn 0.7s ease forwards; }
.hero-copy.reveal.in > :nth-child(1) { animation-delay: 0.05s; }
.hero-copy.reveal.in > :nth-child(2) { animation-delay: 0.16s; }
.hero-copy.reveal.in > :nth-child(3) { animation-delay: 0.3s; }
.hero-copy.reveal.in > :nth-child(4) { animation-delay: 0.44s; }
.hero-copy.reveal.in > :nth-child(5) { animation-delay: 0.56s; }
@keyframes riseIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* TRUST STRIP */
.trust { background: var(--ink); color: var(--paper); padding: 26px 0; }
.trust-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 500; }
.trust-item i { color: #7da2cc; font-size: 19px; }
.trust-row.reveal.in .trust-item { opacity: 0; animation: riseIn 0.55s ease forwards; }
.trust-row.reveal.in .trust-item:nth-child(1) { animation-delay: 0.05s; }
.trust-row.reveal.in .trust-item:nth-child(2) { animation-delay: 0.15s; }
.trust-row.reveal.in .trust-item:nth-child(3) { animation-delay: 0.25s; }
.trust-row.reveal.in .trust-item:nth-child(4) { animation-delay: 0.35s; }

/* SECTION SHELL */
section { scroll-margin-top: 80px; }
.section-pad { padding: 100px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(34px, 4.2vw, 50px); margin-bottom: 18px; }
.section-head p { font-size: 18px; color: var(--ink-soft); }

/* Paint-swipe heading reveal */
.paint-reveal { position: relative; display: inline-block; overflow: hidden; }
.paint-reveal > span { display: inline-block; opacity: 0; }
.paint-reveal::after {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  border-radius: 3px; transform: scaleX(0); transform-origin: left;
}
.reveal.in .paint-reveal > span { animation: prText 0.01s linear 0.42s forwards; }
.reveal.in .paint-reveal::after { animation: prSwipe 0.9s cubic-bezier(0.65,0,0.35,1) forwards; }
@keyframes prText { to { opacity: 1; } }
@keyframes prSwipe {
  0% { transform: scaleX(0); transform-origin: left; }
  45% { transform: scaleX(1); transform-origin: left; }
  55% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* SERVICES */
.services { background: var(--bone); }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 32px 28px;
  transition: all 0.25s; position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,25,22,0.08); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card.feature { background: var(--ink); color: var(--paper); }
.svc-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: flex-start; margin-bottom: 18px; }
.svc-icon i { font-size: 34px; color: var(--gold-deep); transition: transform 0.3s; }
.svc-card:hover .svc-icon i { transform: translateY(-3px) rotate(-4deg); }
.svc-card.feature .svc-icon i { color: #ffffff; }
.svc-card h3 { font-size: 22px; margin-bottom: 10px; }
.svc-card p { font-size: 14.5px; color: var(--ink-soft); }
.svc-card.feature p { color: #c9c4ba; }
.svc-tag {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: #ffffff; margin-bottom: 14px;
}

/* BEFORE / AFTER SLIDER */
.ba-section { background: var(--paper); }
.ba-frame { max-width: 920px; margin: 0 auto; }
.ba-slider {
  position: relative; aspect-ratio: 4/3; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: 0 20px 60px rgba(19,23,32,0.12);
  touch-action: pan-y; cursor: ew-resize; user-select: none; -webkit-user-select: none;
  --pos: 50%;
}
.ba-slider img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.ba-slider .ba-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px;
  background: var(--paper); transform: translateX(-50%);
  box-shadow: 0 0 14px rgba(0,0,0,0.35); z-index: 3;
}
.ba-grip {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px; border-radius: 50%; background: var(--paper);
  border: 1px solid var(--line); box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  display: flex; align-items: center; justify-content: center; gap: 3px;
  color: var(--gold-deep); font-size: 17px;
}
.ba-label {
  position: absolute; top: 16px; z-index: 2; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper);
  background: rgba(19,23,32,0.72); padding: 7px 14px; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.ba-label.before { left: 16px; }
.ba-label.after { right: 16px; }
.ba-caption { text-align: center; margin-top: 22px; font-size: 15px; color: var(--ink-soft); }

/* HERITAGE */
.heritage-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.heritage-visual {
  aspect-ratio: 1/1; border-radius: 12px; overflow: hidden;
  background: var(--bone-deep); border: 1px solid var(--line);
}
.heritage-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.heritage-visual:hover img { transform: scale(1.04); }
.heritage h2 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 22px; }
.heritage h2 em { font-style: normal; color: var(--gold-deep); }
.heritage p { font-size: 16.5px; color: var(--ink-soft); margin-bottom: 18px; }
.heritage-sign { font-family: 'Archivo', sans-serif; font-size: 19px; font-weight: 500; color: var(--ink); margin-top: 28px; }
.heritage-sign span { display: block; font-family: 'Inter'; font-size: 13.5px; color: var(--ink-soft); font-weight: 500; margin-top: 2px; }

/* PROCESS */
.process { background: var(--bone); }
.proc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.proc-step { position: relative; }
.proc-num {
  font-family: 'Archivo', sans-serif; font-size: 15px; font-weight: 600; color: var(--paper);
  width: 38px; height: 38px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  transition: transform 0.3s;
}
.proc-step:hover .proc-num { transform: scale(1.12); }
.proc-step h3 { font-size: 19px; margin-bottom: 8px; }
.proc-step p { font-size: 14.5px; color: var(--ink-soft); }

/* REVIEWS */
.reviews { background: var(--paper); }
.rev-band {
  background: var(--bone); border: 1px solid var(--line); border-radius: 16px;
  padding: 52px 40px; text-align: center; max-width: 760px; margin: 0 auto;
}
.rev-stars { display: flex; justify-content: center; gap: 4px; font-size: 26px; color: #e8a33d; margin-bottom: 18px; }
.rev-band h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.rev-band p { font-size: 16px; color: var(--ink-soft); max-width: 480px; margin: 0 auto 28px; }
.btn-google {
  display: inline-flex; align-items: center; gap: 10px; background: var(--paper);
  border: 1px solid var(--line); padding: 15px 30px; border-radius: 8px;
  font-size: 15px; font-weight: 600; color: var(--ink); transition: all 0.2s;
  box-shadow: 0 3px 12px rgba(19,23,32,0.06);
}
.btn-google:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(19,23,32,0.12); border-color: #c8cdd5; }
.btn-google img { width: 20px; height: 20px; }
.rev-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-review-write {
  display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--paper);
  padding: 15px 30px; border-radius: 8px; font-size: 15px; font-weight: 600; transition: all 0.2s;
}
.btn-review-write:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-review-write i { font-size: 18px; }
.rev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-bottom: 40px; }
.rev-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 28px;
  text-align: left; transition: all 0.25s;
}
.rev-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,25,22,0.08); }
.rev-card .rev-stars { justify-content: flex-start; font-size: 16px; margin-bottom: 14px; }
.rev-card p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 16px; }
.rev-card strong { font-size: 14px; }

/* GALLERY */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; grid-auto-rows: 240px; }
.gal-item {
  border-radius: 11px; background: var(--bone-deep); border: 1px solid var(--line);
  overflow: hidden; position: relative;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gal-item:hover img { transform: scale(1.06); }
.gal-item.tall { grid-row: span 2; }

/* FAQ */
.faq { background: var(--bone); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: 11px;
  margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 17px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--gold-deep); transition: transform 0.3s; flex-shrink: 0; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 20px; font-size: 15px; color: var(--ink-soft); }

/* CTA */
.cta-band { background: var(--ink); color: var(--paper); }
.cta-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.cta-band.standalone .cta-inner { padding: 90px 0; }
.cta-inner h2 { font-size: clamp(34px, 4.5vw, 52px); margin-bottom: 18px; }
.cta-inner h2 em { font-style: normal; color: var(--paper); }
.cta-inner p { font-size: 18px; color: #c9c4ba; margin-bottom: 34px; }
.btn-gold {
  background: var(--gold); color: var(--paper); padding: 17px 38px; border-radius: 7px;
  font-size: 16px; font-weight: 600; display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.2s; position: relative; overflow: hidden;
}
.btn-gold:hover { background: var(--gold-deep); transform: translateY(-1px); }
.cta-phone { margin-top: 26px; font-size: 15px; color: #c9c4ba; }
.cta-phone strong { font-family: 'Archivo', sans-serif; font-size: 24px; color: var(--paper); font-weight: 600; }
.cta-phone a { transition: opacity 0.2s; }
.cta-phone a:hover { opacity: 0.85; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 22px; }
.contact-info h2 em { font-style: normal; color: var(--gold-deep); }
.contact-info > p { font-size: 17px; color: var(--ink-soft); margin-bottom: 32px; }
.contact-line { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-line i { width: 44px; height: 44px; background: var(--gold-soft); border-radius: 9px; display: flex; align-items: center; justify-content: center; color: var(--gold-deep); font-size: 20px; flex-shrink: 0; }
.contact-line div span { display: block; font-size: 12.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.contact-line div strong { font-size: 17px; font-weight: 600; }
.form-card { background: var(--bone); border: 1px solid var(--line); border-radius: 14px; padding: 36px; }
.form-card label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.form-card input, .form-card textarea, .form-card select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 8px;
  font-family: 'Inter'; font-size: 15px; margin-bottom: 18px; background: var(--paper);
  transition: border-color 0.2s;
}
.form-card input:focus, .form-card textarea:focus, .form-card select:focus { outline: none; border-color: var(--gold); }
.form-card textarea { resize: vertical; min-height: 100px; }
.form-submit { background: var(--ink); color: var(--paper); width: 100%; padding: 15px; border: none; border-radius: 8px; font-family: 'Inter'; font-size: 15px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--gold-deep); }

/* PAGE HERO (interior pages) */
.page-hero { padding: 168px 0 64px; }
.page-hero h1 { font-size: clamp(40px, 5.5vw, 64px); margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--gold-deep); }
.page-hero p { font-size: 18px; color: var(--ink-soft); max-width: 560px; }
.back-link { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--ink-soft); margin-bottom: 22px; transition: color 0.2s; }
.back-link:hover { color: var(--ink); }
.gallery-section { padding: 0 0 110px; }

/* FOOTER */
footer { background: var(--ink); color: #9c978c; padding: 56px 0 30px; }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.foot-brand .logo-text { color: var(--paper); }
.foot-brand p { font-size: 14px; margin-top: 14px; max-width: 280px; }
.foot-col h4 { color: var(--paper); font-family: 'Inter'; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.foot-col a, .foot-col p { display: block; font-size: 14px; margin-bottom: 9px; transition: color 0.2s; }
.foot-col a:hover { color: #7da2cc; }
.foot-bottom { padding-top: 26px; font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* STICKY CALL BAR (mobile) */
.call-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
  background: rgba(19,23,32,0.97); backdrop-filter: blur(8px);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px; border-top: 1px solid rgba(255,255,255,0.12);
}
.call-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border-radius: 8px; font-size: 15px; font-weight: 600;
}
.call-bar .cb-call { background: var(--gold); color: var(--paper); }
.call-bar .cb-text { background: rgba(255,255,255,0.1); color: var(--paper); border: 1px solid rgba(255,255,255,0.2); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* MOBILE NAV + RESPONSIVE */
@media (max-width: 1024px) {
  .nav-links { gap: 24px; }
}
@media (max-width: 900px) {
  .hero-grid, .heritage-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 420px; }
  .heritage-visual { max-width: 380px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0; z-index: 99;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0; padding: 10px 22px 22px;
    box-shadow: 0 18px 40px rgba(19,23,32,0.12);
    opacity: 0; transform: translateY(-12px); pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links a { padding: 14px 4px; font-size: 16px; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .nav-cta { margin-top: 12px; text-align: center; border-radius: 8px; }
  body.nav-open .nav-links { opacity: 1; transform: none; pointer-events: auto; }
}
@media (max-width: 700px) {
  .call-bar { display: flex; }
  footer { padding-bottom: 96px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 22px; }
  .section-pad { padding: 70px 0; }
  .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gal-item.tall { grid-row: span 1; }
  .hero { padding: 130px 0 70px; }
  .page-hero { padding: 130px 0 48px; }
  .hero-badge { left: 12px; bottom: 14px; padding: 14px 18px; }
  .ba-slider { aspect-ratio: 3/3.2; }
  .rev-band { padding: 40px 24px; }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-delay: 0s !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-copy.reveal.in > *, .trust-row.reveal.in .trust-item { opacity: 1; }
  .paint-reveal > span { opacity: 1; }
  .hero-badge { opacity: 1; transform: none; }
}
