/* ═══ Most Valuable Painters ═══════════════════════════ */

:root {
  --red:        #d21f26;
  --red-dark:   #a5161c;
  --red-glow:   rgba(210, 31, 38, .35);
  --ink:        #0b0b0d;
  --ink-2:      #141419;
  --ink-3:      #1e1e25;
  --paper:      #ffffff;
  --paper-2:    #f6f6f7;
  --paper-3:    #ecedee;
  --text:       #15151a;
  --text-mute:  #5c5c68;
  --line:       #e2e3e5;
  --line-dark:  rgba(255,255,255,.10);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --wrap: 1200px;
  --r:    14px;
  --r-sm: 8px;

  --shadow:    0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 2px 4px rgba(0,0,0,.05), 0 20px 50px rgba(0,0,0,.12);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
svg { width: 1em; height: 1em; fill: currentColor; }
.ico {
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 800;
}
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: 1.2rem; letter-spacing: -.02em; }
p  { margin: 0 0 1rem; }

a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--red); color: #fff; padding: 12px 20px;
}
.skip:focus { left: 12px; top: 12px; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 4px; }

.eyebrow {
  font-size: .75rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--red); margin: 0 0 .9rem;
}

.accent { color: var(--red); }

.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ═══ Buttons ══════════════════════════════════════════ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: .78em 1.5em;
  font-size: .95rem; font-weight: 700; letter-spacing: -.01em;
  border: 1.5px solid transparent; border-radius: 100px;
  cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), background .2s, box-shadow .25s, border-color .2s, color .2s;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--red); color: #fff;
  box-shadow: 0 4px 14px var(--red-glow);
}
.btn--primary:hover {
  background: var(--red-dark);
  box-shadow: 0 8px 26px var(--red-glow);
  transform: translateY(-2px);
}

.btn--outline { border-color: rgba(255,255,255,.4); color: #fff; backdrop-filter: blur(8px); background: rgba(255,255,255,.06); }
.btn--outline:hover { background: #fff; color: var(--ink); border-color: #fff; transform: translateY(-2px); }

.btn--ghost { color: var(--text); font-weight: 700; padding: .6em .9em; }
.btn--ghost:hover { color: var(--red); }
.btn--ghost svg { color: var(--red); }

.btn--lg    { padding: 1em 2em; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ═══ Nav ══════════════════════════════════════════════ */

.nav {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: rgba(255,255,255,0);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s;
}
.nav.is-stuck {
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(0,0,0,.05);
}
.nav__inner { display: flex; align-items: center; gap: 2rem; height: 76px; }

.logo { display: inline-flex; align-items: center; gap: .65rem; flex-shrink: 0; }
/* Ryan's star mark. It carries its own black outline and white fill, so it needs
   no plate behind it — it reads on both the dark hero and the light stuck nav. */
.logo__mark {
  width: 42px; height: 42px; flex-shrink: 0;
  object-fit: contain;
  transition: transform .3s var(--ease);
}
.logo:hover .logo__mark { transform: rotate(-6deg) scale(1.06); }
.logo__text { font-weight: 800; letter-spacing: -.03em; font-size: 1.02rem; line-height: 1.1; }
.logo__text em { font-style: normal; color: var(--red); }

.nav__links { display: flex; gap: 1.9rem; margin-left: auto; }
.nav__links a {
  font-size: .92rem; font-weight: 600; color: var(--text);
  position: relative; padding: .3rem 0;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__actions { display: flex; align-items: center; gap: .6rem; }

/* Hero is dark → nav starts light-on-dark, flips when stuck */
.nav:not(.is-stuck) .nav__links a,
.nav:not(.is-stuck) .logo__text,
.nav:not(.is-stuck) .btn--ghost { color: #fff; }
.nav:not(.is-stuck) .logo__text em { color: #fff; }
.nav:not(.is-stuck) .nav__toggle span { background: #fff; }

.nav__toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px;
  background: none; border: 0; cursor: pointer;
}
.nav__toggle span {
  height: 2px; width: 100%; background: var(--text); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ Hero ═════════════════════════════════════════════ */

.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 120px 0 90px;
  background: var(--ink); color: #fff; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 42%;
}
.hero__placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 620px at 78% 12%, rgba(210,31,38,.30), transparent 62%),
    radial-gradient(760px 520px at 8% 88%, rgba(210,31,38,.14), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.022) 0 2px, transparent 2px 9px),
    linear-gradient(160deg, #17171d 0%, #0b0b0d 58%, #050506 100%);
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,13,.96) 2%, rgba(11,11,13,.35) 46%, rgba(11,11,13,.72) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: 830px; }

.hero__title {
  font-size: clamp(2.9rem, 7.6vw, 5.6rem);
  letter-spacing: -.045em; margin: 0 0 1.3rem;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  color: rgba(255,255,255,.76);
  max-width: 60ch; margin-bottom: 2.3rem; line-height: 1.55;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 3.4rem; }

.hero__badges {
  display: flex; flex-wrap: wrap; gap: 2.6rem;
  list-style: none; margin: 0; padding: 1.7rem 0 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero__badges li {
  font-size: .84rem; letter-spacing: .04em; text-transform: uppercase;
  color: rgba(255,255,255,.58); font-weight: 600;
}
.hero__badges strong {
  display: block; font-size: 1.65rem; font-weight: 800;
  color: #fff; letter-spacing: -.03em; text-transform: none; margin-bottom: .1rem;
}

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; z-index: 3;
  transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.3); border-radius: 14px;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 8px;
  width: 3px; height: 7px; margin-left: -1.5px; border-radius: 2px;
  background: #fff; animation: scroll 1.9s var(--ease) infinite;
}
@keyframes scroll {
  0%   { opacity: 0; transform: translateY(0); }
  35%  { opacity: 1; }
  75%  { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; }
}

/* ═══ Trust bar ════════════════════════════════════════ */

.trust { background: var(--ink-2); border-top: 1px solid var(--line-dark); color: #fff; }
.trust__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-dark);
  padding: 0; max-width: var(--wrap);
}
.trust__item {
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  background: var(--ink-2); padding: 1.5rem 1rem;
  font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.8);
  text-align: center;
}
.trust__item svg { font-size: 1.3rem; color: var(--red); flex-shrink: 0; }

/* ═══ Sections ═════════════════════════════════════════ */

.section { padding: clamp(72px, 10vw, 130px) 0; }
.section--muted { background: var(--paper-2); }
.section--dark  { background: var(--ink); color: #fff; }
.section--dark .section__lead,
.section--dark p { color: rgba(255,255,255,.72); }

.section__head { max-width: 62ch; margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.section__lead { font-size: 1.12rem; color: var(--text-mute); margin: 1.1rem 0 0; }

/* ═══ Service cards ════════════════════════════════════ */

.grid { display: grid; gap: 1.1rem; }
.grid--services { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }

.card {
  position: relative; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 2rem 1.7rem 1.9rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 3px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card__icon {
  display: grid; place-items: center;
  width: 50px; height: 50px; margin-bottom: 1.3rem;
  border-radius: 12px; background: rgba(210,31,38,.09); color: var(--red);
  font-size: 1.5rem;
  transition: background .35s, color .35s, transform .35s var(--ease);
}
.card:hover .card__icon { background: var(--red); color: #fff; transform: scale(1.06) rotate(-4deg); }

.card h3 { margin-bottom: .55rem; }
.card p  { color: var(--text-mute); font-size: .95rem; margin: 0; }

.card--cta {
  background: linear-gradient(150deg, var(--ink-3), var(--ink));
  border-color: transparent; color: #fff;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
}
.card--cta p { color: rgba(255,255,255,.7); margin-bottom: 1.4rem; }
.card--cta::before { display: none; }

/* ═══ Why us ═══════════════════════════════════════════ */

.why__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center;
}
.why__copy h2 { margin-bottom: 1.4rem; }
.why__copy .btn { margin-top: .7rem; }

.why__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.6rem; }
.why__list li { display: flex; gap: 1.2rem; align-items: flex-start; }
.why__num {
  flex-shrink: 0; font-size: .82rem; font-weight: 800; letter-spacing: .06em;
  color: var(--red); padding-top: .28rem;
}
.why__list h3 { margin-bottom: .3rem; }
.why__list p  { margin: 0; font-size: .94rem; color: rgba(255,255,255,.62); }

/* ═══ Process ══════════════════════════════════════════ */

.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: 1.6rem;
  counter-reset: step;
}
.steps li { position: relative; padding-top: 2.2rem; border-top: 2px solid var(--line); }
.steps li::after {
  content: ''; position: absolute; top: -2px; left: 0; width: 100%; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .7s var(--ease) .1s;
}
.steps li.is-in::after { transform: scaleX(1); }
.steps__n {
  position: absolute; top: 1rem; left: 0;
  font-size: .78rem; font-weight: 800; color: var(--red);
}
.steps h3 { margin-bottom: .4rem; }
.steps p  { font-size: .94rem; color: var(--text-mute); margin: 0; }

/* ═══ Gallery ══════════════════════════════════════════ */

.gallery {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem;
}
.gallery__item { margin: 0; grid-column: span 2; }
.gallery__item--wide { grid-column: span 3; }

.ph {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: var(--r); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(210,31,38,.05) 0 10px, transparent 10px 20px),
    linear-gradient(150deg, var(--paper-3), #dcdde0);
  border: 1px dashed rgba(0,0,0,.16);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.gallery__item:hover .ph { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ph::after {
  content: attr(data-label) ' — photo coming';
  position: absolute; inset: 0; display: grid; place-items: center;
  padding: 1rem; text-align: center;
  font-size: .8rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: rgba(0,0,0,.34);
}
.ph--map { aspect-ratio: 16 / 12; }
.ph--map::after { content: attr(data-label) ' — pending full address'; }

.gallery__item figcaption {
  margin-top: .7rem; font-size: .86rem; font-weight: 600; color: var(--text-mute);
}

/* Real job media — img and video share one box so the grid stays even.
   height:auto is load-bearing: the width/height HTML attributes are
   presentational hints, and a definite height would make aspect-ratio a no-op. */
.gallery__media {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--r); background: var(--paper-3);
}
video.gallery__media { cursor: pointer; background: #111; }

/* Featured single shot (the rust line) */
.feature { margin: 0 0 2.2rem; }
.feature__img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--r);
}
.feature figcaption {
  margin-top: .9rem; max-width: 62ch;
  font-size: .95rem; line-height: 1.6; color: var(--text-mute);
}
.feature figcaption strong { color: var(--text); }

/* ═══ Before / After slider ════════════════════════════ */

.ba {
  position: relative; margin-bottom: 1.1rem;
  aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: var(--r); background: var(--paper-3);
  --pos: 50%;
  user-select: none; touch-action: pan-y;
}
.ba__pane { position: absolute; inset: 0; }
.ba__pane .ph { height: 100%; aspect-ratio: auto; border: 0; border-radius: 0; }
/* clip-path (not width) keeps the underlying image at full size, so the
   "before" reveals rather than squashing as the handle moves. */
.ba__pane--before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }

.ph--before {
  background:
    repeating-linear-gradient(46deg, rgba(140,74,42,.16) 0 12px, transparent 12px 26px),
    linear-gradient(140deg, #b9a99f, #8d7a6d);
}
.ph--after {
  background:
    repeating-linear-gradient(46deg, rgba(255,255,255,.10) 0 12px, transparent 12px 26px),
    linear-gradient(140deg, #55606b, #2f3740);
}
/* Pin the two captions to opposite edges — centred, they collide at the handle. */
.ba .ph::after {
  content: attr(data-label);
  color: rgba(255,255,255,.9); text-shadow: 0 1px 8px rgba(0,0,0,.55);
  padding: 1.4rem;
}
.ph--before::after { place-items: center start; }
.ph--after::after  { place-items: center end; }

.ba__handle {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 3px; margin-left: -1.5px; background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.18), 0 0 22px rgba(0,0,0,.35);
  pointer-events: none;
}
.ba__grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--ink); font-size: 1.15rem;
  box-shadow: 0 4px 18px rgba(0,0,0,.3);
}
.ba__range:focus-visible ~ .ba__handle .ba__grip { outline: 3px solid var(--red); outline-offset: 3px; }
.ba__range:active ~ .ba__handle .ba__grip { transform: translate(-50%, -50%) scale(1.08); }

/* A real range input drives the slider: keyboard + screen readers work for free. */
.ba__range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: ew-resize; -webkit-appearance: none; appearance: none;
  background: transparent;
}
.ba__range::-webkit-slider-thumb { -webkit-appearance: none; width: 56px; height: 100%; cursor: ew-resize; }
.ba__range::-moz-range-thumb { width: 56px; height: 100%; border: 0; opacity: 0; cursor: ew-resize; }

.ba__label {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  z-index: 2; pointer-events: none; white-space: nowrap;
  font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: #fff; background: rgba(11,11,13,.62); backdrop-filter: blur(6px);
  padding: .5em 1.1em; border-radius: 100px;
  transition: opacity .3s;
}
.ba:hover .ba__label, .ba__range:focus-visible ~ .ba__label { opacity: 0; }

/* ═══ FAQ ══════════════════════════════════════════════ */

.faq__grid {
  display: grid; grid-template-columns: .8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: start;
}
.faq__intro { position: sticky; top: 110px; }
.faq__intro h2 { margin-bottom: 1rem; }
.faq__intro .btn { margin-top: .6rem; }

.faq__item {
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.faq__item summary {
  position: relative; cursor: pointer; list-style: none;
  padding: 1.35rem 3rem 1.35rem 0;
  font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em;
  transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--red); }

.faq__item summary::after {
  content: ''; position: absolute; right: .6rem; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 2.2px solid var(--red); border-bottom: 2.2px solid var(--red);
  transform: rotate(45deg); transform-origin: center;
  transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }

.faq__body { padding: 0 2.5rem 1.5rem 0; }
.faq__body p { margin: 0; color: var(--text-mute); font-size: .97rem; }
.faq__item[open] .faq__body { animation: faqIn .35s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ═══ Testimonial ══════════════════════════════════════ */

.quote-sec { background: var(--paper); padding-top: 0; }
.quote {
  position: relative; margin: 0 auto; max-width: 860px; text-align: center;
  background: var(--paper-2); border-radius: var(--r);
  padding: clamp(2.6rem, 6vw, 4.2rem) clamp(1.6rem, 5vw, 4rem);
  border: 1px solid var(--line);
}
.quote__mark { font-size: 3rem; color: var(--red); opacity: .2; margin-bottom: .6rem; }
.quote blockquote {
  margin: 0 0 1.7rem;
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 600; letter-spacing: -.025em; line-height: 1.4;
}
.quote figcaption strong { display: block; font-size: .98rem; }
.quote figcaption span   { font-size: .86rem; color: var(--text-mute); }

/* ═══ Reviews ══════════════════════════════════════════ */

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.review {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}
.review__stars {
  color: var(--red);
  letter-spacing: 3px;
  font-size: 1.05rem;
  line-height: 1;
  margin-bottom: .9rem;
}
.review blockquote {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -.01em;
}
.review figcaption { margin-top: auto; padding-top: 1.2rem; }
.review figcaption strong { display: block; font-size: .95rem; }
.review figcaption span   { font-size: .84rem; color: var(--text-mute); }

.review--cta {
  background: var(--ink);
  color: #fff;
  justify-content: center;
}
.review--cta h3 { color: #fff; font-size: 1.2rem; margin-bottom: .55rem; }
.review--cta p  { color: rgba(255,255,255,.72); font-size: .95rem; margin: 0 0 1.4rem; }

/* ═══ Service area ═════════════════════════════════════ */

.area__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.area__copy h2 { margin-bottom: 1.3rem; }
.area__tags {
  list-style: none; margin: 1.8rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .55rem;
}
.area__tags li {
  font-size: .84rem; font-weight: 600;
  padding: .45em 1em; border-radius: 100px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.85);
}
.area__map .ph { border-color: rgba(255,255,255,.2); background: linear-gradient(150deg, var(--ink-3), var(--ink-2)); }
.area__map .ph::after { color: rgba(255,255,255,.3); }

/* ═══ Contact ══════════════════════════════════════════ */

.contact__grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: start;
}
.contact__copy h2 { margin-bottom: 0; }

.contact__list { list-style: none; margin: 2.4rem 0; padding: 0; display: grid; gap: 1.3rem; }
.contact__list li { display: flex; gap: 1rem; align-items: center; }
.contact__list svg {
  flex-shrink: 0; font-size: 1.15rem; color: var(--red);
  width: 42px; height: 42px; padding: 11px;
  background: rgba(210,31,38,.08); border-radius: 11px;
}
.contact__list span {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute);
}
.contact__list a, .contact__list strong { font-weight: 700; font-size: 1rem; letter-spacing: -.01em; }
.contact__list a:hover { color: var(--red); }

.contact__owner {
  padding: 1.2rem 1.4rem; border-left: 3px solid var(--red);
  background: var(--paper-2); border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .94rem; color: var(--text-mute); margin: 0;
}
.contact__owner strong { color: var(--text); }

/* ═══ Form ═════════════════════════════════════════════ */

.form {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: clamp(1.6rem, 3.5vw, 2.4rem);
  box-shadow: var(--shadow);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field { display: block; margin-bottom: 1rem; }
.field > span {
  display: block; margin-bottom: .45rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--text-mute);
}
.field b { color: var(--red); }

.field input, .field select, .field textarea {
  width: 100%; padding: .85em 1em;
  font-family: inherit; font-size: .97rem; color: var(--text);
  background: var(--paper-2);
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: var(--paper);
  border-color: var(--red); box-shadow: 0 0 0 4px rgba(210,31,38,.1);
}
.field input:user-invalid, .field select:user-invalid { border-color: var(--red); }

.form .btn { margin-top: .6rem; }
.form__note {
  margin: .9rem 0 0; text-align: center;
  font-size: .82rem; color: var(--text-mute);
}
.form__status { margin: .9rem 0 0; text-align: center; font-size: .9rem; font-weight: 600; }
.form__status.is-ok  { color: #17803d; }
.form__status.is-err { color: var(--red); }

/* ═══ Footer ═══════════════════════════════════════════ */

.footer { background: var(--ink); color: rgba(255,255,255,.62); padding: clamp(3.4rem, 6vw, 5rem) 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2.6rem; padding-bottom: 3.2rem;
}
.footer__brand .logo { margin-bottom: 1.1rem; }
.footer__brand .logo__text { color: #fff; }
.footer__brand .logo__text em { color: var(--red); }
.footer__brand p { font-size: .92rem; max-width: 34ch; }

.footer__social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer__social a {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 10px; background: rgba(255,255,255,.07); color: #fff; font-size: 1.05rem;
  transition: background .25s, transform .25s var(--ease);
}
.footer__social a:hover { background: var(--red); transform: translateY(-2px); }

.footer__col h4 {
  color: #fff; font-size: .78rem; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 1.1rem;
}
.footer__col a, .footer__col p {
  display: block; font-size: .9rem; margin: 0 0 .6rem;
  transition: color .2s;
}
.footer__col a:hover { color: #fff; }
.footer__hours { color: rgba(255,255,255,.45); }

.footer__bar {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem;
  padding-top: 1.6rem; padding-bottom: 1.6rem;
  border-top: 1px solid var(--line-dark);
  font-size: .82rem; color: rgba(255,255,255,.4);
}
.footer__bar p { margin: 0; }

/* ═══ Sticky mobile call bar ═══════════════════════════ */

.callbar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  align-items: center; justify-content: center; gap: .6rem;
  padding: 1.05rem; background: var(--red); color: #fff;
  font-weight: 800; letter-spacing: -.01em;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}

/* ═══ Reveal animation ═════════════════════════════════ */

/* Content is visible by default; JS adds .js to opt into the animation, so a
   JS failure degrades to a plain visible page rather than a blank one. */
.js .reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* ═══ Responsive ═══════════════════════════════════════ */

@media (max-width: 1000px) {
  .why__grid, .area__grid, .contact__grid, .faq__grid { grid-template-columns: 1fr; }
  .faq__intro { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .trust__inner { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .gallery__item, .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 70px; }
  .nav__inner { height: 66px; gap: 1rem; }
  .nav__call  { display: none; }
  .nav__toggle { display: flex; }
  /* The sticky bottom call bar carries the CTA on mobile, so the nav button is
     redundant here — and keeping it pushes the menu toggle off-screen. */
  .nav__actions { margin-left: auto; }
  .nav__actions .btn--primary { display: none; }
  .logo__text { font-size: .95rem; }

  .nav__links {
    position: fixed; inset: 66px 0 auto; flex-direction: column; gap: 0;
    background: rgba(11,11,13,.97); backdrop-filter: blur(20px);
    padding: 1rem clamp(20px, 5vw, 40px) 1.6rem;
    transform: translateY(-120%); transition: transform .4s var(--ease);
    border-bottom: 1px solid var(--line-dark);
  }
  .nav.is-open .nav__links { transform: none; }
  .nav__links a, .nav.is-stuck .nav__links a { color: #fff; padding: .95rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }

  .hero { min-height: auto; padding: 130px 0 100px; }
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__badges { gap: 1.6rem 2.2rem; }

  .gallery { grid-template-columns: 1fr; }
  .gallery__item, .gallery__item--wide { grid-column: span 1; }

  .ba { aspect-ratio: 4 / 3; }
  .ba__grip { width: 40px; height: 40px; }
  .faq__item summary { font-size: .98rem; padding-right: 2.4rem; }

  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bar { justify-content: center; text-align: center; }

  .callbar { display: flex; }
  body { padding-bottom: 60px; }
}

@media (max-width: 420px) {
  .trust__inner { grid-template-columns: 1fr; }
}

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

@media print {
  .nav, .callbar, .hero__scroll, .form { display: none; }
  body { color: #000; }
}
