/* ============================================================
   GSG Self Storage - Design System
   Slate blue + warm sand + confident orange
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800;900&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --slate:        #2c3e54;
  --slate-dark:   #1e2c3c;
  --slate-darker: #16212d;
  --slate-light:  #3c5269;
  --slate-mist:   #ecf0f4;

  --sand:         #c9a87c;
  --sand-deep:    #b1875b;
  --cream:        #f6efe3;
  --cream-soft:   #faf6ee;

  --action:       #e8702a;
  --action-dark:  #cf5e1d;
  --action-darker:#b14f17;

  /* Neutrals */
  --ink:          #1b2733;
  --body:         #44505d;
  --muted:        #6b7682;
  --line:         #e4e0d7;
  --line-soft:    #eeebe2;
  --bg:           #ffffff;
  --bg-alt:       #f7f5f1;

  --star:         #e8a72a;

  /* System */
  --radius:   14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(22,33,45,.06), 0 2px 6px rgba(22,33,45,.05);
  --shadow:    0 4px 14px rgba(22,33,45,.09), 0 12px 30px rgba(22,33,45,.07);
  --shadow-lg: 0 18px 50px rgba(22,33,45,.18);
  --maxw: 1200px;
  --header-h: 76px;

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* Action color can be swapped by tweaks (green option) */
[data-action="green"] {
  --action:       #2e9c5a;
  --action-dark:  #25814a;
  --action-darker:#1d6a3c;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.62;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1,h2,h3,h4 {
  font-family: 'Archivo', sans-serif;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  font-weight: 800;
  text-wrap: balance;
}

p { margin: 0 0 1rem; text-wrap: pretty; }
a { color: var(--slate); text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(54px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.bg-alt  { background: var(--bg-alt); }
.bg-cream{ background: var(--cream-soft); }
.bg-slate{ background: var(--slate); color: #dfe6ee; }
.bg-slate h1,.bg-slate h2,.bg-slate h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sand-deep); margin-bottom: 16px;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--sand-deep); display:inline-block; }
.bg-slate .eyebrow { color: var(--sand); }
.bg-slate .eyebrow::before { background: var(--sand); }

.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 54px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display:none; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); }
.section-head p { font-size: clamp(18px, 2.1vw, 21px); color: var(--muted); margin-top: 6px; }

.lead { font-size: clamp(19px, 2.3vw, 23px); color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--slate);
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: 'Archivo', sans-serif; font-weight: 700;
  font-size: 18px; line-height: 1;
  padding: 18px 28px; border-radius: 12px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s var(--ease), background .15s, box-shadow .2s, border-color .15s;
  white-space: nowrap; min-height: 56px;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:active { transform: translateY(1px); }

.btn--call {
  background: var(--action); color: #fff; box-shadow: 0 6px 16px rgba(232,112,42,.32);
}
.btn--call:hover { background: var(--action-dark); box-shadow: 0 8px 22px rgba(232,112,42,.42); }

.btn--slate { background: var(--slate); color: #fff; }
.btn--slate:hover { background: var(--slate-dark); }

.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.16); border-color: #fff; }

.btn--outline { background: #fff; color: var(--slate); border-color: var(--line); }
.btn--outline:hover { border-color: var(--slate); }

.btn--lg { font-size: 20px; padding: 20px 34px; min-height: 62px; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 46px; height: 46px; border-radius: 10px; flex: none;
  background: var(--slate); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 16px; letter-spacing: 0;
  line-height: 1; white-space: nowrap;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.12);
}
.brand__mark span { color: var(--sand); }
.brand__name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 20px; color: var(--ink); line-height: 1; letter-spacing: -.01em; }
.brand__name small { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 16px; color: var(--ink);
  padding: 10px 14px; border-radius: 8px; transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav a:hover { background: var(--slate-mist); }
.nav a.is-active { color: var(--action-dark); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-call {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--action); color: #fff;
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 17px;
  padding: 12px 20px; border-radius: 11px;
  box-shadow: 0 5px 14px rgba(232,112,42,.32);
  transition: background .15s, box-shadow .2s, transform .12s;
}
.header-call:hover { background: var(--action-dark); box-shadow: 0 7px 18px rgba(232,112,42,.42); }
.header-call:active { transform: translateY(1px); }
.header-call svg { width: 22px; height: 22px; flex: none; }
.header-call .num-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.header-call small { font-size: 10.5px; font-weight: 600; letter-spacing: .1em; opacity: .85; text-transform: uppercase; white-space: nowrap; }
.header-call .num { font-size: 18px; white-space: nowrap; }

.nav-toggle {
  display: none; width: 50px; height: 50px; border: 1px solid var(--line);
  background: #fff; border-radius: 10px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--ink); }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 80; display: none;
}
.mobile-nav.open { display: block; }
.mobile-nav__scrim { position: absolute; inset: 0; background: rgba(20,30,40,.5); opacity: 0; transition: opacity .25s; }
.mobile-nav.open .mobile-nav__scrim { opacity: 1; }
.mobile-nav__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: #fff; box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .3s var(--ease);
  display: flex; flex-direction: column; padding: 20px;
}
.mobile-nav.open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mobile-nav__close { width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; border-radius: 10px; display: grid; place-items: center; cursor: pointer; }
.mobile-nav__close svg { width: 24px; height: 24px; }
.mobile-nav a.m-link {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 21px; color: var(--ink);
  padding: 16px 12px; border-radius: 10px; border-bottom: 1px solid var(--line);
}
.mobile-nav a.m-link:hover { background: var(--bg-alt); }
.mobile-nav .btn--call { margin-top: 18px; }
.mobile-nav__contact { margin-top: auto; padding-top: 18px; color: var(--muted); font-size: 16px; }

/* ---------- Hero ---------- */
.hero { position: relative; }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,30,42,.62) 0%, rgba(20,30,42,.32) 38%, rgba(20,30,42,.55) 75%, rgba(18,27,38,.86) 100%),
    linear-gradient(96deg, rgba(18,28,40,.78) 0%, rgba(18,28,40,.30) 58%, rgba(18,28,40,0) 88%);
}

/* Ribbon */
.ribbon {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--action); color: #fff;
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(14px, 1.7vw, 16.5px);
  letter-spacing: .005em;
  padding: 12px 20px; border-radius: 100px;
  box-shadow: 0 8px 22px rgba(232,112,42,.4);
  transition: transform .15s var(--ease), background .15s, box-shadow .2s;
}
a.ribbon:hover {
  background: var(--action-dark);
  box-shadow: 0 10px 26px rgba(232,112,42,.5);
  transform: translateY(-2px);
}
a.ribbon:active {
  transform: translateY(1px);
}
.ribbon .tag { background: rgba(255,255,255,.22); border-radius: 100px; padding: 3px 11px; font-size: .82em; letter-spacing: .06em; }

/* Trust bar */
.trustbar { background: var(--slate-dark); }
.trustbar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px; padding: 24px 18px; color: #cdd7e1;
}
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,.1); }
.trust-item__ico { width: 46px; height: 46px; flex: none; border-radius: 11px; background: rgba(201,168,124,.16); color: var(--sand); display: grid; place-items: center; }
.trust-item__ico svg { width: 25px; height: 25px; }
.trust-item strong { display: block; font-family: 'Archivo',sans-serif; color: #fff; font-size: 17px; font-weight: 700; line-height: 1.2; }
.trust-item span { font-size: 14.5px; color: #93a3b4; }

/* ---------- Price table ---------- */
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.price-row {
  display: grid; grid-template-columns: 1.4fr 1fr 180px; align-items: start; gap: 18px;
  padding: 22px 28px; border-bottom: 1px solid var(--line);
}
.price-row:last-child { border-bottom: 0; }
.price-row:nth-child(even) { background: var(--cream-soft); }
.price-row.is-feature { background: var(--slate); }
.price-row.is-feature .pr-size,
.price-row.is-feature .pr-fit { color: #fff; }
.price-row.is-feature .pr-fit { color: #c4d0db; }
.pr-size { font-family: 'Archivo',sans-serif; font-weight: 800; font-size: 23px; color: var(--ink); }
.pr-size small { display:block; font-family:'Source Sans 3'; font-weight:600; font-size:14px; letter-spacing:.04em; text-transform:uppercase; color:var(--sand-deep); margin-top:3px; }
.pr-fit { font-size: 16.5px; color: var(--muted); }
.pr-price { font-family: 'Archivo',sans-serif; font-weight: 800; font-size: 26px; color: var(--slate); white-space: nowrap; text-align: right; }
.pr-price small { font-family:'Source Sans 3'; font-weight: 600; font-size: 15px; color: var(--muted); }
.pr-price.call { font-size: 19px; color: var(--action-dark); }
.price-row.is-feature .pr-price { color: var(--sand); }
.price-note { text-align: center; font-size: 16px; color: var(--muted); margin-top: 18px; }

.price-badge {
  display:inline-block; background: var(--sand); color: var(--slate-darker);
  font-family:'Archivo',sans-serif; font-weight:800; font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  padding: 4px 10px; border-radius: 6px; margin-left: 10px; vertical-align: middle;
}

.price-strike {
  text-decoration: line-through;
  font-size: 19px;
  font-weight: 500;
  color: var(--muted);
  margin-right: 8px;
}
.price-row.is-feature .price-strike {
  color: rgba(255, 255, 255, 0.6);
}
.price-badge .price-strike {
  font-size: 11px;
  font-weight: 600;
  color: inherit;
  opacity: 0.7;
  margin-right: 5px;
}
.card-badge {
  display: inline-block;
  background: var(--slate);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-left: 10px;
  vertical-align: middle;
}

.table-sale-badge {
  display: inline-block;
  background: var(--action);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
  line-height: 1;
}

.card-header-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.card-header-row h3 {
  margin: 0 !important;
}
.card-header-row .card-badge {
  margin-left: 0;
}
.card-price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  font-family: 'Archivo', sans-serif;
}
.card-price-block .price-strike {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 500;
  margin: 0;
}
.card-price-block .price-actual {
  font-size: 28px;
  font-weight: 800;
  color: var(--slate);
  line-height: 1;
}
.card-price-block .price-actual small {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}
.card-price-block .price-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--action);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: auto;
}

/* ---------- Feature cards ---------- */
.cards { display: grid; gap: 22px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
  position: relative;
}
.card .card-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  margin: 0;
}
.card__ico { width: 54px; height: 54px; border-radius: 13px; background: var(--slate-mist); color: var(--slate); display: grid; place-items: center; margin-bottom: 18px; }
.card__ico svg { width: 28px; height: 28px; }
.card h3 { font-size: 21px; margin-bottom: 8px; }
.card p { font-size: 17px; color: var(--muted); margin: 0; }

/* checklist */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 18.5px; }
.checklist .ck {
  width: 30px; height: 30px; flex: none; border-radius: 8px; margin-top: 1px;
  background: rgba(46,156,90,.13); color: #2e9c5a; display: grid; place-items: center;
}
[data-action="green"] .checklist .ck { background: rgba(232,112,42,.14); color: var(--action-dark); }
.checklist .ck svg { width: 18px; height: 18px; }
.checklist li strong { color: var(--ink); }

/* ---------- Special band ---------- */
.special-band { background: var(--action); position: relative; overflow: hidden; }
.special-band::after {
  content:""; position:absolute; inset:0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 22px, transparent 22px 44px);
  pointer-events: none;
}
.special-band__in {
  position: relative; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  padding-block: clamp(34px, 5vw, 56px);
}
.special-band h2 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); margin: 0; }
.special-band p { color: rgba(255,255,255,.92); font-size: clamp(17px,2vw,20px); margin: 8px 0 0; }
.special-band .btn--ghost { border-color: #fff; background: rgba(255,255,255,.14); }
.special-band .btn--white { background:#fff; color: var(--action-dark); }
.special-band .btn--white:hover { background: #fff1e7; }

/* ---------- Testimonials ---------- */
.quote-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); display:flex; flex-direction:column; gap:14px; }
.stars { display:flex; gap:3px; color: var(--star); }
.stars svg { width: 22px; height: 22px; }
.quote-card blockquote { margin:0; font-size: 19px; color: var(--ink); line-height:1.5; }
.quote-card .who { display:flex; align-items:center; gap:12px; margin-top: 4px; }
.quote-card .avatar { width:44px; height:44px; border-radius:50%; background: var(--slate-mist); color: var(--slate); display:grid; place-items:center; font-family:'Archivo'; font-weight:800; }
.quote-card .who b { font-family:'Archivo'; color: var(--ink); display:block; font-size: 16.5px; }
.quote-card .who span { font-size: 14.5px; color: var(--muted); }

/* ---------- Location ---------- */
.loc-grid { display:grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: stretch; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); min-height: 380px; background: var(--slate-mist); }
.map-frame iframe { width:100%; height:100%; min-height: 380px; border:0; display:block; }
.info-list { list-style:none; padding:0; margin: 0; display:grid; gap: 22px; }
.info-list li { display:flex; gap:16px; }
.info-list .ico { width:48px; height:48px; flex:none; border-radius:12px; background: var(--slate-mist); color: var(--slate); display:grid; place-items:center; }
.info-list .ico svg { width:24px; height:24px; }
.info-list b { font-family:'Archivo'; color: var(--ink); font-size: 17px; display:block; }
.info-list a { color: var(--action-dark); font-weight: 600; }

/* ---------- Form ---------- */
.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(26px, 4vw, 44px); }
.field { margin-bottom: 18px; }
.field label { display:block; font-family:'Archivo'; font-weight:600; font-size: 15.5px; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: var(--action); }
.field input, .field select, .field textarea {
  width:100%; font-family:'Source Sans 3'; font-size: 18px; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 10px; background:#fff;
  transition: border-color .15s, box-shadow .15s; min-height: 54px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--slate); box-shadow: 0 0 0 3px rgba(44,62,84,.12);
}
.field-row { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 14.5px; color: var(--muted); margin-top: 6px; }
.form-success {
  display:none; background: rgba(46,156,90,.1); border:1px solid rgba(46,156,90,.4); color: #1d6a3c;
  border-radius: 12px; padding: 18px 20px; font-size: 17px; margin-bottom: 18px;
}
.form-success.show { display:block; }
.form-success.is-error {
  background: rgba(232,112,42,.1); border-color: rgba(232,112,42,.4); color: var(--action-dark);
}

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
  padding: 22px;
}
.modal.open { display: flex; }
.modal__scrim {
  position: absolute; inset: 0;
  background: rgba(20,30,42,.6);
  backdrop-filter: blur(4px);
}
.modal__card {
  position: relative; z-index: 2;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  padding: 40px 30px; max-width: 440px; width: 100%;
  text-align: center;
  transform: scale(.95); opacity: 0;
  transition: transform .3s var(--ease), opacity .3s;
}
.modal.open .modal__card { transform: scale(1); opacity: 1; }

.modal__icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(46,156,90,.12); color: #2e9c5a;
  display: grid; place-items: center; margin: 0 auto 20px;
}
.modal__icon svg { width: 32px; height: 32px; }
.modal h3 { font-size: 26px; margin-bottom: 12px; }
.modal p { color: var(--muted); font-size: 17.5px; margin-bottom: 26px; line-height: 1.5; }

/* ---------- Footer ---------- */
.site-footer { background: var(--slate-darker); color: #9fb0c0; padding: clamp(48px,7vw,72px) 0 28px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.site-footer h4 { color:#fff; font-size: 15px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.site-footer a { color:#9fb0c0; }
.site-footer a:hover { color:#fff; }
.footer-links { list-style:none; padding:0; margin:0; display:grid; gap: 11px; font-size: 16.5px; }
.footer-contact { display:grid; gap: 12px; font-size: 16.5px; }
.footer-contact a { color:#cdd9e4; font-weight: 600; }
.footer-brand .brand__name { color:#fff; }
.footer-brand p { font-size: 16px; margin-top: 14px; color:#8294a6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px; display:flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 14.5px; color: #7b8da0; }

/* ---------- Sticky mobile call ---------- */
.sticky-call {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none;
  padding: 10px 22px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(22,33,45,.12);
}
.sticky-call .btn { width: 100%; }

/* ---------- Page hero (interior) ---------- */
.page-hero { position: relative; background: var(--slate); color:#fff; overflow: hidden; }
.page-hero__media { position:absolute; inset:0; }
.page-hero__media img { width:100%; height:100%; object-fit: cover; }
.page-hero__scrim { position:absolute; inset:0; background: linear-gradient(100deg, rgba(18,28,40,.92) 0%, rgba(18,28,40,.7) 55%, rgba(18,28,40,.4) 100%); }
.page-hero__in { position: relative; padding-block: clamp(48px,8vw,92px); max-width: 760px; }
.page-hero h1 { color:#fff; font-size: clamp(33px, 5vw, 54px); }
.page-hero p { color: #cdd9e4; font-size: clamp(18px,2.3vw,22px); margin-top: 10px; }
.page-hero .crumbs { font-size: 14.5px; color: #8fa3b5; margin-bottom: 18px; font-family:'Archivo'; font-weight:600; letter-spacing:.04em; }
.page-hero .crumbs a { color:#aebfce; }

/* ---------- Misc ---------- */
.split { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,64px); align-items: center; }
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.media-frame img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pill-row { display:flex; flex-wrap: wrap; gap: 10px; }
.pill { display:inline-flex; align-items:center; gap:8px; background:#fff; border:1px solid var(--line); border-radius:100px; padding: 9px 16px; font-family:'Archivo'; font-weight:600; font-size: 15px; color: var(--ink); }
.pill svg { width:17px; height:17px; color: var(--sand-deep); }

.stat-row { display:flex; gap: 30px; flex-wrap: wrap; }
.stat b { font-family:'Archivo'; font-weight:800; font-size: clamp(30px,4vw,42px); color: var(--slate); display:block; line-height:1; }
.stat span { font-size: 15.5px; color: var(--muted); }
.bg-slate .stat span { color:#9fb0c0; }

.stat--sale {
  text-decoration: none;
  display: block;
  transition: transform 0.2s var(--ease);
}
.stat--sale:hover {
  transform: translateY(-2px);
}
.stat--sale b {
  display: flex !important;
  align-items: center;
  gap: 8px;
}
.stat--sale .sale-tag {
  display: inline-block;
  background: var(--action);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  line-height: 1;
  vertical-align: middle;
}

.badge-sale {
  display: inline-block;
  background: var(--action);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

a.card--link {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
a.card--link:hover {
  transform: translateY(-3px);
  border-color: var(--sand);
  box-shadow: var(--shadow);
}

a.price-row {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
a.price-row:hover {
  background: var(--cream-soft) !important;
  transform: scale(1.005);
}
a.price-row.is-feature:hover {
  background: var(--slate-light) !important;
}

/* FAQ accordion */
.acc { display:grid; gap: 14px; max-width: 860px; margin-inline:auto; }
.acc__item { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.acc__q {
  width:100%; text-align:left; background:none; border:0; cursor:pointer;
  display:flex; align-items:center; justify-content: space-between; gap:18px;
  padding: 24px 26px; font-family:'Archivo'; font-weight:700; font-size: clamp(18px,2.4vw,21px); color: var(--ink);
}
.acc__q .chev { width:30px; height:30px; flex:none; border-radius:8px; background: var(--slate-mist); color: var(--slate); display:grid; place-items:center; transition: transform .25s, background .2s; }
.acc__q .chev svg { width:19px; height:19px; }
.acc__item.open .acc__q .chev { transform: rotate(180deg); background: var(--slate); color:#fff; }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.acc__a-in { padding: 0 26px 24px; font-size: 18px; color: var(--body); }
.acc__a-in p { margin: 0; }
.acc__a-in p + p { margin-top: 12px; }

/* utility */
.center { text-align:center; }
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 40px; }
.gap-btns { display:flex; gap: 14px; flex-wrap: wrap; }
.hide-desktop { display:none; }
.anchor { scroll-margin-top: 92px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .header-call .num-wrap { display: none; }
  .header-call { padding: 11px 16px; }
  .header-call small { display: none; }
  .brand__name small { display: none; }
  .nav a {
    padding: 8px 10px;
    font-size: 15px;
  }
}

@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .cards-4 { grid-template-columns: repeat(2,1fr); }
  .loc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  body { font-size: 18px; }
  .nav, .header-call .num-wrap { display: none; }
  .nav-toggle { display: flex; }
  .header-call { padding: 11px 16px; }
  .header-call small { display:none; }
  .split { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
  .trustbar__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 1fr; }
  .trust-item {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 16px;
  }
  .trust-item:nth-child(odd) { border-left: 0; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
  .sticky-call { display: block; }
  body { padding-bottom: 78px; }
  .site-header { padding-bottom: 0; }
  .media-frame { min-height: auto !important; aspect-ratio: 16 / 10; }
}

@media (max-width: 620px) {
  .field-row { grid-template-columns: 1fr; }
  .cards-2, .cards-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr auto; gap: 6px 16px; padding: 18px 18px; }
  .pr-fit { grid-column: 1 / -1; order: 3; }
  .price-row.is-feature .pr-fit { order: 3; }
  .special-band__in { flex-direction: column; align-items: flex-start; }
  .brand__name small { display: none; }
  .stat-row { gap: 22px; }
}
