/* ==========================================================================
   Classic Search & Rescue — styles
   Palette: garage-at-dusk. Ink blacks, bone cream, rust orange, brass.
   ========================================================================== */

:root {
  --ink: #0e0d0c;
  --ink-2: #151311;
  --panel: #1c1917;
  --line: rgba(237, 228, 211, .12);
  --line-strong: rgba(237, 228, 211, .24);
  --bone: #ede4d3;
  --bone-2: #f6f0e4;
  --muted: #a89f90;
  --rust: #d2602f;
  --rust-deep: #9e3f1c;
  --brass: #c99a6a; /* copper, from the logo */

  --serif: "Bodoni Moda", "Didot", Georgia, serif;
  --sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Barlow Condensed", "Arial Narrow", sans-serif; /* spec-plate labels */

  --wrap: 1200px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 14px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font: 400 17px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; }
em { font-style: italic; color: var(--brass); }
.muted { color: var(--muted); }
.mono { font-family: var(--mono); font-weight: 600; font-size: 14px; letter-spacing: .16em; text-transform: uppercase; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--bone); color: var(--ink); padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.section--dark { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* grain overlay for a film-like finish */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 60; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--mono); font-weight: 600; font-size: 14px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 22px; display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow--light { color: var(--bone-2); }
.h2 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(38px, 5.6vw, 72px);
  line-height: 1.04; letter-spacing: -.015em; margin-bottom: 28px;
}
.h2 em { font-weight: 400; }
.h3 { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 30px); line-height: 1.15; letter-spacing: -.01em; margin: 6px 0 12px; }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--rust); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg); color: var(--fg); text-decoration: none; border: 1px solid transparent;
  font: 500 15px/1 var(--sans); letter-spacing: .01em;
  padding: 17px 26px; border-radius: 999px; cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s;
}
.btn:hover { background: #e06b37; transform: translateY(-2px); }
.btn--sm { padding: 12px 20px; font-size: 14px; }
.btn--ghost { --bg: transparent; --fg: var(--bone); border-color: var(--line-strong); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(237,228,211,.08); border-color: var(--bone); }
.btn--light { --bg: var(--bone-2); --fg: var(--ink); }
.btn--light:hover { background: #fff; }
.btn--full { width: 100%; }

/* ---------- nav ---------- */
.nav { position: fixed; inset: 0 0 auto; z-index: 50; transition: background .4s var(--ease), border-color .4s; border-bottom: 1px solid transparent; }
.nav.is-scrolled { background: rgba(14,13,12,.82); backdrop-filter: blur(14px) saturate(140%); border-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; max-width: calc(var(--wrap) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--bone); }
.brand__logo { height: 58px; width: auto; }
.brand--footer img { width: 220px; height: auto; }
.nav__links { display: flex; gap: 32px; }
.nav__links a { text-decoration: none; font-size: 14px; color: rgba(237,228,211,.8); position: relative; padding: 6px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--rust); transition: right .35s var(--ease); }
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { right: 0; }
.nav__cta { display: flex; align-items: center; gap: 20px; }
.nav__phone { font-family: var(--mono); font-weight: 600; font-size: 15px; letter-spacing: .08em; text-decoration: none; color: var(--bone); }
.nav__toggle { display: none; width: 44px; height: 44px; background: none; border: 1px solid var(--line-strong); border-radius: 50%; cursor: pointer; position: relative; }
.nav__toggle span { position: absolute; left: 13px; right: 13px; height: 1.5px; background: var(--bone); transition: transform .3s var(--ease); }
.nav__toggle span:first-child { top: 17px; } .nav__toggle span:last-child { top: 25px; }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { display: flex; flex-direction: column; padding: 8px var(--gutter) 28px; background: rgba(14,13,12,.97); border-bottom: 1px solid var(--line); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a:not(.btn) { font-family: var(--serif); font-size: 28px; padding: 10px 0; text-decoration: none; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 22px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 60%; transform: scale(1.08); animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,13,12,.55) 0%, rgba(14,13,12,0) 22%),
    linear-gradient(90deg, rgba(14,13,12,.88) 0%, rgba(14,13,12,.55) 38%, rgba(14,13,12,0) 70%),
    linear-gradient(0deg, var(--ink) 0%, rgba(14,13,12,.4) 28%, rgba(14,13,12,0) 50%);
}
.hero__content { padding-top: 140px; padding-bottom: 56px; }
.hero__title {
  font-family: var(--serif); font-weight: 400; font-size: clamp(50px, 8vw, 118px);
  line-height: .98; letter-spacing: -.025em; max-width: 11ch; margin-bottom: 30px;
}
.hero__title em { font-weight: 400; }
.hero__lede { max-width: 520px; font-size: clamp(16px, 1.4vw, 19px); color: rgba(237,228,211,.82); margin-bottom: 38px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); padding-top: 22px; padding-bottom: 30px; gap: 24px; font-size: 14px; color: rgba(237,228,211,.85); }
.hero__meta .mono { display: block; color: var(--muted); font-size: 13px; margin-bottom: 4px; }

/* ---------- marquee ---------- */
.marquee { border-bottom: 1px solid var(--line); overflow: hidden; padding: 22px 0; background: var(--ink); }
.marquee__track { display: flex; align-items: center; gap: 34px; width: max-content; animation: marquee 48s linear infinite; }
.marquee span { font-family: var(--serif); font-style: italic; font-size: clamp(22px, 2.4vw, 30px); color: rgba(237,228,211,.7); white-space: nowrap; }
.marquee i { width: 8px; height: 8px; border-radius: 50%; background: var(--rust); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- story ---------- */
.story__grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.story__img { margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; }
.story__img::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--line); border-radius: inherit; }
.story__copy > p { color: rgba(237,228,211,.8); max-width: 560px; }
.pillars { list-style: none; padding: 0; margin: 40px 0 0; border-top: 1px solid var(--line); }
.pillars li { display: grid; grid-template-columns: 48px 1fr; padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 15px; }
.pillars li .mono { color: var(--rust); padding-top: 4px; }
.pillars p { margin: 0; }
.pillars strong { color: var(--bone); font-weight: 500; margin-right: 6px; }

/* ---------- section heads ---------- */
.section__head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 80px); }
.section__head--split { max-width: none; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: end; }
.section__lede { color: var(--muted); font-size: 18px; max-width: 520px; }

/* ---------- before / after ---------- */
.file { display: grid; grid-template-columns: 1fr 340px; gap: 0; margin-bottom: 56px; background: var(--panel); border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px); overflow: hidden; }
.file:last-child { margin-bottom: 0; }
.file--flip { grid-template-columns: 340px 1fr; }
.file--flip .ba { order: 2; }
.ba { position: relative; aspect-ratio: 16 / 9; overflow: hidden; user-select: none; touch-action: pan-y; background: #000; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__before-wrap { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: var(--bone-2); transform: translateX(-1px); pointer-events: none; box-shadow: 0 0 20px rgba(0,0,0,.4); }
.ba__handle span {
  position: absolute; top: 50%; left: 50%; width: 54px; height: 54px; transform: translate(-50%, -50%);
  border-radius: 50%; background: rgba(14,13,12,.55); backdrop-filter: blur(8px); border: 1.5px solid var(--bone-2);
}
.ba__handle span::before, .ba__handle span::after { content: ""; position: absolute; top: 50%; width: 8px; height: 8px; border: solid var(--bone-2); border-width: 0 0 1.5px 1.5px; }
.ba__handle span::before { left: 14px; transform: translateY(-50%) rotate(45deg); }
.ba__handle span::after { right: 14px; transform: translateY(-50%) rotate(-135deg); }
.ba__range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; -webkit-appearance: none; appearance: none; }
.ba__range:focus-visible + * { outline: none; }
.ba:has(.ba__range:focus-visible) .ba__handle span { box-shadow: 0 0 0 3px var(--brass); }
.ba__tag { position: absolute; top: 18px; padding: 8px 12px; border-radius: 999px; background: rgba(14,13,12,.6); backdrop-filter: blur(6px); font-size: 13px; pointer-events: none; }
.ba__tag--before { left: 18px; color: #f0b08f; }
.ba__tag--after { right: 18px; color: var(--bone-2); }
.file__card { padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; justify-content: center; }
.file__no { color: var(--rust); }
.file__specs { margin: 18px 0 0; }
.file__specs div { padding: 14px 0; border-top: 1px solid var(--line); }
.file__specs dt { font-family: var(--mono); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.file__specs dd { margin: 0; font-size: 15px; color: rgba(237,228,211,.88); line-height: 1.55; }
.status { display: inline-flex; align-items: center; gap: 8px; color: #b9d8a8 !important; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #7fbf6a; box-shadow: 0 0 0 4px rgba(127,191,106,.18); }

/* ---------- services ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.feature { background: var(--panel); border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px); overflow: hidden; transition: border-color .4s, transform .5s var(--ease); }
.feature:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.feature__img { aspect-ratio: 16 / 10; overflow: hidden; }
.feature__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.feature:hover .feature__img img { transform: scale(1.05); }
.feature__body { padding: 28px 30px 30px; }
.feature__body .mono { color: var(--rust); }
.feature__body p:last-child { color: var(--muted); margin: 0; font-size: 16px; }
.service-list { list-style: none; padding: 0; margin: 64px 0 0; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.service-list li { padding: 26px 24px 26px 0; border-bottom: 1px solid var(--line); }
.service-list h4 { font-family: var(--serif); font-size: 21px; margin-bottom: 6px; }
.service-list p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* ---------- process ---------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(7, 1fr); gap: 0; counter-reset: s; position: relative; }
.steps::before { content: ""; position: absolute; top: 30px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, var(--rust), var(--brass) 60%, var(--line)); }
.step { padding-right: 20px; position: relative; }
.step__no { display: grid; place-items: center; width: 60px; height: 60px; border-radius: 50%; background: var(--ink-2); border: 1px solid var(--line-strong); font-family: var(--mono); font-size: 14px; color: var(--brass); margin-bottom: 26px; position: relative; transition: background .4s, color .4s, border-color .4s; }
.step:hover .step__no { background: var(--rust); color: #fff; border-color: var(--rust); }
.step h3 { font-family: var(--serif); font-size: 24px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 0; }

/* ---------- florida ---------- */
.florida { background:
  radial-gradient(900px 500px at 90% 10%, rgba(210,96,47,.14), transparent 60%),
  radial-gradient(700px 500px at 0% 100%, rgba(201,165,106,.08), transparent 60%), var(--ink); }
.florida__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.florida__grid > div > p { color: rgba(237,228,211,.8); max-width: 520px; }
.shield-list { list-style: none; margin: 0; padding: 0; }
.shield-list li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.shield-list li:first-child { border-top: 1px solid var(--line); }
.shield-list svg { width: 36px; height: 36px; fill: none; stroke: var(--brass); stroke-width: 1.3; }
.shield-list h4 { font-family: var(--serif); font-size: 22px; margin-bottom: 4px; }
.shield-list p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- sell ---------- */
.section--rust { background: linear-gradient(135deg, var(--rust-deep) 0%, #b44b22 55%, #c9642f 100%); color: var(--bone-2); overflow: hidden; }
.section--rust::before { content: ""; position: absolute; inset: 0; opacity: .25; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='r'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.018' numOctaves='4'/%3E%3CfeColorMatrix values='0 0 0 0 .3  0 0 0 0 .12  0 0 0 0 .05  0 0 0 1.4 -.5'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23r)'/%3E%3C/svg%3E"); }
.section--rust em { color: #ffe3c4; }
.sell__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: center; position: relative; }
.sell__grid p { color: rgba(255,244,230,.9); max-width: 560px; }
.sell__cta { background: rgba(14,13,12,.28); border: 1px solid rgba(255,240,220,.2); border-radius: calc(var(--radius) + 4px); padding: clamp(26px, 3vw, 40px); backdrop-filter: blur(4px); }
.mini-steps { list-style: none; padding: 0; margin: 0 0 28px; }
.mini-steps li { display: grid; grid-template-columns: 38px 1fr; align-items: center; gap: 12px; padding: 12px 0; font-size: 16px; }
.mini-steps span { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,240,220,.5); display: grid; place-items: center; font-family: var(--mono); font-size: 13px; }

/* ---------- cruise ---------- */
.cruise { position: relative; min-height: clamp(460px, 60vw, 760px); display: flex; align-items: flex-start; overflow: hidden; isolation: isolate; }
.cruise > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% 70%; z-index: -2; }
.cruise__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(14,13,12,.85) 0%, rgba(14,13,12,.35) 30%, rgba(14,13,12,0) 50%), linear-gradient(0deg, rgba(14,13,12,.6), transparent 25%); }
.cruise__copy { padding-top: clamp(48px, 6vw, 90px); }
.cruise .eyebrow { color: #ffd9b0; }
.cruise__quote { font-family: var(--serif); font-weight: 400; font-size: clamp(42px, 6.4vw, 92px); line-height: 1; letter-spacing: -.03em; max-width: 10ch; margin: 0; }
.cruise__quote em { color: #ffd9b0; }

/* ---------- faq ---------- */
.faq__grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.faq__grid header { position: sticky; top: 110px; }
.faq__grid header a { color: var(--brass); }
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list details:first-child { border-top: 1px solid var(--line); }
.faq__list summary { list-style: none; cursor: pointer; padding: 24px 48px 24px 0; font-family: var(--serif); font-size: clamp(20px, 1.9vw, 24px); position: relative; }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-weight: 300; font-size: 28px; color: var(--rust); transition: transform .3s var(--ease); }
.faq__list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__list details p { color: var(--muted); padding-right: 48px; margin: -6px 0 26px; }

/* ---------- contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 7vw, 100px); }
.contact__info > p { color: rgba(237,228,211,.8); max-width: 460px; }
.contact__list { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 24px; margin: 38px 0; }
.contact__list dt { color: var(--muted); margin-bottom: 6px; font-size: 13px; }
.contact__list dd { margin: 0; font-size: 16px; }
.contact__list a { text-decoration: none; border-bottom: 1px solid var(--line-strong); word-break: break-word; }
.contact__list a:hover { border-color: var(--rust); }
.areas { color: var(--muted); font-size: 14px; line-height: 1.8; }
.areas .mono { color: var(--rust); margin-right: 8px; font-size: 13px; }

.form { background: var(--panel); border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px); padding: clamp(24px, 3.4vw, 44px); }
.form__type { border: 0; padding: 0; margin: 0 0 24px; display: flex; flex-wrap: wrap; gap: 10px; }
.form__type legend { color: var(--muted); margin-bottom: 14px; font-size: 13px; }
.form__type label { position: relative; cursor: pointer; }
.form__type input { position: absolute; opacity: 0; }
.form__type span { display: inline-block; padding: 11px 18px; border-radius: 999px; border: 1px solid var(--line-strong); font-size: 14px; transition: all .25s; }
.form__type input:checked + span { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.form__type input:focus-visible + span { outline: 2px solid var(--brass); outline-offset: 2px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__row--3 { grid-template-columns: .7fr 1fr 1fr; }
.field { display: block; margin-bottom: 16px; }
.field span { display: block; font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; background: var(--ink); border: 1px solid var(--line); border-radius: 10px;
  color: var(--bone); font: 16px/1.4 var(--sans); padding: 14px 16px; transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(168,159,144,.55); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(201,165,106,.15); }
.field input.is-invalid { border-color: #e0714a; }
.form .btn { margin-top: 8px; }
.form__note { font-size: 13px; margin: 16px 0 0; text-align: center; }
.form__note a { color: var(--brass); }
.form__status { margin: 12px 0 0; text-align: center; font-size: 15px; color: #b9d8a8; min-height: 1px; }
.form__status.is-error { color: #f0a080; }

/* ---------- footer ---------- */
.footer { padding: 80px 0 30px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer__tag { margin-top: 20px; max-width: 320px; font-size: 15px; }
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; align-content: start; }
.footer__nav a, .footer__contact a { text-decoration: none; color: rgba(237,228,211,.75); font-size: 15px; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--bone); }
.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.socials { display: flex; gap: 10px; margin-top: 10px; }
.socials a { width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: 50%; display: grid; place-items: center; transition: border-color .3s, background .3s; }
.socials a:hover { border-color: var(--rust); background: rgba(210,96,47,.12); }
.socials svg { width: 18px; height: 18px; fill: none; stroke: var(--bone); stroke-width: 1.5; }
.socials .fill { fill: var(--bone); stroke: none; }
.footer__base { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
.footer__base a { text-decoration: none; }

/* ---------- floating call button (mobile) ---------- */
.call-fab { display: none; position: fixed; right: 16px; bottom: 16px; z-index: 55; align-items: center; gap: 8px; padding: 14px 20px; border-radius: 999px; background: var(--rust); color: #fff; text-decoration: none; font-weight: 500; font-size: 15px; box-shadow: 0 10px 30px rgba(0,0,0,.45); transform: translateY(120px); transition: transform .5s var(--ease); }
.call-fab svg { width: 18px; height: 18px; fill: currentColor; }
.call-fab.is-visible { transform: none; }

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .steps { grid-template-columns: 1fr; gap: 0; }
  .steps::before { top: 0; bottom: 0; left: 30px; right: auto; width: 1px; height: auto; background: linear-gradient(180deg, var(--rust), var(--brass) 60%, var(--line)); }
  .step { display: grid; grid-template-columns: 60px 1fr; column-gap: 24px; padding: 0 0 34px; }
  .step__no { grid-row: span 2; margin: 0; }
  .step h3 { align-self: end; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .file, .file--flip { grid-template-columns: 1fr; }
  .file--flip .ba { order: 0; }
}
@media (max-width: 860px) {
  .nav__phone { display: none; }
  .story__grid, .florida__grid, .sell__grid, .faq__grid, .contact__grid, .section__head--split { grid-template-columns: 1fr; }
  .story__img { max-width: 520px; }
  .faq__grid header { position: static; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .hero__meta > div:last-child { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .call-fab { display: inline-flex; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav__cta .btn--sm { display: none; }
  .brand__logo { height: 42px; }
  .hero__shade { background: linear-gradient(180deg, rgba(14,13,12,.72) 0%, rgba(14,13,12,.6) 45%, rgba(14,13,12,.88) 72%, var(--ink) 100%); }
  .hero .eyebrow { font-size: 12px; letter-spacing: .14em; line-height: 1.6; }
  .hero .eyebrow::before { display: none; }
  .hero__bg img { object-position: 58% 50%; }
  .hero__actions .btn { flex: 1 1 100%; }
  .service-list { grid-template-columns: 1fr; }
  .form__row, .form__row--3 { grid-template-columns: 1fr; gap: 0; }
  .contact__list { grid-template-columns: 1fr; }
  .ba__handle span { width: 44px; height: 44px; }
  .ba { aspect-ratio: 4 / 3; }
  .footer__base { flex-direction: column; }
}

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