@import url('../fonts/fonts.css');

/* ============================================================
   Sharp Painting — design tokens
   ============================================================ */
:root {
  --navy-900: #0B1E30;
  --navy-800: #13293D;
  --navy-700: #1D3C57;
  --navy-600: #2A4D6B;
  --gold:      #C7A368;
  --gold-soft: #E4CEA6;
  --gold-deep: #A9854B;
  --cream:    #F6F2EA;
  --cream-2:  #EFE9DD;
  --ink:      #0B1E30;
  --muted:    #5A6B7B;
  --muted-on-navy: #A9BACA;
  --white:    #FFFFFF;
  --line:     rgba(199,163,104,0.32);

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 6px;
  --shadow-card: 0 18px 50px -28px rgba(11,30,48,0.45);
  --shadow-soft: 0 10px 30px -20px rgba(11,30,48,0.35);

  --ff-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-body: 'Mulish', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3 { font-family: var(--ff-display); font-weight: 600; line-height: 1.06; letter-spacing: -0.01em; }
.h-xl { font-size: clamp(2.6rem, 6.4vw, 4.7rem); }
.h-lg { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.h-md { font-size: clamp(1.55rem, 2.6vw, 2rem); font-weight: 600; }
p { color: var(--muted); }
strong { color: inherit; font-weight: 700; }

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 30px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
/* brushed gold underline accent */
.ink-accent {
  position: relative;
  white-space: nowrap;
  color: var(--gold-deep);
}
.ink-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 3px;
  background: linear-gradient(90deg, rgba(199,163,104,0.0), rgba(199,163,104,0.9) 12%, rgba(199,163,104,0.9) 88%, rgba(199,163,104,0));
  z-index: -1;
  border-radius: 2px;
}

/* ============================================================
   Layout helpers
   ============================================================ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-head { max-width: 660px; margin-bottom: clamp(38px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.12rem; }

.bg-navy { background: var(--navy-900); color: var(--cream); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p { color: var(--muted-on-navy); }
.bg-cream-2 { background: var(--cream-2); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--ff-body); font-weight: 800;
  font-size: 0.94rem; letter-spacing: 0.02em;
  padding: 16px 30px; border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--gold); color: var(--navy-900);
  box-shadow: 0 14px 28px -14px rgba(199,163,104,0.7);
}
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(199,163,104,0.85); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(228,206,166,0.45);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--navy-900); color: var(--cream); }
.btn-dark:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-lg { padding: 19px 38px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246,242,234,0.86);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(11,30,48,0.07);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: 0 10px 30px -22px rgba(11,30,48,0.5); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 100px; }
.nav__logo img { height: 60px; width: auto; }
.nav__links { display: none; align-items: center; gap: 30px; }
.nav__links a {
  font-weight: 700; font-size: 0.93rem; color: var(--navy-800);
  position: relative; padding-block: 6px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 18px; }
.nav__phone {
  display: none; align-items: center; gap: 8px;
  font-weight: 800; color: var(--navy-900); font-size: 0.95rem; white-space: nowrap;
}
.nav__phone svg { width: 17px; height: 17px; color: var(--gold-deep); }
.nav__cta { display: none; }
.nav__toggle { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--navy-900); transition: transform .3s ease, opacity .2s ease; }
.nav.open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 76px 0 auto 0; z-index: 55;
  background: var(--navy-900); color: var(--cream);
  padding: 28px var(--pad) 36px;
  transform: translateY(-130%); transition: transform .38s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 24px 50px -20px rgba(0,0,0,.5);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { display: block; padding: 14px 0; font-size: 1.18rem; font-family: var(--ff-display); font-weight: 600; border-bottom: 1px solid rgba(228,206,166,0.14); }
.mobile-menu .btn { margin-top: 22px; }
.mobile-menu__phone { display: flex; align-items: center; gap: 10px; margin-top: 18px; color: var(--gold-soft); font-weight: 700; font-size: 1.05rem; }
.mobile-menu__phone svg { width: 19px; height: 19px; flex: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; color: var(--cream); isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,30,48,0.62) 0%, rgba(11,30,48,0.42) 38%, rgba(11,30,48,0.86) 100%),
    radial-gradient(120% 90% at 18% 30%, rgba(11,30,48,0.55), rgba(11,30,48,0.18));
}
.hero__inner { max-width: 720px; padding-block: clamp(86px, 15vw, 168px); }
.hero .eyebrow { color: var(--gold-soft); margin-bottom: 22px; }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 .ink-accent { color: var(--gold-soft); }
.hero h1 .ink-accent::after { background: linear-gradient(90deg, rgba(228,206,166,0), rgba(228,206,166,.95) 12%, rgba(228,206,166,.95) 88%, rgba(228,206,166,0)); }
.hero__sub { font-size: 1.2rem; color: #DCE6EF; max-width: 560px; margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 40px;
  padding-top: 28px; border-top: 1px solid rgba(228,206,166,0.22);
}
.hero__badge { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 0.92rem; color: #E7EEF4; }
.hero__badge svg { width: 19px; height: 19px; color: var(--gold-soft); flex: none; }

/* ============================================================
   Benefits / Why
   ============================================================ */
.benefits-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.benefit {
  background: var(--white); border-radius: var(--radius); padding: 30px 28px;
  border: 1px solid rgba(11,30,48,0.06); box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.benefit__icon {
  width: 50px; height: 50px; border-radius: 50%; margin-bottom: 18px;
  display: grid; place-items: center;
  background: var(--cream); color: var(--gold-deep);
  border: 1px solid var(--line);
}
.benefit__icon svg { width: 24px; height: 24px; }
.benefit h3 { font-size: 1.32rem; margin-bottom: 8px; color: var(--navy-900); }
.benefit p { font-size: 0.98rem; }

/* ============================================================
   Services
   ============================================================ */
.services-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; grid-template-columns: 1fr; }
.service {
  background: var(--cream); padding: 34px 30px;
  transition: background .3s ease, transform .3s ease;
  position: relative;
}
.service:hover { background: var(--white); }
.service__num { font-family: var(--ff-display); font-size: 0.95rem; color: var(--gold-deep); font-weight: 600; letter-spacing: .05em; }
.service__icon { color: var(--navy-800); margin: 14px 0 16px; }
.service__icon svg { width: 34px; height: 34px; }
.service h3 { font-size: 1.45rem; color: var(--navy-900); margin-bottom: 8px; }
.service p { font-size: 0.97rem; }

/* ============================================================
   Process
   ============================================================ */
.process-grid { display: grid; gap: 30px; grid-template-columns: 1fr; counter-reset: step; position: relative; }
.step { position: relative; padding-left: 0; text-align: center; }
.step__no {
  font-family: var(--ff-display); font-size: 3.4rem; font-weight: 600;
  color: transparent; -webkit-text-stroke: 1px var(--gold); line-height: 1;
  margin-bottom: 14px; display: block;
}
.step h3 { font-size: 1.5rem; margin-bottom: 10px; }
.step p { font-size: 1rem; }
.step__line { display: none; }

/* ============================================================
   Portfolio carousel
   ============================================================ */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; }
.carousel__track {
  display: flex; gap: 24px; list-style: none; padding: 0; margin: 0;
  transition: transform .6s cubic-bezier(.4,0,.2,1); will-change: transform;
}
.pcard {
  position: relative; flex: 0 0 100%; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); background: var(--navy-800);
}
@media (min-width: 600px) { .pcard { flex-basis: calc((100% - 24px) / 2); } }
@media (min-width: 900px) { .pcard { flex-basis: calc((100% - 48px) / 3); } }
.pcard img {
  width: 100%; height: clamp(280px, 34vw, 360px); object-fit: cover; display: block;
  transition: transform .8s ease;
}
.pcard:hover img { transform: scale(1.05); }
.pcard__overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
  background: linear-gradient(to top, rgba(11,30,48,0.92) 0%, rgba(11,30,48,0.45) 34%, rgba(11,30,48,0) 64%);
  color: var(--white);
}
.pcard__title { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 600; color: var(--white); margin-bottom: 6px; line-height: 1.1; }
.pcard__desc { font-size: 0.94rem; color: rgba(246,242,234,0.86); line-height: 1.45; }

.carousel__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--navy-900); background: var(--white);
  box-shadow: 0 12px 30px -10px rgba(11,30,48,0.45);
  transition: background-color .25s ease, color .25s ease, transform .2s ease;
}
.carousel__arrow:hover { background: var(--gold); color: var(--navy-900); }
.carousel__arrow svg { width: 22px; height: 22px; }
.carousel__arrow--prev { left: 12px; }
.carousel__arrow--next { right: 12px; }
@media (min-width: 1240px) {
  .carousel__arrow--prev { left: -22px; }
  .carousel__arrow--next { right: -22px; }
}

.carousel__dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.carousel__dot {
  width: 9px; height: 9px; border-radius: 50%; background: rgba(11,30,48,0.2);
  transition: background-color .25s ease, width .25s ease;
}
.carousel__dot.is-active { background: var(--gold); width: 26px; border-radius: 5px; }

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(7,18,30,0.92); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__stage { margin: 0; max-width: min(1100px, 100%); max-height: 100%; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.lightbox__stage img {
  max-width: 100%; max-height: 80vh; width: auto; height: auto;
  border-radius: var(--radius); box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  background: var(--navy-800);
}
.lightbox__cap { color: var(--gold-soft); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; text-align: center; }
.lightbox__close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  color: var(--cream); background: rgba(255,255,255,0.08); transition: background .25s ease;
}
.lightbox__close:hover { background: rgba(255,255,255,0.18); }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  color: var(--navy-900); background: var(--gold); transition: background .25s ease, transform .2s ease;
}
.lightbox__nav:hover { background: var(--gold-soft); }
.lightbox__nav svg { width: 26px; height: 26px; }
.lightbox__prev { left: clamp(8px, 2vw, 28px); }
.lightbox__next { right: clamp(8px, 2vw, 28px); }
@media (max-width: 560px) {
  .lightbox__nav { width: 44px; height: 44px; bottom: 18px; top: auto; transform: none; }
  .lightbox__prev { left: 50%; margin-left: -52px; }
  .lightbox__next { right: 50%; margin-right: -52px; }
}

/* ============================================================
   Testimonials
   ============================================================ */
.testi-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
.testi {
  background: var(--white); border-radius: var(--radius); padding: 30px 28px;
  border: 1px solid rgba(11,30,48,0.06); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 16px;
}
.testi__stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; }
.testi__quote { font-family: var(--ff-display); font-size: 1.32rem; line-height: 1.4; color: var(--navy-900); }
.testi__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--navy-800); color: var(--gold-soft);
  display: grid; place-items: center; font-weight: 800; font-family: var(--ff-body); font-size: 0.95rem;
}
.testi__name { font-weight: 800; color: var(--navy-900); font-size: 0.96rem; line-height: 1.2; }
.testi__loc { font-size: 0.85rem; color: var(--muted); }

/* ============================================================
   Service area
   ============================================================ */
.area { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
.area__list { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; margin-top: 28px; }
.area__item {
  display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--navy-900);
  padding: 16px 18px; background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(11,30,48,0.06); box-shadow: var(--shadow-soft);
}
.area__item svg { width: 20px; height: 20px; color: var(--gold-deep); flex: none; }
.area__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.area__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 21/9; }

/* ============================================================
   Guarantees
   ============================================================ */
.guarantee-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
.guarantee { display: flex; gap: 16px; align-items: flex-start; }
.guarantee__icon {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: var(--navy-900); background: var(--gold);
}
.guarantee__icon svg { width: 23px; height: 23px; }
.guarantee h3 { font-size: 1.28rem; margin-bottom: 6px; }
.guarantee p { font-size: 0.98rem; }

/* ============================================================
   Final CTA + form
   ============================================================ */
.cta-wrap { display: grid; gap: clamp(36px, 5vw, 64px); grid-template-columns: 1fr; align-items: start; }
.cta-copy .eyebrow { color: var(--gold-soft); margin-bottom: 18px; }
.cta-copy .eyebrow::before { background: var(--gold-soft); }
.cta-copy h2 { color: var(--white); margin-bottom: 18px; }
.cta-copy p { font-size: 1.12rem; margin-bottom: 26px; }
.cta-trust { display: grid; gap: 14px; margin-top: 6px; }
.cta-trust li { display: flex; align-items: center; gap: 12px; color: #E7EEF4; font-weight: 600; }
.cta-trust svg { width: 20px; height: 20px; color: var(--gold-soft); flex: none; }

.form-card {
  background: var(--cream); color: var(--ink);
  border-radius: 10px; padding: clamp(26px, 4vw, 40px);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.6);
  border-top: 4px solid var(--gold);
}
.form-card h3 { font-size: 1.7rem; color: var(--navy-900); margin-bottom: 6px; }
.form-card > p { font-size: 0.97rem; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 0.85rem; color: var(--navy-800); margin-bottom: 7px; }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius);
  background: var(--white); border: 1px solid rgba(11,30,48,0.16);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(199,163,104,0.22);
}
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 4px; text-align: center; }
.form-status { font-weight: 700; padding: 14px 16px; border-radius: var(--radius); margin-bottom: 18px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(46,125,87,0.12); color: #226B4A; border: 1px solid rgba(46,125,87,0.3); }
.form-status.err { background: rgba(176,58,46,0.1); color: #9A352A; border: 1px solid rgba(176,58,46,0.3); }
.btn[aria-busy="true"] { opacity: .7; pointer-events: none; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--navy-900); color: var(--muted-on-navy); padding-block: 64px 0; }
.footer__grid { display: grid; gap: 38px; grid-template-columns: 1fr; }
.footer__brand img { height: 46px; width: auto; margin-bottom: 18px; }
.footer__brand p { color: var(--muted-on-navy); font-size: 0.96rem; max-width: 320px; }
.footer__col h4 { color: var(--white); font-family: var(--ff-body); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; font-weight: 800; }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.footer__col a, .footer__col li { color: var(--muted-on-navy); font-size: 0.96rem; }
.footer__col a:hover { color: var(--gold-soft); }
.footer__col a.btn-primary, .footer__col a.btn-primary:hover { color: var(--navy-900); }
.footer__contact a { display: flex; align-items: center; gap: 10px; }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; }
.footer__bottom {
  margin-top: 52px; border-top: 1px solid rgba(228,206,166,0.14);
  padding-block: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: 0.85rem; color: #6E8194;
}
.footer__credit { color: var(--muted-on-navy); }
.footer__credit::before { content: "·"; margin: 0 8px; opacity: 0.6; }
.footer__credit a { color: var(--gold-soft); font-weight: 700; transition: color .25s ease; }
.footer__credit a:hover { color: var(--gold); }

/* ============================================================
   Mobile sticky conversion bar
   ============================================================ */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: rgba(228,206,166,0.25);
  box-shadow: 0 -8px 24px -12px rgba(0,0,0,0.4);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 10px; font-weight: 800; font-size: 0.95rem;
}
.mobile-bar svg { width: 18px; height: 18px; }
.mobile-bar__call { background: var(--navy-900); color: var(--cream); }
.mobile-bar__quote { background: var(--gold); color: var(--navy-900); }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__phone { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .mobile-menu, .mobile-bar { display: none; }
  body { padding-bottom: 0 !important; }
  .benefits-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(3, minmax(0, 300px)); justify-content: center; column-gap: 64px; }
  .testi-grid { grid-template-columns: repeat(3, 1fr); }
  .guarantee-grid { grid-template-columns: 1fr 1fr; }
  .area { grid-template-columns: 1fr 1fr; }
  .cta-wrap { grid-template-columns: 1.05fr 1fr; }
  .footer__grid { grid-template-columns: 2fr 1fr 1.3fr; }
}
@media (max-width: 899px) {
  body { padding-bottom: 56px; } /* room for mobile bar */
}

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