/* =========================================================
   Standen Auctions LLC — Global Stylesheet
   Elyria, Ohio | Serving Lorain County & Northern Ohio
   ========================================================= */

:root {
  --navy:        #0c1a2b;
  --navy-2:      #12253b;
  --navy-3:      #1b3552;
  --gold:        #c9a24b;
  --gold-light:  #e3c878;
  --gold-deep:   #a9842f;
  --cream:       #f8f4ec;
  --cream-2:     #efe7d8;
  --ink:         #17202a;
  --muted:       #5c6773;
  --line:        rgba(201,162,75,.28);
  --white:       #ffffff;
  --shadow-sm:   0 4px 14px rgba(12,26,43,.08);
  --shadow-md:   0 14px 40px rgba(12,26,43,.14);
  --shadow-lg:   0 30px 70px rgba(12,26,43,.22);
  --radius:      14px;
  --radius-lg:   22px;
  --maxw:        1180px;
  --ease:        cubic-bezier(.22,.61,.36,1);
  --font-head:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.4px; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
p  { color: var(--muted); }
a  { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .8rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--gold); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--gold-light); }

.lede { font-size: 1.16rem; color: var(--muted); max-width: 62ch; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold); --fg: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.9rem; font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  border-radius: 60px; background: var(--bg); color: var(--fg);
  border: 2px solid var(--bg); cursor: pointer; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  box-shadow: 0 10px 26px rgba(201,162,75,.32);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(201,162,75,.42); }
.btn:active { transform: translateY(-1px); }
.btn.ghost { --bg: transparent; --fg: var(--cream); border-color: rgba(248,244,236,.5); box-shadow: none; }
.btn.ghost:hover { background: rgba(248,244,236,.1); border-color: var(--cream); box-shadow: none; }
.btn.dark { --bg: var(--navy); --fg: var(--cream); box-shadow: 0 10px 26px rgba(12,26,43,.28); }
.btn.dark:hover { box-shadow: 0 16px 36px rgba(12,26,43,.36); }
.btn.lg { padding: 1.1rem 2.3rem; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(9,20,33,.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 8px 30px rgba(0,0,0,.28);
  padding: 10px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu > .btn { display: none; } /* redundant on desktop (phone shows in header); appears in mobile drawer */
.brand { display: flex; align-items: center; gap: .8rem; }
.brand .mark { flex: 0 0 auto; }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt .name { font-family: var(--font-head); font-weight: 700; font-size: 1.28rem; color: var(--cream); letter-spacing: .3px; }
.brand-txt .sub { font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-light); margin-top: 5px; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(248,244,236,.85); font-weight: 500; font-size: .96rem; position: relative; padding: 4px 0;
  transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-phone { color: var(--cream); font-weight: 700; display: inline-flex; align-items: center; gap: .45rem; white-space: nowrap; }
.nav-phone svg { width: 16px; height: 16px; color: var(--gold); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 2px; background: var(--cream); border-radius: 2px; transition: .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: var(--cream); overflow: hidden; padding: 140px 0 90px;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1200px 700px at 75% 15%, rgba(201,162,75,.18), transparent 60%),
    linear-gradient(160deg, #0a1626 0%, #0d1f34 45%, #0a1524 100%);
}
.hero-bg .grain { position: absolute; inset: 0; opacity: .5; }
.hero-inner { max-width: 760px; position: relative; }
.hero h1 { color: var(--cream); }
.hero h1 .accent { color: var(--gold-light); font-style: italic; }
.hero-sub { font-size: 1.22rem; color: rgba(248,244,236,.82); margin: 1.6rem 0 2.2rem; max-width: 58ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 3rem; }
.hero-badge { display: flex; align-items: center; gap: .6rem; font-size: .92rem; color: rgba(248,244,236,.8); }
.hero-badge svg { width: 20px; height: 20px; color: var(--gold-light); flex: 0 0 auto; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  color: rgba(248,244,236,.6); font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue .mouse { width: 22px; height: 36px; border: 2px solid rgba(248,244,236,.5); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: var(--gold-light); border-radius: 2px; animation: wheel 1.6s infinite;
}
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translate(-50%,12px); } }

/* ---------- Marquee ticker ---------- */
.ticker { background: var(--gold); color: var(--navy); overflow: hidden; white-space: nowrap; padding: 12px 0; font-weight: 700; }
.ticker-track { display: inline-flex; gap: 3rem; animation: ticker 30s linear infinite; will-change: transform; }
.ticker-track span { display: inline-flex; align-items: center; gap: .8rem; letter-spacing: .04em; text-transform: uppercase; font-size: .84rem; }
.ticker-track span::before { content: "◆"; color: var(--navy); opacity: .5; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: clamp(72px, 10vw, 130px) 0; }
.section.tint { background: var(--white); }
.section.navy { background: var(--navy); color: var(--cream); }
.section.navy h1, .section.navy h2, .section.navy h3 { color: var(--cream); }
.section.navy p { color: rgba(248,244,236,.78); }
.section-head { max-width: 720px; margin-bottom: 3.4rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal].d1 { transition-delay: .1s; }
[data-reveal].d2 { transition-delay: .2s; }
[data-reveal].d3 { transition-delay: .3s; }
[data-reveal].d4 { transition-delay: .4s; }
[data-reveal].left { transform: translateX(-46px); }
[data-reveal].right { transform: translateX(46px); }
[data-reveal].left.in, [data-reveal].right.in { transform: none; }
[data-reveal].scale { transform: scale(.92); }
[data-reveal].scale.in { transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
}

/* ---------- Stat band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { text-align: center; padding: 1.2rem; }
.stat .num { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; color: var(--gold-light); line-height: 1; }
.stat .lbl { margin-top: .6rem; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(248,244,236,.72); }

/* ---------- Feature / service cards ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid rgba(12,26,43,.06); border-radius: var(--radius-lg);
  padding: 2.2rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card:hover::after { transform: scaleX(1); }
.card .ic {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.4rem;
  background: linear-gradient(150deg, var(--navy), var(--navy-3)); color: var(--gold-light);
}
.card .ic svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .7rem; }
.card p { font-size: .98rem; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; }
.frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative;
  background: linear-gradient(150deg, var(--navy-2), var(--navy));
}
.frame.tall { aspect-ratio: 4/5; }
.frame.wide { aspect-ratio: 4/3; }
.frame .badge-float {
  position: absolute; bottom: -22px; right: -18px; background: var(--gold); color: var(--navy);
  padding: 1.1rem 1.4rem; border-radius: 16px; box-shadow: var(--shadow-md); text-align: center;
}
.frame .badge-float .b { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; line-height: 1; }
.frame .badge-float .s { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }

.check-list { list-style: none; margin: 1.6rem 0; display: grid; gap: .9rem; }
.check-list li { display: flex; gap: .8rem; align-items: flex-start; color: var(--ink); font-weight: 500; }
.check-list li svg { width: 22px; height: 22px; color: var(--gold-deep); flex: 0 0 auto; margin-top: 2px; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step .n {
  font-family: var(--font-head); font-size: 3.2rem; font-weight: 800; color: var(--gold);
  opacity: .3; line-height: 1; margin-bottom: .4rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.step p { font-size: .94rem; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 2.1rem; right: -.8rem; width: 1.6rem; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
}

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.4rem; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(12,26,43,.06); position: relative; height: 100%;
}
.quote-card .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 1rem; font-size: 1.05rem; }
.quote-card blockquote { font-size: 1.04rem; color: var(--ink); line-height: 1.7; }
.quote-card .who { margin-top: 1.4rem; font-weight: 700; color: var(--navy); }
.quote-card .who span { display: block; font-weight: 500; color: var(--muted); font-size: .88rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(150deg, var(--navy), var(--navy-3)); color: var(--cream); text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 50% -10%, rgba(201,162,75,.22), transparent 60%);
}
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(248,244,236,.82); max-width: 60ch; margin: 1rem auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form-wrap { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.form-grid { display: grid; grid-template-columns: .9fr 1.1fr; }
.form-side { background: linear-gradient(155deg, var(--navy), var(--navy-3)); color: var(--cream); padding: clamp(2rem, 4vw, 3rem); }
.form-side h3 { color: var(--cream); margin-bottom: 1rem; }
.form-side p { color: rgba(248,244,236,.8); }
.form-side .contact-line { display: flex; align-items: center; gap: .8rem; margin-top: 1.3rem; color: var(--cream); font-weight: 600; }
.form-side .contact-line svg { width: 20px; height: 20px; color: var(--gold-light); flex: 0 0 auto; }
.form-side .contact-line span { display: block; font-weight: 400; font-size: .82rem; color: rgba(248,244,236,.65); }
.form-body { padding: clamp(2rem, 4vw, 3rem); }
.field { margin-bottom: 1.2rem; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: .86rem; color: var(--navy); margin-bottom: .45rem; }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid rgba(12,26,43,.14); border-radius: 12px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: var(--cream); transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(201,162,75,.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 1rem; }
.form-body .btn { width: 100%; }

/* ---------- Info tiles / contact ---------- */
.info-tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.info-tile { background: var(--white); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(12,26,43,.05); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.info-tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info-tile .ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: rgba(201,162,75,.14); color: var(--gold-deep); margin-bottom: 1rem; }
.info-tile .ic svg { width: 24px; height: 24px; }
.info-tile h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.info-tile a { color: var(--gold-deep); font-weight: 600; }
.info-tile p { font-size: .95rem; }

/* ---------- Upcoming auction cards ---------- */
.auction-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(12,26,43,.06); transition: transform .5s var(--ease), box-shadow .5s var(--ease); display: flex; flex-direction: column; }
.auction-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.auction-card .cover { aspect-ratio: 16/10; position: relative; background: linear-gradient(150deg, var(--navy-2), var(--navy)); display: grid; place-items: center; color: var(--gold-light); }
.auction-card .cover .tag { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy); font-weight: 700; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; padding: .4rem .8rem; border-radius: 60px; }
.auction-card .cover .tag.past { background: var(--navy-3); color: var(--cream); }
.auction-card .body { padding: 1.6rem 1.7rem 1.9rem; display: flex; flex-direction: column; flex: 1; }
.auction-card .date { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--gold-deep); font-size: .86rem; margin-bottom: .6rem; }
.auction-card .date svg { width: 16px; height: 16px; }
.auction-card h3 { margin-bottom: .5rem; }
.auction-card .meta { display: flex; align-items: center; gap: .5rem; color: var(--muted); font-size: .9rem; margin-bottom: .9rem; }
.auction-card .meta svg { width: 16px; height: 16px; color: var(--gold-deep); }
.auction-card p { font-size: .95rem; flex: 1; }
.auction-card .foot { margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid rgba(12,26,43,.08); display: flex; justify-content: space-between; align-items: center; }
.auction-card .foot a { color: var(--navy); font-weight: 700; display: inline-flex; align-items: center; gap: .4rem; }
.auction-card .foot a svg { width: 16px; height: 16px; transition: transform .3s; }
.auction-card .foot a:hover svg { transform: translateX(4px); }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; padding: 190px 0 90px; color: var(--cream); overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(900px 500px at 80% 10%, rgba(201,162,75,.18), transparent 60%), linear-gradient(160deg, #0a1626, #0d1f34);
}
.page-hero .crumbs { font-size: .84rem; color: rgba(248,244,236,.6); margin-bottom: 1rem; letter-spacing: .04em; }
.page-hero .crumbs a { color: var(--gold-light); }
.page-hero h1 { color: var(--cream); max-width: 18ch; }
.page-hero p { color: rgba(248,244,236,.82); max-width: 60ch; margin-top: 1.1rem; font-size: 1.14rem; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { max-width: 820px; margin: 0 auto; }
.acc-item { border-bottom: 1px solid rgba(12,26,43,.12); }
.acc-q { width: 100%; text-align: left; background: none; border: 0; padding: 1.4rem 0; font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.acc-q .plus { flex: 0 0 auto; width: 26px; height: 26px; position: relative; }
.acc-q .plus::before, .acc-q .plus::after { content: ""; position: absolute; background: var(--gold-deep); transition: transform .3s var(--ease); }
.acc-q .plus::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.acc-q .plus::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.acc-item.open .acc-q .plus::after { transform: translateX(-50%) scaleY(0); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc-a p { padding: 0 0 1.4rem; }

/* ---------- Map / embed ---------- */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 4px solid var(--white); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: #081221; color: rgba(248,244,236,.72); padding: 80px 0 30px; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.foot-brand .name { font-family: var(--font-head); font-size: 1.5rem; color: var(--cream); font-weight: 700; }
.foot-brand .sub { color: var(--gold-light); font-size: .7rem; letter-spacing: .24em; text-transform: uppercase; margin: 6px 0 1.2rem; }
.foot-brand p { font-size: .94rem; max-width: 38ch; }
.foot-col h4 { color: var(--cream); font-family: var(--font-body); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.2rem; }
.foot-col ul { list-style: none; display: grid; gap: .7rem; }
.foot-col ul a { color: rgba(248,244,236,.7); font-size: .95rem; transition: color .25s, padding .25s; }
.foot-col ul a:hover { color: var(--gold-light); padding-left: 5px; }
.foot-contact li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .9rem; font-size: .95rem; }
.foot-contact li svg { width: 18px; height: 18px; color: var(--gold-light); flex: 0 0 auto; margin-top: 3px; }
.foot-contact a { color: rgba(248,244,236,.82); }
.foot-contact a:hover { color: var(--gold-light); }
.foot-bottom { border-top: 1px solid rgba(248,244,236,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .84rem; color: rgba(248,244,236,.55); }
.foot-bottom .badges { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.foot-bottom .badges span { display: inline-flex; align-items: center; gap: .4rem; }
.foot-bottom .badges svg { width: 15px; height: 15px; color: var(--gold-light); }

/* ---------- Floating call button ---------- */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 90; background: var(--gold); color: var(--navy); width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(201,162,75,.5); transition: transform .35s var(--ease); animation: pulse 2.6s infinite; }
.fab:hover { transform: scale(1.08); }
.fab svg { width: 26px; height: 26px; }
@keyframes pulse { 0% { box-shadow: 0 12px 30px rgba(201,162,75,.5), 0 0 0 0 rgba(201,162,75,.5); } 70% { box-shadow: 0 12px 30px rgba(201,162,75,.5), 0 0 0 16px rgba(201,162,75,0); } 100% { box-shadow: 0 12px 30px rgba(201,162,75,.5), 0 0 0 0 rgba(201,162,75,0); } }

/* ---------- Toast / thank you ---------- */
.alert { padding: 1rem 1.2rem; border-radius: 12px; font-weight: 600; margin-bottom: 1.4rem; display: none; }
.alert.ok { background: rgba(46,125,50,.12); color: #2e7d32; border: 1px solid rgba(46,125,50,.3); }
.alert.show { display: block; }

/* ---------- Utility ---------- */
.pill { display: inline-flex; align-items: center; gap: .5rem; background: rgba(201,162,75,.14); color: var(--gold-deep); font-weight: 600; font-size: .82rem; padding: .4rem .9rem; border-radius: 60px; }
.divider-orn { display: flex; align-items: center; justify-content: center; gap: .8rem; color: var(--gold); margin: 0 auto 1.2rem; }
.divider-orn span { height: 1px; width: 46px; background: var(--gold); opacity: .5; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .form-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-cta .nav-phone { display: none; }
  .burger { display: flex; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); background: var(--navy);
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0; padding: 100px 32px 40px;
    transform: translateX(100%); transition: transform .45s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,.4);
    display: flex; z-index: 105;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu .nav-links { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 1rem 0; font-size: 1.1rem; border-bottom: 1px solid rgba(248,244,236,.1); }
  .nav-menu a::after { display: none; }
  .nav-menu > .btn { display: inline-flex; margin-top: 1.4rem; width: 100%; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(6,14,24,.55); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: .35s; z-index: 104; }
  .nav-overlay.open { opacity: 1; visibility: visible; }
}
@media (max-width: 720px) {
  .grid.cols-3, .grid.cols-4, .grid.cols-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .info-tiles { grid-template-columns: 1fr; }
  .field.row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  body { font-size: 16px; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .hero-badges { gap: 1rem; }
}
