/* ═══════════════════════════════════════════════════
   Keewatin Self Storage — Shared Stylesheet
   234 E 2nd Ave, Keewatin, MN 55753
   ═══════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── VARIABLES ── */
:root {
  --navy:    #0f2b5b;
  --blue:    #1755a8;
  --accent:  #e8840a;
  --green:   #1a8a3c;
  --light:   #f4f7fc;
  --gray:    #6b7280;
  --border:  #dde3ed;
  --white:   #ffffff;
  --text:    #1a1a2e;
  --radius:  10px;
  --shadow:  0 2px 16px rgba(15,43,91,.10);
  --max:     1140px;
}

/* ── BASE ── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { line-height: 1.2; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: .55rem 1.25rem;
  border-radius: 7px;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  transition: opacity .18s, transform .15s;
  white-space: nowrap;
  border: 2px solid transparent;
  font-family: inherit;
  text-align: center;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-primary  { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-blue     { background: var(--blue);   color: #fff; border-color: var(--blue); }
.btn-green    { background: var(--green);  color: #fff; border-color: var(--green); }
.btn-outline  { background: transparent;   color: var(--navy); border-color: var(--navy); }
.btn-ghost    { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-lg       { padding: .85rem 2rem; font-size: 1rem; border-radius: 8px; }
.btn-block    { display: block; width: 100%; }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: #cbd5e1;
  font-size: .82rem;
  padding: .45rem 1rem;
  text-align: center;
  letter-spacing: .02em;
}
.topbar a     { color: #fbbf24; font-weight: 600; }
.topbar strong{ color: #fff; }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.2;
  flex-shrink: 0;
}
.logo img   { width: 44px; height: 44px; border-radius: 8px; }
.logo span  { display: block; font-size: .71rem; font-weight: 500; color: var(--gray); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .1rem;
  list-style: none;
}
.nav-links a {
  padding: .42rem .65rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--navy);
  transition: background .18s, color .18s;
}
.nav-links a:hover,
.nav-links a.active { background: var(--light); color: var(--blue); }

.nav-ctas { display: flex; gap: .6rem; align-items: center; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* ── SECTIONS ── */
section       { padding: 4rem 1.25rem; }
.section-inner{ max-width: var(--max); margin: 0 auto; }
.bg-light     { background: var(--light); }
.bg-navy      { background: var(--navy); color: #fff; }

.section-label {
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .4rem;
}
.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .65rem;
}
.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: .95rem;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3c80 55%, var(--blue) 100%);
  color: #fff;
  padding: 5rem 1.25rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero > * { position: relative; z-index: 1; }
.hero-sm   { padding: 3rem 1.25rem 2.5rem; }

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .28rem .9rem;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.hero h1 em  { color: #fbbf24; font-style: normal; }
.hero p.lead {
  font-size: clamp(.93rem, 2vw, 1.1rem);
  color: #c7d6f5;
  max-width: 580px;
  margin: 0 auto 2rem;
}
.hero-ctas {
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.5rem;
  font-size: .88rem;
  color: #b8d0f5;
}
.hero-checks span::before { content: '✓  '; color: #4ade80; font-weight: 700; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem;
}
.trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem 2rem;
  font-size: .86rem;
  font-weight: 600;
  color: var(--navy);
}
.trust-inner span { display: flex; align-items: center; gap: .4rem; }

/* ── CARDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

/* ── UNIT CARDS ── */
.unit-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.unit-card:hover       { border-color: var(--blue); box-shadow: var(--shadow); transform: translateY(-3px); }
.unit-card.popular     { border-color: var(--accent); box-shadow: 0 4px 24px rgba(232,132,10,.15); }
.popular-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .22rem .85rem;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.unit-size  { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.unit-sqft  { font-size: .83rem; color: var(--gray); margin: .25rem 0 .75rem; }
.unit-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: .2rem;
}
.unit-price small { font-size: .7rem; font-weight: 500; color: var(--gray); }
.unit-desc  { font-size: .87rem; color: var(--gray); margin-bottom: 1rem; line-height: 1.5; flex: 1; }
.unit-features {
  list-style: none;
  font-size: .82rem;
  color: var(--text);
  text-align: left;
  margin-bottom: 1.25rem;
}
.unit-features li { padding: .2rem 0; }
.unit-features li::before { content: '✓  '; color: var(--green); font-weight: 700; }

/* ── FEATURE CARDS ── */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon  { font-size: 1.75rem; flex-shrink: 0; line-height: 1; }
.feature-title { font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: .3rem; }
.feature-desc  { font-size: .87rem; color: var(--gray); line-height: 1.6; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.step-card  { text-align: center; padding: 1.5rem 1.25rem; }
.step-num {
  width: 52px; height: 52px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .9rem;
}
.step-title { font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: .4rem; }
.step-desc  { font-size: .86rem; color: var(--gray); line-height: 1.6; }

/* ── REVIEWS ── */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.stars         { color: #f59e0b; font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.review-text   { font-size: .9rem; color: var(--text); line-height: 1.7; margin-bottom: 1rem; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: .6rem; margin-top: auto; }
.review-avatar {
  width: 38px; height: 38px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .85rem;
  flex-shrink: 0;
}
.review-name     { font-weight: 700; font-size: .87rem; color: var(--navy); }
.review-location { font-size: .76rem; color: var(--gray); }

/* ── FAQ ── */
.faq-list    { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .65rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.35rem;
  text-align: left;
  font-size: .93rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
  transition: background .15s;
}
.faq-q:hover       { background: var(--light); }
.faq-arrow         { font-size: .75rem; color: var(--blue); transition: transform .25s; flex-shrink: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
  font-size: .9rem;
  color: var(--gray);
  padding: 0 1.35rem;
  line-height: 1.7;
}
.faq-item.open .faq-a    { max-height: 400px; padding: 0 1.35rem 1rem; }
.faq-item.open .faq-arrow{ transform: rotate(180deg); }
.faq-cat-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin: 1.75rem 0 .65rem;
}
.faq-cat-title:first-child { margin-top: 0; }

/* ── LOCATION ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.info-block  { margin-bottom: 1.1rem; }
.info-label  { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray); margin-bottom: .2rem; }
.info-val    { font-size: .95rem; color: var(--text); }
.info-val a  { color: var(--blue); font-weight: 600; }
.info-val a:hover { text-decoration: underline; }

.area-tags   { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.area-tag {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: .2rem .75rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  height: 400px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.25rem;
}
.cta-band h2  { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; margin-bottom: .65rem; }
.cta-band p   { color: #c0ceea; margin-bottom: 1.75rem; max-width: 520px; margin-left: auto; margin-right: auto; font-size: .95rem; }
.cta-band-btns{ display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ── TIPS / CONTENT ── */
.tips-article { max-width: 800px; margin: 0 auto; }
.tips-article h2 { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin: 2.5rem 0 .75rem; }
.tips-article h2:first-child { margin-top: 0; }
.tips-article p  { color: var(--gray); font-size: .95rem; line-height: 1.8; margin-bottom: 1rem; }
.tips-article ul { margin: .75rem 0 1rem 1.25rem; }
.tips-article ul li { color: var(--gray); font-size: .95rem; line-height: 1.8; margin-bottom: .35rem; }
.tip-box {
  background: var(--light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.3rem;
  margin: 1.25rem 0;
  font-size: .9rem;
  color: var(--text);
}
.tip-box strong { color: var(--navy); }

/* ── PROTECTION PAGE ── */
.protect-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.protect-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}
.protect-icon  { font-size: 2rem; margin-bottom: .75rem; }
.protect-title { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
.protect-desc  { font-size: .88rem; color: var(--gray); line-height: 1.6; }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: .6rem 1.25rem;
  font-size: .82rem;
  color: var(--gray);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 .35rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: #c0ceea;
  padding: 3rem 1.25rem 1.5rem;
}
.footer-inner  { max-width: var(--max); margin: 0 auto; }
.footer-grid   { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand .logo    { color: #fff; margin-bottom: .75rem; }
.footer-brand .logo span { color: #94a3c0; }
.footer-tagline { font-size: .86rem; color: #94a3c0; line-height: 1.65; margin-bottom: 1rem; }
.footer-contact p     { font-size: .86rem; margin-bottom: .3rem; }
.footer-contact a     { color: #fbbf24; }
.footer-contact a:hover{ text-decoration: underline; }
.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #94a3c0;
  margin-bottom: .85rem;
}
.footer-col ul      { list-style: none; }
.footer-col ul li + li { margin-top: .4rem; }
.footer-col ul a    { font-size: .86rem; color: #c0ceea; transition: color .18s; }
.footer-col ul a:hover { color: #fbbf24; }
.footer-bottom {
  border-top: 1px solid #1e3666;
  padding-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .4rem;
  font-size: .78rem;
  color: #6b7ea8;
}

/* ── AVAILABILITY BADGES ── */
.avail-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 20px;
  margin-bottom: .75rem;
  letter-spacing: .02em;
}
.avail-yes {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #bbf7d0;
}
.avail-no {
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
.btn-waitlist {
  background: var(--gray) !important;
  border-color: var(--gray) !important;
}
#avail-timestamp {
  text-align: center;
  font-size: .78rem;
  color: var(--gray);
  margin-top: 1.5rem;
}

/* ── WAITLIST MODAL ── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem 2rem 1.75rem;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  position: relative;
  animation: modalIn .2s ease;
}
@keyframes modalIn {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}
.modal-close {
  position: absolute; top: 1rem; right: 1.1rem;
  background: none; border: none;
  font-size: 1.4rem; cursor: pointer; color: var(--gray);
  line-height: 1; padding: .2rem .4rem;
}
.modal-close:hover { color: var(--navy); }
.modal h3 { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: .3rem; }
.modal-unit-label {
  display: inline-block;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  padding: .2rem .65rem;
  margin-bottom: 1.25rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: .65rem .85rem;
  border: 2px solid var(--border);
  border-radius: 7px;
  font-size: .93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .18s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
}
.form-note { font-size: .78rem; color: var(--gray); margin-top: .3rem; }
.modal-submit {
  width: 100%;
  margin-top: .5rem;
  padding: .85rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .18s;
}
.modal-submit:hover { opacity: .88; }
.modal-success {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
.modal-success .success-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.modal-success h4 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }
.modal-success p  { font-size: .9rem; color: var(--gray); }

/* ── MOBILE STICKY BAR ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: .7rem 1rem;
  z-index: 200;
  gap: .6rem;
  border-top: 2px solid var(--accent);
}
.mobile-cta-bar .btn { flex: 1; padding: .75rem .3rem; font-size: .82rem; text-align: center; white-space: nowrap; }
.mobile-cta-bar .btn-pay { background: rgba(255,255,255,.12); color: #fff; border: 2px solid rgba(255,255,255,.3); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  /* ── Topbar: show only phone on mobile ── */
  .topbar { font-size: .78rem; padding: .35rem 1rem; }
  .topbar .topbar-addr,
  .topbar .topbar-hours { display: none; }

  /* ── Nav ── */
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    padding: .75rem 1.25rem 1rem;
    gap: .2rem;
    z-index: 99;
  }
  nav { position: relative; }
  .hamburger { display: flex; }
  .nav-ctas { display: none; }          /* sticky bar handles CTAs on mobile */
  .logo span { display: none; }         /* hide "Keewatin, MN 55753" subtitle */

  /* ── Mobile sticky CTA bar ── */
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 66px; }

  /* ── Layout ── */
  .footer-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }

  /* ── Hero ── */
  .hero { padding: 3rem 1rem 2.5rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero p.lead { font-size: .9rem; }
  .hero-checks { gap: .35rem .75rem; font-size: .82rem; }

  /* ── CTA band ── */
  .cta-band-btns { flex-direction: column; align-items: center; }
  .cta-band-btns .btn { width: 100%; max-width: 320px; }

  /* ── Trust bar: tighter on mobile ── */
  .trust-inner { gap: .3rem 1rem; font-size: .8rem; }

  /* ── Map ── */
  .map-wrap { height: 280px; }
}
@media (max-width: 480px) {
  /* ── Hero CTAs stack ── */
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; }

  /* ── Section padding ── */
  section { padding: 2.5rem 1rem; }

  /* ── Nav inner: tighter ── */
  .nav-inner { padding: .6rem 1rem; }
  .logo img  { width: 36px; height: 36px; }
  .logo { font-size: .92rem; }
}
