/* Bright Star Painting Co.
   Palette: deep navy base, single gold accent, cool off-white paper.
   Radius system: buttons = pill, cards/images = 16px, inputs = 10px. */

:root {
  --navy: #16243d;
  --navy-deep: #0f1a2e;
  --navy-soft: #223354;
  --gold: #e8a33d;
  --gold-deep: #c9882a;
  --paper: #f7f8fb;
  --white: #fdfdfe;
  --ink: #1d2735;
  --muted: #57637a;
  --line: #e3e7ee;
  --radius-card: 16px;
  --radius-input: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 18px 44px rgba(22, 36, 61, 0.12);
  --shadow-photo: 0 24px 60px rgba(22, 36, 61, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(232, 163, 61, 0.35); }

img { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 0.5em; }

h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }

p { margin: 0 0 1em; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn:active { transform: translateY(1px) scale(0.98); }

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 6px 18px rgba(232, 163, 61, 0.35);
}

.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(232, 163, 61, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-ghost:hover { background: var(--navy); color: var(--white); }

.btn-block { width: 100%; border: none; font-family: inherit; }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 251, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--navy);
  margin-right: auto;
}

.brand-star { width: 30px; height: 30px; }
.brand-star path { fill: var(--gold); }

.brand-text {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
}

.brand-text small,
.footer-name small {
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.nav-links { display: flex; gap: 1.5rem; }

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  position: relative;
  transition: color 0.2s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 2px;
  background: var(--gold);
  transition: right 0.25s var(--ease);
}

.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { right: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  overflow: hidden;
  background:
    radial-gradient(60rem 30rem at 110% -20%, rgba(232, 163, 61, 0.1), transparent 60%),
    var(--paper);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 5.5rem;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 32ch;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero-media { position: relative; }

.hero-media img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-photo);
}

.hero-badge {
  position: absolute;
  left: -1.25rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 0.85rem 1.2rem;
  box-shadow: var(--shadow-card);
}

.hero-badge svg { width: 28px; height: 28px; flex-shrink: 0; }
.hero-badge svg path { fill: var(--gold); }

.hero-badge strong { display: block; font-size: 0.95rem; line-height: 1.25; }
.hero-badge span { font-size: 0.82rem; color: var(--muted); }

/* ---------- Trust ---------- */

.trust { background: var(--white); border-block: 1px solid var(--line); }

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.75rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.trust-item { display: flex; gap: 0.9rem; align-items: flex-start; }

.trust-item i {
  font-size: 1.7rem;
  color: var(--gold-deep);
  margin-top: 0.15rem;
}

.trust-item h3 { margin-bottom: 0.2em; font-size: 1.05rem; }
.trust-item p { color: var(--muted); margin: 0; font-size: 0.92rem; }

/* ---------- Sections shared ---------- */

.section-head {
  max-width: 1200px;
  margin: 0 auto 2.75rem;
  padding: 0 1.25rem;
}

.section-head-tight { padding: 0; margin-left: 0; }

.section-head p { color: var(--muted); max-width: 52ch; font-size: 1.08rem; margin: 0; }

/* ---------- Services ---------- */

.services { padding: 5.5rem 0; }

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-card-lg { grid-row: span 2; }

.service-media { overflow: hidden; }
.service-card-lg .service-media { flex: 1; min-height: 300px; }

.service-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.service-card-lg .service-media img { height: 100%; min-height: 300px; }

.service-card:hover .service-media img { transform: scale(1.04); }

.service-body { padding: 1.4rem 1.5rem 1.5rem; }
.service-body p { color: var(--muted); margin: 0 0 1rem; font-size: 0.97rem; }

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.service-list i { color: var(--gold-deep); font-size: 0.85rem; }

.service-card-lg .service-list { grid-template-columns: repeat(2, 1fr); }

/* ---------- Process (vertical timeline + sticky visual) ---------- */

.process { background: var(--navy); padding: 5.5rem 0; }

.process-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

.process .section-head-tight h2 { color: var(--white); }
.process .section-head-tight p { color: rgba(253, 253, 254, 0.72); }

.process-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1.4rem;
  padding-bottom: 2.5rem;
}

.process-steps li:last-child { padding-bottom: 0; }

/* connecting line between markers */
.process-steps li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 52px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(232, 163, 61, 0.55), rgba(232, 163, 61, 0.12));
  border-radius: 2px;
}

.process-steps li:last-child::before { display: none; }

.process-marker {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(232, 163, 61, 0.16);
}

.process-content h3 { color: var(--white); font-size: 1.3rem; margin: 0.35rem 0 0.4rem; }

.process-content p {
  color: rgba(253, 253, 254, 0.72);
  margin: 0 0 0.9rem;
  font-size: 0.97rem;
  max-width: 48ch;
}

.process-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(232, 163, 61, 0.14);
  border: 1px solid rgba(232, 163, 61, 0.35);
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
}

.process-chip i { font-size: 1rem; }

.process-side {
  position: sticky;
  top: 96px;
}

.process-side img {
  border-radius: var(--radius-card);
  box-shadow: 0 24px 60px rgba(8, 14, 26, 0.5);
}

.process-note {
  margin: 1.5rem 0 0;
  color: rgba(253, 253, 254, 0.65);
  font-size: 0.95rem;
}

/* ---------- Recent work ---------- */

.work { padding: 5.5rem 0; }

.work-head {
  max-width: 1200px;
  margin: 0 auto 2.25rem;
  padding: 0 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.work-head .section-head { margin-bottom: 0; }

.work-nav { display: flex; gap: 0.6rem; flex-shrink: 0; }

.work-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.work-btn:hover { background: var(--navy); color: var(--white); }
.work-btn:active { transform: scale(0.94); }

.work-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 max(1.25rem, calc((100vw - 1200px) / 2 + 1.25rem)) 1rem;
  scrollbar-width: none;
}

.work-track::-webkit-scrollbar { display: none; }

.work-track figure {
  margin: 0;
  flex: 0 0 min(480px, 82vw);
  scroll-snap-align: start;
}

.work-track img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: 0 12px 32px rgba(22, 36, 61, 0.1);
}

.work-track figcaption {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

/* ---------- About ---------- */

.about { background: var(--white); border-block: 1px solid var(--line); padding: 5.5rem 0; }

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-media img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-photo);
}

.about-copy p { color: var(--muted); }

.about-list {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}

.about-list i { color: var(--gold-deep); }

/* ---------- Reviews ---------- */

.reviews { padding: 5.5rem 0; }

.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.review {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-featured {
  grid-row: span 2;
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.review-stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.review-stars i { color: var(--gold); font-size: 1.05rem; }

.review-featured p { font-size: 1.25rem; line-height: 1.5; }

.review p { margin-bottom: 1.25rem; }

.review footer { display: flex; flex-direction: column; }
.review footer strong { font-weight: 600; }
.review footer span { color: var(--muted); font-size: 0.88rem; }
.review-featured footer span { color: rgba(253, 253, 254, 0.7); }

/* ---------- FAQ ---------- */

.faq { background: var(--white); border-block: 1px solid var(--line); padding: 5.5rem 0; }

.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }

.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}

.faq-list details[open] { border-color: var(--gold); }

.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary i {
  color: var(--gold-deep);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.faq-list details[open] summary i { transform: rotate(45deg); }

.faq-list details p {
  margin: 0;
  padding: 0 1.4rem 1.25rem;
  color: var(--muted);
}

/* ---------- Service area ---------- */

.area { padding: 5.5rem 0; }

.area-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.area-copy > p { color: var(--muted); max-width: 42ch; margin-bottom: 1.75rem; font-size: 1.05rem; }

.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.area-list li {
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
}

.area-list li:first-child {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.area-media img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-photo);
}

.area-map {
  height: 440px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-photo);
  border: 1px solid var(--line);
  isolation: isolate; /* keep Leaflet panes below the sticky nav */
  background: var(--paper);
}

.area-star-marker svg { width: 100%; height: 100%; filter: drop-shadow(0 2px 6px rgba(22, 36, 61, 0.45)); }
.area-star-marker path { fill: var(--gold); stroke: var(--navy-deep); stroke-width: 4; }

.area-town-label {
  background: var(--navy);
  border: none;
  border-radius: 999px;
  color: var(--white);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  box-shadow: 0 4px 12px rgba(22, 36, 61, 0.3);
}

.area-town-label::before { display: none; }

/* ---------- Quote ---------- */

.quote {
  background:
    radial-gradient(50rem 26rem at -10% 120%, rgba(232, 163, 61, 0.12), transparent 60%),
    var(--navy);
  padding: 5.5rem 0;
}

.quote-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.quote-copy { color: var(--white); }
.quote-copy h2 { color: var(--white); }
.quote-copy > p { color: rgba(253, 253, 254, 0.78); font-size: 1.08rem; max-width: 40ch; }

.quote-points {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quote-points li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}

.quote-points i { color: var(--gold); font-size: 1.15rem; }

.quote-contact {
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 0;
  border-top: 1px solid rgba(253, 253, 254, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  font-size: 1.05rem;
}

.quote-contact li { display: flex; align-items: center; gap: 0.7rem; }
.quote-contact i { color: var(--gold); font-size: 1.15rem; }

.quote-contact a { color: var(--gold); text-decoration: none; font-weight: 600; }
.quote-contact a:hover { text-decoration: underline; }
.quote-contact li:last-child { color: rgba(253, 253, 254, 0.65); }

.quote-form {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: 0 30px 80px rgba(15, 26, 46, 0.45);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }

.form-field label { font-weight: 600; font-size: 0.92rem; }

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-input);
  padding: 0.7rem 0.85rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-field textarea { resize: vertical; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.25);
}

.form-note { margin: 0; font-size: 0.92rem; color: var(--muted); text-align: center; }
.form-note.is-success { color: #1e7a46; font-weight: 600; }
.form-note.is-error { color: #b3372f; font-weight: 600; }
.form-note:empty { display: none; }

/* ---------- Footer ---------- */

.footer { background: var(--navy-deep); color: rgba(253, 253, 254, 0.78); }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer-brand .brand-star { width: 32px; height: 32px; flex-shrink: 0; }

.footer-name {
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.05;
  display: flex;
  flex-direction: column;
}

.footer-tag { margin: 0; font-size: 0.92rem; max-width: 36ch; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(253, 253, 254, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover { color: var(--gold); }

.footer-col p { font-size: 0.95rem; margin: 0.25rem 0 0; }

.footer-legal {
  border-top: 1px solid rgba(253, 253, 254, 0.1);
}

.footer-legal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal p { margin: 0; font-size: 0.85rem; color: rgba(253, 253, 254, 0.5); }

.footer-legal a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-legal a:hover { text-decoration: underline; }

/* ---------- Mobile call bar ---------- */

.callbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--navy-deep);
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  gap: 0.7rem;
  box-shadow: 0 -8px 24px rgba(15, 26, 46, 0.3);
}

.callbar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
}

.callbar-phone {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(253, 253, 254, 0.35);
}

.callbar-quote {
  background: var(--gold);
  color: var(--navy-deep);
}

/* ---------- Reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(22px); }

.reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-delay-1.is-visible { transition-delay: 0.08s; }
.reveal-delay-2.is-visible { transition-delay: 0.16s; }
.reveal-delay-3.is-visible { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .service-card, .service-media img, .nav-toggle span, .work-btn, .faq-list summary i { transition: none; }
}

/* ---------- Mobile ---------- */

@media (max-width: 920px) {
  .nav-cta { display: none; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    display: none;
  }

  .nav-links.open { display: flex; }

  .nav-links a { padding: 0.85rem 1.5rem; }
  .nav-links a::after { display: none; }

  .hero-inner,
  .about-inner,
  .area-inner,
  .faq-inner,
  .quote-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-inner { padding-top: 3rem; padding-bottom: 3.5rem; }

  .hero-badge { left: 0.75rem; bottom: 0.75rem; right: 0.75rem; padding: 0.7rem 1rem; }

  .trust-inner { grid-template-columns: 1fr 1fr; gap: 1.75rem; }

  .services-grid,
  .reviews-grid { grid-template-columns: 1fr; }

  .service-card-lg { grid-row: auto; }
  .service-card-lg .service-media { flex: none; min-height: 0; }
  .service-card-lg .service-media img { height: 220px; min-height: 0; }
  .review-featured { grid-row: auto; }

  .process-layout { grid-template-columns: 1fr; gap: 2.75rem; }

  .process-side { position: static; }

  .work-head { flex-direction: column; align-items: flex-start; gap: 1.25rem; }

  .faq-inner { gap: 2rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .callbar { display: flex; }

  body { padding-bottom: 72px; }

  .footer-legal { padding-bottom: 1.4rem; }
}

@media (max-width: 540px) {
  .trust-inner,
  .form-row,
  .footer-inner { grid-template-columns: 1fr; }

  .process-steps li { grid-template-columns: 38px 1fr; gap: 1rem; }
  .process-marker { width: 38px; height: 38px; font-size: 1rem; }
  .process-steps li::before { left: 18px; top: 44px; }

  .hero-actions .btn { width: 100%; text-align: center; }

  .work-track figure { flex-basis: 86vw; }
  .work-track img { height: 250px; }

  .area-map { height: 340px; }
}
