/* ==========================================================================
   Motus Wraps — motuswraps.com
   Dark/steel "new age" premium theme. Red is a controlled accent.
   ========================================================================== */

:root {
  --ink:        #0B0C0E;
  --steel-900:  #14171A;
  --steel-700:  #23282D;
  --steel-500:  #3A4149;
  --steel-300:  #8A929B;
  --white:      #F5F7FA;
  --red:        #E11D2A;
  --red-deep:   #B3121D;
  --font-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max-w: 1160px;
  --radius: 10px;
  --header-h: 68px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.08;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4.2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.6vw, 1.5rem); }
h4 { margin: 0 0 .4em; font-weight: 600; }
p { margin: 0 0 1em; }
.muted { color: var(--steel-300); }
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  font-size: .9rem;
  color: var(--red);
  display: block;
  margin-bottom: .6rem;
}
.lead { font-size: 1.1rem; color: var(--steel-300); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }
section.tight { padding: 40px 0; }
.section-dark { background: var(--ink); }
.section-steel { background: var(--steel-900); border-top: 1px solid var(--steel-700); border-bottom: 1px solid var(--steel-700); }
.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); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
hr.rule { border: 0; border-top: 1px solid var(--steel-500); margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--steel-500); }
.btn-ghost:hover { border-color: var(--white); }
.btn-lg { padding: 17px 34px; font-size: 1.1rem; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-row.center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,12,14,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--steel-700);
}
.header-inner {
  display: flex; align-items: center; gap: 20px;
  height: var(--header-h);
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 40px; width: auto; }
.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; align-items: center; }
.main-nav a {
  display: block; padding: 8px 12px;
  text-decoration: none; font-size: .95rem; font-weight: 600;
  color: var(--white); border-radius: 6px;
}
.main-nav a:hover { color: var(--red); }
.main-nav a.active { color: var(--red); }
.nav-item-services { position: relative; }
.nav-item-services > a::after { content: " ▾"; font-size: .7em; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--steel-900); border: 1px solid var(--steel-700);
  border-radius: 8px; padding: 8px; min-width: 260px;
  box-shadow: 0 18px 40px rgba(0,0,0,.5);
}
.nav-item-services:hover .dropdown, .nav-item-services:focus-within .dropdown { display: block; }
.dropdown a { padding: 9px 12px; white-space: nowrap; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; font-weight: 600; font-size: .95rem;
  color: var(--white); white-space: nowrap;
}
.header-phone:hover { color: var(--red); }
.header-cta { white-space: nowrap; padding: 10px 18px; font-size: .9rem; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--steel-500);
  border-radius: 6px; color: var(--white); padding: 8px 10px; line-height: 1;
}
@media (max-width: 1020px) {
  .main-nav {
    display: none; position: absolute; top: var(--header-h); left: 0; right: 0;
    background: var(--steel-900); border-bottom: 1px solid var(--steel-700);
    padding: 12px 20px 20px; margin-left: 0; max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav a { padding: 12px 8px; border-bottom: 1px solid var(--steel-700); border-radius: 0; }
  .dropdown { display: block; position: static; border: 0; box-shadow: none; padding: 0 0 0 16px; background: transparent; }
  .nav-item-services > a::after { content: ""; }
  .nav-toggle { display: block; margin-left: auto; }
  .header-phone span { display: none; }
  .header-cta { display: none; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--steel-900);
  border-bottom: 1px solid var(--steel-700);
  padding: 10px 0;
  font-size: .88rem;
}
.trust-strip .wrap { display: flex; gap: 8px 28px; flex-wrap: wrap; justify-content: center; }
.trust-strip span { white-space: nowrap; color: var(--steel-300); }
.trust-strip b { color: var(--white); font-weight: 600; }
.trust-strip .tick { color: var(--red); font-weight: 700; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 84px 0 72px;
  background:
    radial-gradient(1100px 500px at 78% -10%, rgba(225,29,42,.14), transparent 60%),
    radial-gradient(900px 480px at -10% 110%, rgba(58,65,73,.35), transparent 60%),
    var(--ink);
  border-bottom: 1px solid var(--steel-700);
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: .7;
}
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero-logo { display: none; } }
.hero-logo img { width: min(320px, 70%); margin: 0 auto; }
.hero .sub { font-size: 1.15rem; color: var(--steel-300); max-width: 56ch; margin-bottom: 1.6em; }
.hero .sub b { color: var(--white); }

/* ---------- Cards ---------- */
.card {
  background: var(--steel-900);
  border: 1px solid var(--steel-700);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--steel-500); }
.card h3 a { text-decoration: none; }
.card h3 a:hover { color: var(--red); }
.card .card-kicker { color: var(--red); font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; font-weight: 600; }
.card p { color: var(--steel-300); font-size: .95rem; margin-bottom: .8em; }
.card .card-link { color: var(--white); font-weight: 600; font-size: .9rem; text-decoration: none; }
.card .card-link:hover { color: var(--red); }
.card-accent { border-top: 3px solid var(--red); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem); color: var(--red); line-height: 1;
}
.stat .lbl { color: var(--steel-300); font-size: .88rem; margin-top: 6px; }

/* ---------- Checklist / feature list ---------- */
.checklist { list-style: none; padding: 0; margin: 0 0 1.2em; }
.checklist li { padding: 7px 0 7px 30px; position: relative; color: var(--steel-300); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 7px;
  color: var(--red); font-weight: 700;
}
.checklist li b { color: var(--white); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 62px; margin-bottom: 22px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--steel-700); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--steel-500);
}
.step h4 { margin-bottom: .2em; }
.step p { color: var(--steel-300); margin: 0; }

/* ---------- Financing callout ---------- */
.financing-callout {
  background: linear-gradient(135deg, var(--steel-900), var(--steel-700));
  border: 1px solid var(--steel-500);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.financing-callout h3 { margin-bottom: .4em; }
.financing-callout .fine { font-size: .82rem; color: var(--steel-300); font-style: italic; }

/* ---------- Special offer ---------- */
.offer-banner {
  background: linear-gradient(120deg, rgba(225,29,42,.16), rgba(20,23,26,.9)), var(--steel-900);
  border: 1px solid var(--red-deep);
  border-radius: var(--radius);
  padding: 30px 28px;
}
.offer-banner .price {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 3.4rem); color: var(--red); line-height: 1;
}
.offer-banner .fine { font-size: .82rem; color: var(--steel-300); }

/* ---------- Forms ---------- */
.form-panel {
  background: var(--steel-900);
  border: 1px solid var(--steel-700);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--steel-300); }
.field input, .field select, .field textarea {
  background: var(--ink);
  border: 1px solid var(--steel-500);
  border-radius: 6px;
  color: var(--white);
  padding: 12px 14px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--red); outline-offset: 1px; border-color: var(--red);
}
.form-note { font-size: .85rem; color: var(--steel-300); margin-top: 12px; }
.form-status { margin-top: 12px; font-weight: 600; display: none; }
.form-status.ok { display: block; color: #3ecf6a; }
.form-status.err { display: block; color: var(--red); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ---------- FAQ accordion ---------- */
.faq-item { border-bottom: 1px solid var(--steel-700); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 18px 40px 18px 0; position: relative;
  font-weight: 600; font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 14px;
  color: var(--red); font-size: 1.5rem; font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 0 18px; color: var(--steel-300); max-width: 75ch; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.gallery-filters button {
  background: var(--steel-900); border: 1px solid var(--steel-500);
  color: var(--steel-300); border-radius: 999px; padding: 8px 18px;
  font-size: .88rem; font-weight: 600;
}
.gallery-filters button.active { background: var(--red); border-color: var(--red); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  display: block; position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--steel-700); text-decoration: none;
  background: var(--steel-900);
}
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  padding: 12px 14px; font-size: .88rem; color: var(--steel-300);
  display: flex; justify-content: space-between; gap: 10px; align-items: baseline;
}
.gallery-item .cat { color: var(--red); font-family: var(--font-display); text-transform: uppercase; font-size: .75rem; letter-spacing: .1em; white-space: nowrap; }
.gallery-item.placeholder {
  aspect-ratio: 4 / 3; display: flex; align-items: center; justify-content: center;
  color: var(--steel-500); font-size: .85rem; text-align: center; padding: 20px;
  border-style: dashed;
}

/* ---------- Reviews ---------- */
.review-card { background: var(--steel-900); border: 1px solid var(--steel-700); border-radius: var(--radius); padding: 22px; }
.review-card .stars { color: var(--red); letter-spacing: 3px; margin-bottom: 8px; }
.widget-placeholder {
  border: 2px dashed var(--steel-500); border-radius: var(--radius);
  padding: 40px 24px; text-align: center; color: var(--steel-300); background: var(--steel-900);
}

/* ---------- Map ---------- */
.map-embed { border: 1px solid var(--steel-700); border-radius: var(--radius); overflow: hidden; }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; filter: grayscale(.4) contrast(1.05); }

/* ---------- Estimator ---------- */
.estimator {
  background: var(--steel-900);
  border: 1px solid var(--steel-700);
  border-radius: 14px;
  max-width: 780px; margin: 0 auto;
  overflow: hidden;
}
.est-head {
  padding: 22px 28px; border-bottom: 1px solid var(--steel-700);
  background: linear-gradient(120deg, rgba(225,29,42,.12), transparent 55%);
}
.est-badge {
  display: inline-block; font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: .12em; font-size: .78rem; font-weight: 600;
  color: var(--red); border: 1px solid var(--red-deep); border-radius: 999px;
  padding: 4px 12px; margin-bottom: 10px;
}
.est-head h2 { margin: 0; }
.est-dots { display: flex; gap: 8px; margin-top: 14px; }
.est-dots span {
  width: 34px; height: 5px; border-radius: 3px; background: var(--steel-700);
  transition: background .25s ease;
}
.est-dots span.on { background: var(--red); }
.est-body { padding: 26px 28px 30px; }
.est-step-label { font-size: .8rem; color: var(--steel-300); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; margin-bottom: 4px; }
.est-q { font-family: var(--font-display); text-transform: uppercase; font-size: 1.4rem; font-weight: 700; margin: 0 0 18px; }
.opt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 560px) { .opt-grid { grid-template-columns: 1fr; } }
.opt {
  text-align: left; background: var(--ink); border: 1px solid var(--steel-500);
  border-radius: 8px; padding: 14px 16px; color: var(--white);
  transition: border-color .15s ease, background .15s ease;
}
.opt:hover { border-color: var(--steel-300); }
.opt.sel { border-color: var(--red); background: rgba(225,29,42,.08); }
.opt b { display: block; font-size: 1rem; }
.opt small { color: var(--steel-300); }
.est-nav { display: flex; justify-content: space-between; margin-top: 24px; gap: 12px; }
.est-back { background: none; border: 1px solid var(--steel-500); color: var(--steel-300); border-radius: 6px; padding: 12px 20px; }
.est-back:disabled { opacity: .35; cursor: default; }
.est-next { flex: 1; max-width: 260px; }
.est-price-panel { text-align: center; padding: 10px 0; }
.est-price {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 4rem); color: var(--red); line-height: 1.05;
}
.est-price-sub { color: var(--steel-300); font-size: .95rem; margin-top: 6px; }
.est-summary {
  margin: 20px auto 4px; max-width: 420px; text-align: left;
  font-size: .9rem; color: var(--steel-300);
  border-top: 1px solid var(--steel-700); padding-top: 14px;
}
.est-summary div { display: flex; justify-content: space-between; padding: 3px 0; }
.est-summary div span:last-child { color: var(--white); }
.est-disclaimer { font-size: .78rem; color: var(--steel-500); padding: 14px 28px 20px; border-top: 1px solid var(--steel-700); margin: 0; }
.est-error { color: var(--red); font-size: .9rem; margin-top: 10px; display: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--steel-900); border-top: 1px solid var(--steel-700); padding: 54px 0 110px; font-size: .92rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 3px 0; }
.site-footer a { color: var(--steel-300); text-decoration: none; }
.site-footer a:hover { color: var(--red); }
.footer-logo img { width: 200px; margin-bottom: 14px; }
.footer-nap { color: var(--steel-300); }
.footer-nap b { color: var(--white); }
.footer-bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--steel-700);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: var(--steel-500); font-size: .82rem;
}
.footer-bottom a { color: var(--steel-500); }

/* ---------- Sticky mobile CTA bar ---------- */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 120;
  display: none; grid-template-columns: 1fr 1fr;
  background: var(--steel-900); border-top: 1px solid var(--steel-700);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); gap: 10px;
}
.sticky-bar a { text-decoration: none; }
@media (max-width: 820px) { .sticky-bar { display: grid; } }

/* Desktop floating estimate button */
.float-cta {
  position: fixed; right: 22px; bottom: 22px; z-index: 120;
  box-shadow: 0 10px 30px rgba(225,29,42,.35);
}
@media (max-width: 820px) { .float-cta { display: none; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card:hover, .gallery-item:hover img { transform: none; }
  * { animation: none !important; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  padding: 64px 0 48px;
  background:
    radial-gradient(900px 400px at 85% -20%, rgba(225,29,42,.12), transparent 60%),
    var(--ink);
  border-bottom: 1px solid var(--steel-700);
}
.page-hero .lead { margin-bottom: 1.4em; }
.breadcrumbs { font-size: .82rem; color: var(--steel-500); margin-bottom: 18px; }
.breadcrumbs a { color: var(--steel-300); text-decoration: none; }
.breadcrumbs a:hover { color: var(--red); }

/* ---------- Misc ---------- */
.badge-row { display: flex; gap: 10px 14px; flex-wrap: wrap; margin: 14px 0; }
.chip {
  font-size: .8rem; font-weight: 600; color: var(--steel-300);
  border: 1px solid var(--steel-500); border-radius: 999px; padding: 5px 13px; white-space: nowrap;
}
.chip.hot { color: var(--red); border-color: var(--red-deep); }
.img-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--steel-700); }
.img-frame img { width: 100%; object-fit: cover; }
.town-links { display: flex; flex-wrap: wrap; gap: 10px; }
.town-links a {
  text-decoration: none; background: var(--steel-900); border: 1px solid var(--steel-500);
  border-radius: 8px; padding: 10px 16px; font-weight: 600; font-size: .92rem;
  transition: border-color .15s ease;
}
.town-links a:hover { border-color: var(--red); color: var(--red); }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--red); color: #fff;
  padding: 10px 16px; z-index: 200; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }
