/* ==========================================================================
   Mountain View Boat Storage — stylesheet
   Palette: deep navy (winter night) + ice blue (lake) + amber (heat/CTA)
   ========================================================================== */

:root {
  --navy-900: #071726;
  --navy-800: #0b1f33;
  --navy-700: #123049;
  --navy-600: #17405f;
  --navy-500: #1d4d70;
  --ice-500: #4fa8da;
  --ice-400: #6fbde8;
  --ice-100: #e3f1fa;
  --amber-500: #f0932b;
  --amber-600: #d97b12;
  --amber-100: #fdf0dd;
  --ink-900: #0f1720;
  --ink-700: #33404d;
  --ink-500: #5d6b7a;
  --ink-300: #9aa7b4;
  --line: #dfe6ed;
  --bg: #ffffff;
  --bg-alt: #f5f8fb;
  --green: #1f8a5b;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(7, 23, 38, .06), 0 2px 8px rgba(7, 23, 38, .06);
  --shadow-md: 0 4px 12px rgba(7, 23, 38, .08), 0 12px 32px rgba(7, 23, 38, .1);
  --shadow-lg: 0 18px 50px rgba(7, 23, 38, .18);
  --maxw: 1160px;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: "Barlow Condensed", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-500); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--navy-800);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  font-weight: 700;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.4rem, 6.5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
h4 { font-size: 1.05rem; letter-spacing: .04em; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.wrap--narrow { max-width: 780px; }

.section { padding: clamp(48px, 8vw, 96px) 0; }
.section--tight { padding: clamp(36px, 5vw, 64px) 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy-800); color: #cfe0ee; }
.section--navy h2, .section--navy h3 { color: #fff; }

.eyebrow {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy-500);
  margin: 0 0 .6em;
  display: block;
}
.section--navy .eyebrow { color: var(--amber-500); }

.lede { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-700); }
.section--navy .lede { color: #b9cee0; }

.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease;
  line-height: 1.1;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--amber-500); outline-offset: 3px; }

.btn--primary { background: var(--amber-500); color: #241300; box-shadow: 0 6px 18px rgba(240, 147, 43, .35); }
.btn--primary:hover { background: var(--amber-600); color: #1a0d00; }

.btn--nav { background: var(--navy-800); color: #fff; }
.btn--nav:hover { background: var(--navy-700); color: #fff; }

.btn--ghost { border-color: currentColor; color: var(--navy-800); background: transparent; }
.btn--ghost:hover { background: var(--navy-800); color: #fff; border-color: var(--navy-800); }

.btn--ghost-light { border-color: rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn--ghost-light:hover { background: #fff; color: var(--navy-800); border-color: #fff; }

.btn--lg { font-size: 1.3rem; padding: 18px 38px; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--amber-500);
  color: #241300;
  text-align: center;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .95rem;
  padding: 9px 16px;
}
.announce a { color: inherit; text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 31, 51, .97);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.brand img { height: 40px; width: auto; }
.brand-text { font-family: var(--display); text-transform: uppercase; line-height: 1; color: #fff; }
.brand-text strong { display: block; font-size: 1.18rem; letter-spacing: .02em; font-weight: 700; }
.brand-text span { display: block; font-size: .68rem; letter-spacing: .22em; color: var(--ice-400); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: #d5e3ef;
  text-decoration: none;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 1.02rem;
  font-weight: 500;
  padding: 9px 13px;
  border-radius: 8px;
}
.nav a:hover, .nav a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.1); }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-phone {
  display: inline-flex; align-items: center; gap: 7px;
  color: #fff; text-decoration: none;
  font-family: var(--display); font-size: 1.24rem; font-weight: 600; letter-spacing: .02em;
  white-space: nowrap;
}
.header-phone:hover { color: var(--amber-500); }
.header-phone svg { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid rgba(255,255,255,.3);
  color: #fff; border-radius: 10px; padding: 9px 11px; cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}
/* Hero background images are declared HERE, not inline on the page, because a
   url() inside a custom property resolves relative to this stylesheet. */
.hero--home { --hero-img: url("../img/hero-facility.jpg"); }
.hero--inside { --hero-img: url("../img/inside-storage.jpg"); }

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: center 58%;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,23,38,.94) 0%, rgba(7,23,38,.86) 38%, rgba(7,23,38,.55) 68%, rgba(7,23,38,.3) 100%);
}
@media (max-width: 939px) {
  .hero::after { background: linear-gradient(180deg, rgba(7,23,38,.9) 0%, rgba(7,23,38,.86) 55%, rgba(7,23,38,.94) 100%); }
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  padding-block: clamp(48px, 7vw, 88px);
}
@media (min-width: 940px) {
  .hero-inner { grid-template-columns: 1.05fr .95fr; gap: 56px; }
}
.hero h1 { color: #fff; margin-bottom: .3em; }
.hero h1 em { font-style: normal; color: var(--amber-500); }
.hero-sub { font-size: clamp(1.08rem, 2.2vw, 1.35rem); color: #c3d6e6; max-width: 34em; margin-bottom: 1.5em; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(79, 168, 218, .16);
  border: 1px solid rgba(111, 189, 232, .38);
  color: #d6ecf9;
  border-radius: 999px;
  padding: 7px 15px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.badge svg { color: var(--ice-400); flex-shrink: 0; }

.hero-trust {
  margin-top: 26px;
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  color: #9fb8cd; font-size: .92rem;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }

/* ---------- Quote calculator ---------- */
.quote-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  color: var(--ink-700);
}
.quote-card__head {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: #fff;
  padding: 22px 26px 20px;
}
.quote-card__head h2 { color: #fff; font-size: 1.55rem; margin: 0 0 4px; }
.quote-card__head p { color: #a9c4da; font-size: .95rem; margin: 0; }
.quote-card__body { padding: 24px 26px 28px; }

.field { margin-bottom: 20px; }
.field:last-child { margin-bottom: 0; }
.field > label, .field > .field-label {
  display: block;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.field-hint { font-size: .85rem; color: var(--ink-500); margin-top: 6px; }

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select, textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink-900);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 13px 15px;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--ice-500);
  box-shadow: 0 0 0 4px rgba(79, 168, 218, .18);
}
textarea { min-height: 120px; resize: vertical; }
select { appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%235d6b7a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px; }

.length-row { display: flex; align-items: center; gap: 14px; }
.length-row input[type="range"] { flex: 1; }
.length-out {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy-800);
  min-width: 3.6em;
  text-align: right;
  line-height: 1;
}

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  height: 8px; border-radius: 999px;
  background: linear-gradient(to right, var(--navy-500) var(--pct, 40%), #c6d2dd var(--pct, 40%));
  outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy-800); border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(7,23,38,.35); cursor: grab;
}
input[type="range"]::-moz-range-thumb {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy-800); border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(7,23,38,.35); cursor: grab;
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  position: relative;
  display: inline-flex;
}
.chip input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.chip span {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-700);
  transition: all .15s;
  cursor: pointer;
}
.chip input:checked + span {
  border-color: var(--navy-800);
  background: var(--navy-800);
  color: #fff;
}
.chip input:focus-visible + span { box-shadow: 0 0 0 4px rgba(79,168,218,.3); }

.quote-result {
  margin-top: 22px;
  background: var(--navy-800);
  border-radius: var(--radius);
  padding: 22px 24px;
  color: #fff;
  text-align: center;
}
.quote-result__label { font-size: .84rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ice-400); font-weight: 600; margin-bottom: 4px; }
.quote-result__price { font-family: var(--display); font-size: clamp(3rem, 9vw, 4rem); font-weight: 700; line-height: .95; color: #fff; }
.quote-result__price .cur { font-size: .5em; vertical-align: super; margin-right: .04em; }
.quote-result__note { font-size: .92rem; color: #a9c4da; margin-top: 6px; }
.quote-result__compare {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: .93rem; color: #c9dcea;
}
.quote-result__compare strong { color: var(--amber-500); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.section--navy .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.13); color: #c2d6e6; }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }

.icon-badge {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--ice-100);
  color: var(--navy-700);
  margin-bottom: 16px;
}
.section--navy .icon-badge { background: rgba(79,168,218,.18); color: var(--ice-400); }

/* ---------- Split ---------- */
.split { display: grid; gap: 36px; align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; gap: 54px; } .split--reverse > :first-child { order: 2; } }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; }

/* ---------- Comparison table ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 540px; }
thead th {
  background: var(--navy-800);
  color: #fff;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .98rem;
  font-weight: 600;
  text-align: left;
  padding: 15px 18px;
}
tbody td { padding: 14px 18px; border-top: 1px solid var(--line); font-size: .98rem; }
tbody tr:nth-child(even) { background: var(--bg-alt); }
td.is-us { font-weight: 700; color: var(--navy-800); background: var(--amber-100) !important; }
th.is-us { background: var(--amber-500); color: #241300; }
.table-note { font-size: .85rem; color: var(--ink-500); margin-top: 12px; }

/* ---------- Price list ---------- */
.price-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.price-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 15px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 1.02rem;
}
.price-list .len { font-family: var(--display); font-size: 1.3rem; font-weight: 600; color: var(--navy-800); text-transform: uppercase; }
.price-list .amt { font-family: var(--display); font-size: 1.6rem; font-weight: 700; color: var(--navy-800); }

/* ---------- Steps ---------- */
.steps { list-style: none; counter-reset: s; margin: 0; padding: 0; display: grid; gap: 24px; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li { counter-increment: s; position: relative; padding-top: 56px; }
.steps li::before {
  content: counter(s);
  position: absolute; top: 0; left: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--amber-500);
  color: #241300;
  font-family: var(--display); font-size: 1.35rem; font-weight: 700;
}
.steps h3 { font-size: 1.2rem; margin-bottom: .3em; }
.steps p { font-size: .96rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.faq details[open] { border-color: var(--navy-500); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 22px;
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--navy-800);
  text-transform: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute; right: 22px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2.5px solid var(--navy-500);
  border-bottom: 2.5px solid var(--navy-500);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq .faq-body { padding: 0 22px 20px; font-size: .99rem; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Service area ---------- */
.towns { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; padding: 0; margin: 0; }
.towns li {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 8px 17px;
  font-size: .95rem;
  color: #d3e3f0;
}

/* ---------- Stat strip ---------- */
.stats { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); text-align: center; }
.stat__num { font-family: var(--display); font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 700; color: var(--amber-500); line-height: 1; }
.stat__label { font-size: .95rem; color: #a9c4da; margin-top: 6px; }

/* ---------- Form ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-md);
}
.form-grid { display: grid; gap: 18px; }
@media (min-width: 620px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.req { color: #c0392b; }
.form-status {
  margin-top: 16px; padding: 14px 18px; border-radius: 11px;
  font-size: .96rem; display: none;
}
.form-status.is-ok { display: block; background: #e6f6ee; border: 1px solid #a8ddc3; color: #14603f; }
.form-status.is-err { display: block; background: #fdecea; border: 1px solid #f5c2bd; color: #96271b; }
.form-fineprint { font-size: .84rem; color: var(--ink-500); margin-top: 14px; }
.hp { display: none; }

/* ---------- Contact info blocks ---------- */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.info-list li { display: flex; gap: 15px; align-items: flex-start; }
.info-list .icon-badge { margin-bottom: 0; width: 44px; height: 44px; flex-shrink: 0; }
.info-list h4 { margin: 0 0 3px; color: var(--navy-800); }
.info-list a { font-weight: 600; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); line-height: 0; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 380px; border: 0; }

/* ---------- Final CTA ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700) 60%, #17405f);
  color: #fff;
  text-align: center;
  padding: clamp(52px, 8vw, 88px) 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #b9cee0; max-width: 44em; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #8fa7bc; padding: 56px 0 100px; font-size: .95rem; }
@media (min-width: 720px) { .site-footer { padding-bottom: 40px; } }
.footer-grid { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.site-footer h4 { color: #fff; font-size: 1rem; letter-spacing: .1em; margin-bottom: 14px; }
.site-footer a { color: #b8cddf; text-decoration: none; }
.site-footer a:hover { color: var(--amber-500); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-bottom {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: .88rem; color: #6f879c;
}

/* ---------- Sticky mobile call bar ---------- */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 70;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.15);
  box-shadow: 0 -4px 20px rgba(7,23,38,.25);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 10px;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .07em;
  font-size: 1.08rem; font-weight: 600; text-decoration: none;
}
.mobile-bar .mb-call { background: var(--navy-800); color: #fff; }
.mobile-bar .mb-quote { background: var(--amber-500); color: #241300; }
@media (min-width: 720px) { .mobile-bar { display: none; } }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: -9999px;
  background: var(--amber-500); color: #241300;
  padding: 12px 20px; border-radius: 0 0 10px 0; z-index: 200; font-weight: 600;
}
.skip:focus { left: 0; top: 0; }

/* ---------- Responsive nav ---------- */
@media (max-width: 1040px) {
  .header-phone span.ph-text { display: none; }
}
@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--navy-800);
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 12px 20px 20px;
    gap: 2px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 14px; font-size: 1.1rem; }
  .header-cta .btn--nav { display: none; }
  .header-phone span.ph-text { display: inline; }
}
/* Under ~600px the sticky bottom bar already carries Call + Reserve,
   so drop the duplicate header CTA rather than let it clip the menu button. */
@media (max-width: 620px) {
  .header-cta .btn--primary { display: none; }
  .header-phone span.ph-text { display: none; }
  .announce { font-size: .82rem; padding: 8px 14px; }
}
@media (max-width: 460px) {
  .brand-text strong { font-size: 1rem; }
  .brand-text span { letter-spacing: .16em; }
  .brand img { height: 34px; }
  .header-inner { min-height: 66px; }
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 36px; }
.mb-2 { margin-bottom: 24px; }
.mb-3 { margin-bottom: 36px; }
.small { font-size: .9rem; }
.muted { color: var(--ink-500); }
.section--navy .muted { color: #8fa7bc; }
.nowrap { white-space: nowrap; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Sticky-header-aware anchor offset ---------- */
:target, #reserve, #main, #quote { scroll-margin-top: 96px; }

/* Eyebrow stays light on dark sections (overrides the darkened default) */
.section--navy .eyebrow,
.cta-band .eyebrow,
.hero .eyebrow { color: var(--ice-400); }
.section--navy .eyebrow { color: var(--amber-500); }
.site-footer a:hover { text-decoration: underline; }
.mb-0 { margin-bottom: 0; }

/* Small label-style headings (contact blocks, footer columns) — kept at the
   correct semantic level for screen readers, sized like the old h4. */
.micro-h {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 3px;
  color: var(--navy-800);
}
.site-footer .micro-h { color: #fff; font-size: 1rem; letter-spacing: .1em; margin-bottom: 14px; }
