/* ===========================================================
   TyCorp Inc — Tyler Kane Appraisal | Shared Stylesheet
   Sonoran-desert palette. Distinct to this client.
   =========================================================== */

:root {
  --ink: #211a15;
  --ink-soft: #4a4038;
  --sand: #f6efe4;
  --sand-deep: #ece0cf;
  --paper: #fffdf9;
  --terracotta: #b14a2a;
  --terracotta-dk: #8f3a1f;
  --clay: #d27a45;
  --saguaro: #4d6149;
  --sky: #2c6e83;
  --gold: #c8923d;
  --line: #e2d6c3;
  --shadow: 0 18px 40px -22px rgba(33, 26, 21, 0.45);
  --shadow-sm: 0 8px 20px -14px rgba(33, 26, 21, 0.5);
  --radius: 18px;
  --radius-sm: 11px;
  --maxw: 1180px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); letter-spacing: -0.3px; }
h3 { font-size: 1.28rem; }
p { margin-bottom: 1rem; }
a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--terracotta-dk); }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 14px; display: inline-block;
}
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 1rem; padding: 14px 26px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--terracotta-dk); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--sand); }
.btn--light { background: var(--paper); color: var(--terracotta); }
.btn--light:hover { background: #fff; transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(246,239,228,0.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--ink); }
.brand .mark {
  width: 38px; height: 38px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  color: #fff; display: grid; place-items: center; font-size: 0.95rem; font-weight: 800; font-family: var(--font-body);
  box-shadow: var(--shadow-sm);
}
.brand small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.66rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 0.96rem; }
.nav-links a:hover { color: var(--terracotta); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-weight: 800; color: var(--ink); white-space: nowrap; }
.nav-phone:hover { color: var(--terracotta); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--ink); cursor: pointer; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--sand); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 460px at 88% -10%, rgba(210,122,69,0.20), transparent 60%),
    radial-gradient(700px 520px at -8% 110%, rgba(44,110,131,0.14), transparent 60%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; padding: 70px 0 60px; }
.hero h1 span { color: var(--terracotta); }
.hero .lead { margin: 18px 0 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-size: 0.83rem; font-weight: 700; color: var(--ink-soft);
}
.badge b { color: var(--terracotta); }

/* photo */
.hero-photo { position: relative; }
.photo-frame {
  position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4/5; background: linear-gradient(160deg, var(--sand-deep), var(--clay));
  border: 6px solid var(--paper);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame .placeholder {
  position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 24px;
  color: var(--ink); background: repeating-linear-gradient(135deg, var(--sand-deep), var(--sand-deep) 14px, #e6d8c4 14px, #e6d8c4 28px);
}
.photo-frame .placeholder span { font-weight: 700; font-size: 0.9rem; opacity: 0.78; }
.photo-tag {
  position: absolute; left: -14px; bottom: 22px; background: var(--ink); color: var(--sand);
  padding: 11px 16px; border-radius: 12px; font-size: 0.82rem; font-weight: 700; box-shadow: var(--shadow-sm);
}
.photo-tag b { color: var(--gold); display: block; font-size: 1rem; }

/* ---------- Address search ---------- */
.address-search {
  position: relative; z-index: 1; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); margin-top: -28px;
}
.address-search h3 { font-family: var(--font-body); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-soft); margin-bottom: 12px; }
.address-search form { display: flex; gap: 10px; flex-wrap: wrap; }
.address-search input {
  flex: 1; min-width: 220px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-size: 1rem; font-family: var(--font-body); background: var(--sand);
}
.address-search input:focus { outline: none; border-color: var(--terracotta); background: #fff; }
.api-note { font-size: 0.74rem; color: var(--ink-soft); margin-top: 9px; opacity: 0.85; }

/* keyless address autocomplete dropdown */
.address-search .ac-wrap { position: relative; flex: 1; min-width: 220px; }
.address-search .ac-wrap input { width: 100%; min-width: 0; }
.ac-list {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 60;
  list-style: none; margin: 0; padding: 6px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow);
  max-height: 280px; overflow: auto;
}
.ac-item { padding: 10px 12px; border-radius: 8px; font-size: 0.95rem; color: var(--ink); cursor: pointer; line-height: 1.35; }
.ac-item:hover, .ac-item.on { background: var(--sand-deep); }

/* ---------- Confirm-property modal ---------- */
.confirm-modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; }
.confirm-modal[hidden] { display: none; }
.confirm-backdrop { position: absolute; inset: 0; background: rgba(20,15,11,0.7); backdrop-filter: blur(3px); }
.confirm-dialog {
  position: relative; z-index: 1; width: 100%; max-width: 560px; background: var(--paper);
  border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; text-align: center;
  max-height: 92vh; overflow: auto;
}
.confirm-x {
  position: absolute; top: 12px; right: 14px; background: none; border: 0; font-size: 1.6rem;
  line-height: 1; color: var(--ink-soft); cursor: pointer; z-index: 2;
}
.confirm-x:hover { color: var(--terracotta); }
.confirm-tabs { display: inline-flex; gap: 4px; background: var(--sand-deep); border-radius: 999px; padding: 4px; margin-bottom: 14px; }
.ctab {
  border: 0; background: none; cursor: pointer; font-family: var(--font-body); font-weight: 700;
  font-size: 0.85rem; color: var(--ink-soft); padding: 8px 16px; border-radius: 999px; transition: background .15s ease, color .15s ease;
}
.ctab.on { background: var(--paper); color: var(--terracotta); box-shadow: var(--shadow-sm); }
.confirm-frame-wrap { position: relative; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); background: var(--sand); }
.confirm-frame { width: 100%; height: 300px; border: 0; display: block; }
.confirm-streetnote {
  display: grid; place-items: center; gap: 8px; min-height: 300px; padding: 24px; text-align: center;
  font-size: 0.95rem; color: var(--ink-soft);
}
.confirm-dialog h3 { margin: 16px 0 4px; font-size: 1.35rem; }
.confirm-addr { font-weight: 700; color: var(--ink); margin: 0 0 18px; }
.confirm-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.confirm-actions .btn { padding: 12px 22px; }
@media (max-width: 480px) {
  .confirm-frame, .confirm-streetnote { height: 240px; min-height: 240px; }
  .confirm-actions .btn { flex: 1; justify-content: center; }
}

/* ---------- Turn time graphic ---------- */
.turntime {
  background: var(--ink); color: var(--sand); border-radius: var(--radius); padding: 34px 32px;
  box-shadow: var(--shadow); display: grid; gap: 18px;
}
.turntime .tt-head { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.4rem; color: #fff; }
.turntime .tt-head .ico { font-size: 1.6rem; }
.tt-bar { position: relative; height: 12px; border-radius: 999px; background: rgba(255,255,255,0.16); }
.tt-bar .fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--clay)); }
.tt-bar .dot { position: absolute; top: 50%; width: 22px; height: 22px; border-radius: 50%; background: #fff; transform: translate(-50%,-50%); box-shadow: 0 0 0 5px rgba(200,146,61,0.4); }
.tt-scale { display: flex; justify-content: space-between; font-size: 0.78rem; opacity: 0.7; }
.tt-stats { display: flex; gap: 30px; flex-wrap: wrap; padding-top: 6px; border-top: 1px solid rgba(255,255,255,0.14); }
.tt-stats .stat b { display: block; font-family: var(--font-display); font-size: 2.1rem; color: var(--gold); line-height: 1; }
.tt-stats .stat span { font-size: 0.82rem; opacity: 0.82; }
.tt-sub { font-size: 0.86rem; opacity: 0.8; }

/* ---------- Generic grids / cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ico { font-size: 2.4rem; margin-bottom: 14px; display: block; line-height: 1; }
.card h3 { margin-bottom: 10px; font-size: 1.5rem; }
.card p { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.55; margin: 0; }
/* Cards sit on .band (orange) sections — keep their text dark, not white */
.band .card h3 { color: var(--ink); }
.band .card p { color: var(--ink-soft); }
.band .card .card-link { color: var(--terracotta); }
.card-link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 0.92rem; }

.service-card { display: flex; flex-direction: column; }
.city-card { position: relative; overflow: hidden; }
.city-card .tagdist { font-size: 0.78rem; font-weight: 700; color: var(--sky); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Split / About ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-photo .photo-frame { aspect-ratio: 1/1; max-width: 420px; }
.cred-list { list-style: none; display: grid; gap: 12px; margin-top: 18px; }
.cred-list li { display: flex; gap: 11px; align-items: flex-start; font-weight: 600; color: var(--ink-soft); }
.cred-list li::before { content: "✓"; color: #fff; background: var(--saguaro); width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 0.8rem; flex: none; margin-top: 2px; }

/* ---------- Band / CTA ---------- */
.band { background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dk)); color: #fff; }
.band h2, .band h3 { color: #fff; }
.band .eyebrow { color: #ffdcc4; }
.cta-band { text-align: center; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 56ch; margin: 12px auto 26px; }

/* ---------- Contact form ---------- */
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 0.85rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; background: var(--sand);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--terracotta); background: #fff; }

/* ---------- Local highlights ---------- */
.highlight-box { background: var(--sand-deep); border-radius: var(--radius); padding: 30px; }
.highlight-box h3 { margin-bottom: 10px; }

/* ---------- FAQ ---------- */
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 20px; margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--terracotta); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); padding-bottom: 16px; margin: 0; }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: 0.85rem; color: var(--ink-soft); padding: 18px 0 0; }
.crumb a { color: var(--ink-soft); }
.crumb a:hover { color: var(--terracotta); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--sand); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; opacity: 0.75; }
.site-footer a { color: var(--sand); opacity: 0.85; }
.site-footer a:hover { color: var(--gold); opacity: 1; }
.footer-links { list-style: none; display: grid; gap: 9px; font-size: 0.94rem; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: rgba(246,239,228,0.7); font-size: 0.92rem; }
.footer-nap { font-size: 0.94rem; display: grid; gap: 7px; }
.footer-nap b { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; padding-top: 20px; font-size: 0.82rem; color: rgba(246,239,228,0.6); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Mobile sticky call bar ---------- */
.mobile-call { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 360px; }
  .split { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column;
    background: var(--sand); padding: 18px 24px; gap: 16px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
  }
  .grid-2, .grid-3, .grid-4, .form-row { grid-template-columns: 1fr; }
  .nav-phone span { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-call {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: var(--terracotta); color: #fff; justify-content: center; gap: 8px; align-items: center;
    padding: 13px; font-weight: 800; box-shadow: 0 -6px 20px -10px rgba(0,0,0,0.5);
  }
  .mobile-call a { color: #fff; }
  body { padding-bottom: 52px; }
}

/* ===========================================================
   MODERN LAYER v2 — imagery, motion, reliability graphic
   =========================================================== */

/* ---- Scroll reveal ---- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1); will-change: opacity, transform; }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .40s; }

/* ---- Image-driven hero ---- */
.hero--modern { background: var(--ink); }
.hero--modern::before { display: none; }
.hero-media {
  position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center;
  transform: scale(1.06); animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.06) translate(0,0); } to { transform: scale(1.16) translate(-1.5%, -2%); } }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(20,15,11,0.92) 0%, rgba(20,15,11,0.7) 42%, rgba(20,15,11,0.28) 100%),
    linear-gradient(0deg, rgba(20,15,11,0.78), rgba(20,15,11,0) 45%);
}
.hero--modern .hero-grid, .hero--modern > .wrap { position: relative; z-index: 2; }
.hero--modern .eyebrow { color: var(--gold); }
.hero--modern h1 { color: #fdf8f0; text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.hero--modern h1 span { color: var(--clay); }
.hero--modern .lead { color: rgba(253,248,240,0.9); }
.hero--modern .badge { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); color: #fdf8f0; backdrop-filter: blur(6px); }
.hero--modern .badge b { color: var(--gold); }
.hero--modern .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.7); }
.hero--modern .btn--ghost:hover { background: #fff; color: var(--ink); }
.hero--modern .photo-frame { border-color: rgba(255,255,255,0.85); box-shadow: 0 30px 60px -25px rgba(0,0,0,0.7); }
.hero--modern .address-search { background: rgba(255,253,249,0.96); }

/* floating accent dots on hero photo */
.hero-photo .float-badge {
  position: absolute; right: -10px; top: 20px; z-index: 3; background: var(--paper); color: var(--ink);
  border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow); font-weight: 800; font-size: 0.82rem;
  display: flex; align-items: center; gap: 8px; animation: floaty 4s ease-in-out infinite;
}
.hero-photo .float-badge .pip { width: 9px; height: 9px; border-radius: 50%; background: #2faa5a; box-shadow: 0 0 0 0 rgba(47,170,90,0.6); animation: pulse 2s infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(47,170,90,0.55); } 70% { box-shadow: 0 0 0 10px rgba(47,170,90,0); } 100% { box-shadow: 0 0 0 0 rgba(47,170,90,0); } }

/* ---- Trust marquee ---- */
.marquee { background: var(--ink); color: var(--sand); overflow: hidden; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: scrollx 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { padding: 16px 26px; font-family: var(--font-display); font-size: 1.05rem; opacity: 0.92; display: inline-flex; align-items: center; gap: 12px; }
.marquee-track span::after { content: "✦"; color: var(--gold); margin-left: 26px; opacity: 0.6; }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- Reliability graphic ---- */
.reliability { background: radial-gradient(900px 500px at 80% 0%, #2a2018, var(--ink)); color: var(--sand); }
.reliability-card { display: grid; grid-template-columns: 280px 1fr; gap: 50px; align-items: center; }
.rc-ring { position: relative; width: 250px; height: 250px; margin: 0 auto; }
.ring-svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-track { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 16; }
.ring-fill {
  fill: none; stroke: url(#ringgrad); stroke-width: 16; stroke-linecap: round;
  stroke-dasharray: 590.6; stroke-dashoffset: 590.6; transition: stroke-dashoffset 1.8s cubic-bezier(.22,.9,.3,1);
}
.reliability.animate .ring-fill { stroke-dashoffset: 0; }
.ring-center { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.ring-num { font-family: var(--font-display); font-size: 3.4rem; font-weight: 600; color: #fff; line-height: 1; }
.ring-label { font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.rc-body .eyebrow { color: var(--gold); }
.rc-body h2 { color: #fff; }
.rc-body h2 .grad { background: linear-gradient(90deg, var(--gold), var(--clay)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.rc-body p { color: rgba(246,239,228,0.82); max-width: 52ch; }
.speed-block { margin-top: 22px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 22px 24px; }
.speed-top { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.speed-top .bolt { font-size: 1.4rem; }
.speed-top b { font-family: var(--font-display); font-size: 2.6rem; color: #fff; line-height: 1; }
.speed-top .unit { font-size: 0.95rem; color: rgba(246,239,228,0.8); }
.speed-track { height: 10px; border-radius: 999px; background: rgba(255,255,255,0.12); margin: 16px 0 10px; overflow: hidden; }
.speed-fill { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--gold), var(--clay)); transition: width 1.6s cubic-bezier(.22,.9,.3,1) .2s; }
.reliability.animate .speed-fill { width: 78%; }
.speed-scale { display: flex; justify-content: space-between; font-size: 0.74rem; color: rgba(246,239,228,0.6); }
.speed-sub { font-size: 0.86rem; color: rgba(246,239,228,0.7); margin-top: 12px; margin-bottom: 0; }

/* ---- Full-bleed image band ---- */
.image-band { position: relative; min-height: 420px; display: grid; place-items: center; overflow: hidden; }
.image-band .band-media { position: absolute; inset: 0; background-size: cover; background-position: center; }
.image-band .band-veil { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,15,11,0.86), rgba(20,15,11,0.4)); }
.image-band .wrap { position: relative; z-index: 2; text-align: center; color: #fff; padding: 70px 24px; }
.image-band h2 { color: #fff; max-width: 18ch; margin: 0 auto 14px; }
.image-band p { color: rgba(255,255,255,0.88); max-width: 50ch; margin: 0 auto 22px; }

/* ---- City card image thumbs ---- */
.city-card .card-thumb { height: 132px; border-radius: 12px; background-size: cover; background-position: center; margin-bottom: 14px; }

/* hover sheen on cards */
.card { position: relative; overflow: hidden; }
.card::after { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent); transform: skewX(-18deg); transition: left .6s ease; }
.card:hover::after { left: 130%; }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  .hero-media { animation: none; transform: scale(1.04); }
  .float-badge, .pip { animation: none; }
  .marquee-track { animation: none; }
  .ring-fill { transition: none; stroke-dashoffset: 0; }
  .speed-fill { transition: none; width: 78%; }
}

/* ---- Animated moving-border CTA ---- */
@property --glow-angle { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
.btn--glow { position: relative; z-index: 0; border: none !important; overflow: visible; }
.btn--glow::before {
  content: ""; position: absolute; inset: -3px; border-radius: 999px; z-index: -2;
  background: conic-gradient(from var(--glow-angle), var(--gold), #ffe6a8, var(--clay), var(--terracotta), var(--gold));
  animation: glow-spin 2.6s linear infinite;
}
.btn--glow::after {
  content: ""; position: absolute; inset: 0; border-radius: 999px; z-index: -1;
  background: var(--terracotta); transition: background .2s ease;
}
.btn--glow:hover::after { background: var(--terracotta-dk); }
.btn--glow {
  box-shadow: 0 0 0 0 rgba(200,146,61,0.55);
  animation: glow-pulse 2.6s ease-in-out infinite;
}
@keyframes glow-spin { to { --glow-angle: 360deg; } }
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 6px 18px -8px rgba(177,74,42,0.6), 0 0 0 0 rgba(200,146,61,0.45); }
  50% { box-shadow: 0 6px 22px -6px rgba(177,74,42,0.7), 0 0 22px 4px rgba(200,146,61,0.35); }
}
/* Fallback for browsers without @property: static glowing gradient ring */
@supports not (background: conic-gradient(from var(--glow-angle), red, blue)) {
  .btn--glow::before { background: linear-gradient(120deg, var(--gold), var(--clay), var(--terracotta)); animation: none; }
}
@media (prefers-reduced-motion: reduce) {
  .btn--glow::before { animation: none; }
  .btn--glow { animation: none; }
}

@media (max-width: 920px) {
  .reliability-card { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 680px) {
  .hero-photo .float-badge { right: 6px; }
  .rc-ring { width: 210px; height: 210px; }
}
