/* ==========================================================
   Front Range Post - site styles (v2)
   Brand: Summit Navy + Sunrise Amber only, on Bone and white.
   Tints below are derived from navy/amber, nothing new added.
   No Colorado-flag red, nothing borrowed from U-Haul orange.
   ========================================================== */
/* Self-hosted fonts (latin subsets from Google Fonts), swapped in as they load */
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/archivo-400.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/archivo-600.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Archivo"; font-style: normal; font-weight: 700; font-display: swap; src: url("/assets/fonts/archivo-700.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Archivo Black"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/archivo-black-400.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/source-sans-3-400.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 600; font-display: swap; src: url("/assets/fonts/source-sans-3-600.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

:root {
  --navy: #16324F;
  --navy-deep: #0F2439;
  --amber: #E39A3B;
  --amber-dark: #D18B2C;
  --amber-soft: #FAEDD6;
  --bone: #F5F0E6;
  --bone-warm: #FBF8F2;
  --ink: #22252A;
  --slate: #4E6D8D;        /* uppercase labels; 5.4:1 on white, 4.7:1 on bone */
  --slate-deep: #47607A;   /* muted body text (AA) */
  --surface: #FFFFFF;
  --tint: #EEF2F6;         /* navy at ~6%: panels, secondary buttons */
  --tint-2: #E2E9F0;       /* navy at ~11%: hover */
  --line: #E1E7ED;         /* cool hairline */
  --line-warm: #E6DFD2;    /* hairline on bone */
  /* Radius scale: small chips, default controls, large surfaces */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-float: 0 8px 28px rgba(22, 50, 79, 0.10);
  --shadow-hero: 0 24px 60px rgba(22, 50, 79, 0.12);
  --font-black: "Archivo Black", "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-ui: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  --tap: 48px;
  --header-h: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--navy); text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: var(--radius-sm); }
.board-head :focus-visible, footer.site :focus-visible, .pickup-card-head :focus-visible { outline-color: var(--amber); }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: 0.75rem 1.25rem; z-index: 100; font-weight: 700; }
.skip-link:focus { left: 0; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 860px; }
.center { text-align: center; }
.center .section-intro, .center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Brand lockup ---------- */
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--navy); }
.brand-mark { flex: none; height: 38px; width: auto; color: var(--navy); }
.wordmark { display: block; }
.wm-top { display: block; font-family: var(--font-black); font-size: 0.98rem; letter-spacing: -0.012em; line-height: 1; color: var(--navy); }
.wm-tab { display: block; background: var(--amber); color: #fff; font-family: var(--font-black); font-size: 0.98rem; line-height: 1.2; letter-spacing: 0.06em; text-align: center; border-radius: 3px; margin-top: 2px; padding: 0 0.2rem; }

/* ---------- Signature device: the shipping-label tab ---------- */
.tab { display: inline-block; background: var(--amber); color: var(--ink); font-family: var(--font-ui); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.22rem 0.55rem; border-radius: var(--radius-sm); white-space: nowrap; }
.tab-navy { background: var(--navy); color: #fff; }
.tab-quiet { background: var(--tint); color: var(--navy); }

/* ---------- Status pill ---------- */
.pill { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-ui); font-weight: 600; font-size: 0.9rem; padding: 0.35rem 0.85rem; border-radius: 999px; white-space: nowrap; background: var(--tint); color: var(--navy); }
.pill::before { content: ""; width: 0.6rem; height: 0.6rem; border-radius: 50%; background: var(--slate); flex: none; }
.pill.is-open { background: var(--amber); color: var(--ink); }
.pill.is-open::before { background: var(--navy); }
.pill.is-soon { background: var(--amber-soft); color: var(--ink); }
.pill.is-soon::before { background: var(--amber-dark); }

/* Open/closed line under the hero and page-head CTAs. Same live slots as the pill,
   drawn as quiet text: a small dot, "Open now", a middle dot, then the detail. */
.open-line { display: flex; align-items: center; flex-wrap: wrap; gap: 0.35rem 0.6rem; margin-top: 1.5rem; font-family: var(--font-ui); font-size: 0.92rem; line-height: 1.4; color: var(--slate-deep); }
.open-line .pill, .open-line .pill.is-open, .open-line .pill.is-soon { background: none; padding: 0; border-radius: 0; font-size: inherit; font-weight: 600; color: var(--navy); gap: 0.45rem; }
.open-line .pill::before { width: 0.55rem; height: 0.55rem; }
.open-line .pill.is-open::before { background: var(--amber); }
.open-line .pill.is-soon::before { background: var(--amber-dark); }
.open-line [data-frp="status-text"]:not(:empty)::before { content: "\00b7"; margin-right: 0.6rem; color: var(--slate); }

/* ---------- Header ----------
   Flush to the top, white, no chrome at rest. A hairline and a soft shadow
   fade in only once the page has scrolled under it (site.js adds .is-stuck). */
header.site { position: sticky; top: 0; z-index: 50; background: transparent; transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.5s ease, box-shadow 0.5s ease; }
header.site.is-stuck { background: rgba(255, 255, 255, 0.96); box-shadow: 0 1px 0 var(--line), 0 10px 28px rgba(22, 50, 79, 0.06); }
header.site.is-hidden { transform: translateY(-100%); }
header.site.menu-open, header.site:focus-within { transform: none; background: var(--surface); }
.header-inner { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; min-height: var(--header-h); display: flex; align-items: center; gap: 1.4rem; }
.header-inner .brand { margin-right: auto; }
nav.primary { display: flex; align-items: center; gap: 0.1rem; }
nav.primary a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 0.65rem; color: var(--slate-deep); text-decoration: none; font-family: var(--font-ui); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.005em; transition: color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
nav.primary a:hover { color: var(--navy); }
nav.primary a[aria-current="page"] { color: var(--navy); font-weight: 700; }
.call-link { display: inline-flex; align-items: center; gap: 0.5rem; min-height: 44px; color: var(--navy); text-decoration: none; font-family: var(--font-ui); font-weight: 700; font-size: 1rem; white-space: nowrap; }
.call-link svg { width: 18px; height: 18px; color: var(--amber); flex: none; }
.call-link:hover { text-decoration: underline; text-decoration-color: var(--amber); text-decoration-thickness: 2px; text-underline-offset: 5px; }

/* ---------- Phone menu (button in the header, full panel below it) ---------- */
.menu-btn { display: none; align-items: center; gap: 0.45rem; min-height: 44px; padding: 0 0.85rem; border: 0; border-radius: var(--radius); background: var(--tint); color: var(--navy); font-family: var(--font-ui); font-weight: 600; font-size: 0.95rem; cursor: pointer; }
.menu-icon { position: relative; display: block; width: 20px; height: 14px; flex: none; }
.menu-icon i { position: absolute; left: 0; width: 20px; height: 2px; border-radius: 2px; background: currentColor; transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.2s ease; }
.menu-icon i:nth-child(1) { top: 0; }
.menu-icon i:nth-child(2) { top: 6px; }
.menu-icon i:nth-child(3) { top: 12px; }
header.site.menu-open .menu-icon i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
header.site.menu-open .menu-icon i:nth-child(2) { opacity: 0; transform: scaleX(0.2); }
header.site.menu-open .menu-icon i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.menu-panel { display: none; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: var(--tap); text-decoration: none; font-family: var(--font-ui); font-weight: 600; font-size: 1rem; padding: 0.65rem 1.3rem; border-radius: var(--radius); border: 1px solid transparent; cursor: pointer; text-align: center; transition: background 0.15s ease; }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-primary { background: var(--amber); color: var(--ink); }
.btn-primary:hover { background: var(--amber-dark); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); }
.btn-secondary { background: var(--tint); color: var(--navy); }
.btn-secondary:hover { background: var(--tint-2); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: wait; }
.cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.center .cta-row { justify-content: center; }

/* ---------- Typography ---------- */
.eyebrow { font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); display: block; margin-bottom: 0.8rem; }
h1 { font-family: var(--font-black); font-weight: 400; font-size: clamp(2.4rem, 5.2vw, 3.9rem); line-height: 1; letter-spacing: -0.015em; text-transform: uppercase; color: var(--navy); text-wrap: balance; }
h2 { font-family: var(--font-black); font-weight: 400; font-size: clamp(1.8rem, 3.3vw, 2.45rem); line-height: 1.06; letter-spacing: -0.012em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.8rem; text-wrap: balance; }
h3 { font-family: var(--font-ui); font-weight: 600; font-size: 1.28rem; line-height: 1.25; letter-spacing: -0.01em; color: var(--navy); }
h1, h2, h3, .lede, .section-intro { text-wrap: balance; }
.what p { text-wrap: pretty; }
.lede { margin: 1.1rem 0 1.6rem; font-size: 1.22rem; line-height: 1.5; color: var(--slate-deep); max-width: 34em; }
.section-intro { font-size: 1.18rem; color: var(--slate-deep); max-width: 38em; margin-bottom: 2.4rem; }
.muted { color: var(--slate-deep); }
.small { font-size: 0.92rem; }
p + p { margin-top: 0.8rem; }

/* ---------- Sections ---------- */
section { padding: 5rem 0; scroll-margin-top: calc(var(--header-h) + 1rem); }
section.band { background: var(--bone); }
section.tight { padding: 3rem 0; }
section.hairline { border-top: 1px solid var(--line); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem 2rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.section-head h2 { margin-bottom: 0.3rem; }
.section-head .section-intro { margin-bottom: 0; }
.more-link { font-family: var(--font-ui); font-weight: 600; color: var(--navy); white-space: nowrap; }

/* ---------- Hero ---------- */
.hero { position: relative; margin-top: calc(-1 * var(--header-h)); padding: calc(4rem + var(--header-h)) 0 4.5rem; overflow: hidden; }
.hero-copy { max-width: 54rem; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
/* Soft white glow behind the hero copy so the text and status line read over the peaks */
.hero-copy::before { content: ""; position: absolute; inset: -3.5rem -9rem -3.5rem; z-index: -1; pointer-events: none; background: radial-gradient(ellipse closest-side at 50% 50%, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0) 100%); }
.hero-copy .open-line { color: var(--navy); }
.hero-copy .open-line { justify-content: center; margin-top: 1.6rem; }
.hero-copy .cta-row { justify-content: center; }
.hero-copy h1 { margin: 0 auto; }
.hero-copy .lede { margin: 1.4rem auto 1.8rem; max-width: 36em; }
.hero-holiday { margin: -0.6rem 0 1.4rem; font-family: var(--font-ui); font-size: 1rem; color: var(--navy); background: var(--amber-soft); display: inline-block; padding: 0.4rem 0.9rem; border-radius: var(--radius); }
/* Hero photo: the Front Range, sitting under the transparent header and masked to white before the board */
.hero::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: max(100%, 700px); aspect-ratio: 1376 / 768; z-index: 0; pointer-events: none; background: linear-gradient(rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.14)), url("/img/hero-boxes.webp") center top / 130% auto no-repeat; -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0, 0, 0, 0.35) 65%, rgba(0, 0, 0, 0.1) 69%, transparent 72%); mask-image: linear-gradient(to bottom, #000 0%, #000 55%, rgba(0, 0, 0, 0.35) 65%, rgba(0, 0, 0, 0.1) 69%, transparent 72%); }
/* Contour texture in the lower hero, fading in under the photo, behind and below the board */
.hero::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: url("/img/hero-texture.webp") center bottom / max(100%, 1100px) auto no-repeat; opacity: 0.28; -webkit-mask-image: linear-gradient(to bottom, transparent 52%, #000 80%); mask-image: linear-gradient(to bottom, transparent 52%, #000 80%); }
/* 404 texture: contour-line illustration (navy lines on transparent) anchored to the bottom */
.notfound::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: url("/img/hero-texture.webp") center bottom / max(100%, 1100px) auto no-repeat; opacity: 0.28; }

/* ---------- The counter board (signature) ---------- */
.board { position: relative; z-index: 1; max-width: 1040px; margin: 3rem auto 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-hero); overflow: hidden; text-align: left; }
.board-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 0.75rem 1.4rem; background: var(--navy); color: #fff; }
.board-head .title { display: flex; align-items: center; gap: 0.7rem; font-family: var(--font-black); font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase; }
.board-head .clock { font-family: var(--font-ui); font-size: 0.88rem; color: #C6D4E2; font-variant-numeric: tabular-nums; }
.board-body { display: grid; grid-template-columns: 1.12fr 1fr; }
.board-col { padding: 1.4rem 1.6rem 1.5rem; }
.board-col + .board-col { border-left: 2px dashed var(--line); }
.board-col .k { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; font-family: var(--font-ui); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.9rem; }
.board-col .k a { font-weight: 600; letter-spacing: 0; text-transform: none; font-size: 0.9rem; color: var(--navy); }
.pickup-list { list-style: none; }
.pickup-list li { display: grid; grid-template-columns: 52px 1fr auto; gap: 0.2rem 0.9rem; align-items: baseline; padding: 0.55rem 0; border-top: 1px solid var(--line); }
.pickup-list .carrier-logo { grid-row: 1 / span 2; align-self: center; }
.pickup-list .carrier-logo img.usps-eagle { height: 22px; }
.pickup-list .carrier-logo img.ups { height: 26px; }
.pickup-list .carrier-logo img.fedex { height: 14px; }
.pickup-list li:first-child { border-top: 0; padding-top: 0; }
.pickup-list .name { font-family: var(--font-ui); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.pickup-list .name small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.84rem; color: var(--slate-deep); }
.pickup-list .next { display: flex; align-items: baseline; gap: 0.5rem; justify-content: flex-end; }
.pickup-list .next .tab { font-size: 0.62rem; padding: 0.16rem 0.42rem; }
.pickup-list .when { font-family: var(--font-black); font-size: 1.12rem; color: var(--navy); font-variant-numeric: tabular-nums; white-space: nowrap; }
.pickup-list .count { grid-column: 3; text-align: right; font-size: 0.84rem; color: var(--slate-deep); margin-top: -0.2rem; }
.board-track .track-form { margin-top: 0; }
.board-track .track-form input { border: 1.5px solid var(--line); background: var(--surface); color: var(--ink); }
.board-track .track-form input:focus { border-color: var(--navy); outline: none; box-shadow: 0 0 0 3px rgba(22, 50, 79, 0.12); }
.board-track .hint { margin-top: 0.8rem; font-size: 0.92rem; color: var(--slate-deep); }
.board-track .track-result { background: var(--tint); }
.board-track .track-result .found, .board-track .track-result .alt, .board-track .track-result p { color: var(--ink); }
.board-track .track-result .alt a { color: var(--navy); }
.board-track .carrier-btns .btn { background: var(--surface); border-color: var(--line); }
.board-track .track-recent { color: var(--slate-deep); }
.board-track .track-recent button { color: var(--navy); background: var(--surface); border-color: var(--line); }
.board-foot { display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; padding: 0.85rem 1.6rem; background: var(--bone); border-top: 1px solid var(--line-warm); font-size: 0.95rem; }
.board-foot span { display: inline-flex; align-items: center; gap: 0.5rem; }
.board-foot svg { width: 18px; height: 18px; color: var(--amber); flex: none; }
.board-foot b { font-family: var(--font-ui); font-weight: 600; color: var(--navy); }
.board-alert { padding: 0.7rem 1.6rem; background: var(--amber-soft); border-bottom: 1px solid var(--line-warm); font-size: 0.95rem; }
.board-alert strong { font-family: var(--font-ui); }

/* ---------- Carrier strip ---------- */
.carrier-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.2rem 0; }
.carrier-strip .container { display: flex; align-items: center; justify-content: center; gap: 0.8rem 2.4rem; flex-wrap: wrap; text-align: center; }
.carrier-strip p { font-size: 1rem; color: var(--slate-deep); }
.carrier-logo { display: flex; align-items: center; }
/* Real carrier marks, sized by height so the very different shapes read as one row */
.carrier-logo img { width: auto; height: 28px; max-width: 100%; object-fit: contain; }
.carrier-logo img.usps { height: 27px; }
.carrier-logo img.usps-eagle { height: 30px; }
.carrier-logo img.ups { height: 36px; }
.carrier-logo img.fedex { height: 20px; }

/* ---------- "What we do" grid (borderless) ---------- */
.what-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem 2.5rem; }
.what { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.what .svc-icon { display: block; width: 72px; height: 72px; margin-bottom: 1.1rem; transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1); }
.what:hover .svc-icon { transform: translateY(-4px); }
.what h3 { font-size: 1.12rem; margin-bottom: 0.35rem; }
.what p { font-size: 1rem; line-height: 1.5; color: var(--slate-deep); }
.what .go { display: inline-block; margin-top: auto; padding-top: 0.75rem; font-family: var(--font-ui); font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.what:hover .go { text-decoration: underline; text-underline-offset: 3px; }
.svc-icon img { width: 100%; height: 100%; }

/* ---------- Feature rows (copy beside a tinted visual) ---------- */
.rows { display: grid; gap: 4.5rem; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.row.flip .row-visual { order: -1; }
.row > *, .svc > *, .svc-cols > *, .answers > *, .findus-grid > *, .contact-grid > * { min-width: 0; }
.row-copy .checklist { margin: 1.1rem 0 1.5rem; }
.row-visual { background: var(--tint); border-radius: var(--radius-lg); padding: 2rem; position: relative; }
.row-visual.warm { background: var(--bone); }
.row-visual .svc-icon { position: absolute; right: 1.4rem; top: -1.6rem; width: 84px; height: 84px; }
.row-visual > .pickup-card, .row-visual > .panel { box-shadow: var(--shadow-float); }

/* ---------- Photos ---------- */
.photo { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--tint); aspect-ratio: 4 / 3; }
.photo.wide { aspect-ratio: 16 / 10; }
.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; display: block; }
.row-visual.is-photo { padding: 0; background: none; }
.photo-panel { position: relative; }
.photo-panel .float { position: absolute; left: -1.5rem; bottom: -1.5rem; width: min(88%, 440px); }
.mini-rates { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-hero); overflow: hidden; }
.mini-rate { display: grid; gap: 0.15rem; padding: 0.8rem 0.9rem; justify-items: start; }
.mini-rate + .mini-rate { border-left: 1px solid var(--line); }
.mini-rate .n { font-family: var(--font-ui); font-weight: 600; font-size: 0.86rem; color: var(--slate-deep); }
.mini-rate .p { font-family: var(--font-black); font-size: 1.2rem; color: var(--navy); line-height: 1.1; font-variant-numeric: tabular-nums; }
.mini-rate .p small { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600; color: var(--slate-deep); }
.mini-rate .tab { font-size: 0.62rem; padding: 0.16rem 0.42rem; margin-top: 0.2rem; }
.svc-visual .photo { border-radius: var(--radius); }
.svc.stretch { align-items: stretch; }
.svc.stretch .photo { aspect-ratio: auto; min-height: 320px; }
.contact-side .photo { aspect-ratio: 5 / 4; }

/* ---------- Service cards (generic) ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.service-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: border-color 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1); }
a.service-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.service-card h3 { margin: 0.8rem 0 0.35rem; font-size: 1.12rem; }
.service-card p { font-size: 1rem; color: var(--slate-deep); }
.service-card .tab { margin-top: 1rem; align-self: flex-start; }
.service-card .go { margin-top: auto; padding-top: 0.9rem; font-family: var(--font-ui); font-weight: 600; color: var(--navy); font-size: 0.92rem; }
.svc-icon { display: block; width: 72px; height: 72px; }
.svc-icon img { width: 100%; height: 100%; }

/* ---------- Services page rows ---------- */
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.svc-visual { display: grid; gap: 1.5rem; }
.svc-visual.warm { background: var(--bone); }
.svc-visual .svc-icon { width: 120px; height: 120px; }
.svc-visual > .panel, .svc-visual > .pickup-card, .svc-visual > .status-card { box-shadow: var(--shadow-float); }
.svc h2 { margin-bottom: 0.6rem; }
.svc .section-intro { margin-bottom: 1.4rem; }
/* Notary: availability card with the hours inside; plain right column with a large icon and the checklist */
.svc.notary { align-items: center; }
.notary-aside .svc-icon { width: 200px; height: 200px; margin-bottom: 1.4rem; }
.notary-aside .checklist { margin: 0; }
.status-card .status-lines { padding-top: 1.1rem; }
.status-card table.hours { font-size: 1rem; }
.svc-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: start; }
.checklist { list-style: none; margin: 1rem 0 1.5rem; }
.checklist li { padding-left: 2.1rem; position: relative; margin-bottom: 0.65rem; font-size: 1.06rem; }
.checklist li::before { content: ""; position: absolute; left: 0; top: 0.25rem; width: 1.3rem; height: 1.3rem; border-radius: 50%; background: var(--navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23E39A3B' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 62% no-repeat; }
.jump-links { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.6rem; }
.jump-links a { display: inline-flex; align-items: center; min-height: 44px; padding: 0.3rem 0.95rem; background: var(--tint); border-radius: 999px; font-family: var(--font-ui); font-weight: 600; font-size: 0.92rem; color: var(--navy); text-decoration: none; }
.jump-links a:hover { background: var(--navy); color: #fff; }

/* ---------- Page header (subpages) ---------- */
.page-head { padding: 3.5rem 0 3rem; border-bottom: 1px solid var(--line); }
.page-head .container { display: grid; grid-template-columns: 1fr 220px; gap: 2.5rem; align-items: center; }
.page-head .open-line { margin-top: 1.4rem; }
.page-head .lede { margin-bottom: 0; }
.page-head .cta-row { margin-top: 1.5rem; }
.page-icon-wrap { width: 220px; height: 220px; background: var(--tint); border-radius: var(--radius-lg); display: grid; place-items: center; }
.page-icon-wrap img { width: 160px; height: 160px; }
/* Page header with a full-bleed video that dissolves into the flat background behind the copy */
.page-head-media { position: relative; overflow: hidden; border-bottom: 0; background: var(--bone); padding: 4.5rem 0 4rem; }
.page-head-media .container { position: relative; z-index: 1; grid-template-columns: minmax(0, 36rem); }
.page-media { position: absolute; inset: 0 0 0 auto; width: 60%; z-index: 0; pointer-events: none; -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.6) 30%, #000 55%); mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.6) 30%, #000 55%); }
.page-media video { display: block; width: 100%; height: 100%; object-fit: cover; }
/* Chips sit on the warm ground here, so they lift off it in white rather than the cool tint */
.page-head-media .jump-links a { background: rgba(255, 255, 255, 0.72); }
.page-head-media .jump-links a:hover { background: var(--navy); color: #fff; }

/* ---------- Cards / panels ---------- */
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.panel-head { background: var(--navy); color: #fff; padding: 0.85rem 1.4rem; font-family: var(--font-black); font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.panel-head .clock { font-family: var(--font-ui); font-size: 0.85rem; letter-spacing: 0; text-transform: none; color: #C6D4E2; }
.panel-body { padding: 1.4rem; }
.panel-foot { padding: 0.85rem 1.4rem; background: var(--bone); border-top: 1px solid var(--line-warm); font-size: 0.92rem; color: var(--slate-deep); }
.panel-foot a { font-weight: 600; }

/* ---------- Status card ---------- */
.status-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.status-card-body { padding: 1.35rem 1.4rem; display: grid; gap: 1rem; }
.status-main { display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; }
.status-main .pill { font-size: 1rem; padding: 0.45rem 1rem; }
.status-detail { font-family: var(--font-ui); font-weight: 600; font-size: 1.08rem; color: var(--navy); }
.status-detail small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.95rem; color: var(--slate-deep); }
.status-note { font-size: 0.98rem; color: var(--slate-deep); }
.status-note strong { color: var(--ink); }
.status-lines { display: grid; gap: 0.55rem; border-top: 1px solid var(--line); padding-top: 1rem; }
.status-line { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 1rem; }
.status-line svg { width: 22px; height: 22px; flex: none; color: var(--amber); margin-top: 0.15rem; }
.status-line b { font-family: var(--font-ui); font-weight: 600; color: var(--navy); }

/* ---------- Pickup card (full, with logos) ---------- */
.pickup-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.pickup-card-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.8rem 1.25rem; background: var(--navy); color: #fff; flex-wrap: wrap; }
.pickup-card-head .title { font-family: var(--font-black); font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase; }
.pickup-card-head .clock { font-family: var(--font-ui); font-size: 0.85rem; color: #C6D4E2; font-variant-numeric: tabular-nums; }
.pickup-row { display: grid; grid-template-columns: 92px 1fr auto; gap: 0.9rem; align-items: center; padding: 0.72rem 1.25rem; }
.pickup-row + .pickup-row { border-top: 1px solid var(--line); }
.pickup-alert { padding: 0.75rem 1.25rem; background: var(--amber-soft); font-size: 0.95rem; border-bottom: 1px solid var(--line-warm); }
.pickup-alert strong { font-family: var(--font-ui); }
.pickup-name { font-family: var(--font-ui); font-weight: 600; font-size: 0.98rem; line-height: 1.25; color: var(--ink); }
.pickup-name small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.82rem; line-height: 1.35; color: var(--slate-deep); }
.pickup-next { text-align: right; }
.pickup-next .when-row { display: flex; align-items: baseline; justify-content: flex-end; gap: 0.5rem; }
.pickup-next .tab { font-size: 0.62rem; padding: 0.16rem 0.42rem; }
.pickup-next .when { font-family: var(--font-black); font-size: 1.16rem; color: var(--navy); font-variant-numeric: tabular-nums; white-space: nowrap; letter-spacing: -0.01em; }
.pickup-next .count { display: block; font-size: 0.8rem; color: var(--slate-deep); }
.pickup-card-foot { padding: 0.75rem 1.25rem; background: var(--bone); border-top: 1px solid var(--line-warm); font-size: 0.88rem; color: var(--slate-deep); }
.pickup-card-foot a { color: var(--navy); font-weight: 600; }

/* ---------- Tracking (standalone box, /track) ---------- */
.track-box { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 2.2rem; }
.track-box h2, .track-box h3 { color: #fff; }
.track-box p { color: #C6D4E2; }
.track-form { display: grid; grid-template-columns: 1fr auto; gap: 0.7rem; margin-top: 1.2rem; }
.track-form input { min-height: 54px; font-family: var(--font-ui); font-size: 1.15rem; padding: 0.6rem 1rem; border: 1.5px solid #fff; border-radius: var(--radius); background: #fff; color: var(--ink); letter-spacing: 0.02em; width: 100%; }
.track-form input::placeholder { color: #7B8896; letter-spacing: 0; }
.track-form .btn { min-height: 54px; font-size: 1.05rem; }
.track-result { margin-top: 1.1rem; background: rgba(255,255,255,0.08); border-radius: var(--radius); padding: 1rem 1.2rem; display: none; }
.track-result.show { display: block; }
.track-result .found { font-family: var(--font-ui); font-weight: 600; font-size: 1.05rem; color: #fff; }
.track-result .found .tab { margin-left: 0.4rem; vertical-align: middle; }
.track-result .alt { margin-top: 0.7rem; font-size: 0.95rem; }
.track-result .alt a { color: #fff; text-decoration-color: var(--amber); font-weight: 600; }
.carrier-btns { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.7rem; }
.carrier-btns .btn { font-size: 0.95rem; padding: 0.45rem 1rem; background: #fff; color: var(--navy); border-color: #fff; }
.carrier-btns .btn:hover { background: var(--amber); border-color: var(--amber); color: var(--ink); }
.track-recent { margin-top: 1rem; font-size: 0.92rem; color: #C6D4E2; display: none; }
.track-recent.show { display: block; }
.track-recent button { font: inherit; font-family: var(--font-ui); font-weight: 600; color: #fff; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3); border-radius: 999px; padding: 0.25rem 0.7rem; margin: 0.3rem 0.35rem 0 0; cursor: pointer; }
.track-recent button:hover { background: var(--amber); color: var(--ink); border-color: var(--amber); }
.track-tips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.tip { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem 1.5rem; }
.tip h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.tip p { font-size: 1rem; color: var(--slate-deep); }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface); }
table.week { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--surface); font-size: 1rem; min-width: 700px; }
table.week th, table.week td { padding: 0.85rem 1rem; text-align: center; border-bottom: 1px solid var(--line); }
table.week thead th { background: var(--navy); color: #fff; font-family: var(--font-ui); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
table.week thead th:first-child { text-align: left; }
table.week tbody th { text-align: left; font-family: var(--font-ui); font-weight: 600; white-space: nowrap; color: var(--ink); }
table.week td { font-family: var(--font-ui); font-weight: 400; font-variant-numeric: tabular-nums; color: var(--ink); }
table.week tbody tr:last-child th, table.week tbody tr:last-child td { border-bottom: none; }
table.week td.today { background: var(--amber-soft); font-weight: 700; }
table.week thead th.today { background: var(--amber); color: var(--ink); }
table.week td.closed { color: var(--slate-deep); font-weight: 400; font-size: 0.85rem; }

table.hours { width: 100%; border-collapse: collapse; font-size: 1.04rem; }
table.hours td { padding: 0.55rem 0.4rem; border-bottom: 1px solid var(--line); vertical-align: top; }
table.hours td:last-child { text-align: right; font-family: var(--font-ui); font-variant-numeric: tabular-nums; font-weight: 600; white-space: nowrap; }
table.hours tr:last-child td { border-bottom: none; }
table.hours tr.today td { background: var(--amber-soft); font-weight: 700; }
table.hours tr.today td:first-child { border-radius: var(--radius-sm) 0 0 var(--radius-sm); padding-left: 0.6rem; }
table.hours tr.today td:last-child { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding-right: 0.6rem; }
table.hours td.closed { color: var(--slate-deep); font-weight: 400; }

table.rates { width: 100%; border-collapse: collapse; }
table.rates th, table.rates td { padding: 1rem 1.4rem; text-align: left; border-top: 1px solid var(--line); vertical-align: middle; }
table.rates tr:first-child th, table.rates tr:first-child td { border-top: none; }
table.rates th { font-family: var(--font-ui); font-weight: 600; color: var(--ink); }
table.rates th small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.9rem; color: var(--slate-deep); }
table.rates td.price { text-align: right; font-family: var(--font-black); font-size: 1.2rem; white-space: nowrap; color: var(--navy); font-variant-numeric: tabular-nums; }
table.rates td.price small { font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600; color: var(--slate-deep); }
table.rates td.avail { text-align: right; white-space: nowrap; }

/* ---------- Holiday list ---------- */
.holiday-list { list-style: none; display: grid; gap: 0.55rem; }
.holiday-list li { display: grid; grid-template-columns: 7.5rem 1fr; gap: 0.3rem 1rem; align-items: baseline; padding: 0.8rem 1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.holiday-list .d { font-family: var(--font-ui); font-weight: 600; color: var(--navy); white-space: nowrap; }
.holiday-list .n { font-family: var(--font-ui); font-weight: 600; }
.holiday-list .h { font-size: 0.95rem; color: var(--slate-deep); grid-column: 2; }
.holiday-list .h .tab { margin-right: 0.4rem; vertical-align: middle; }
.holiday-list li.is-today { border-color: var(--amber); background: var(--amber-soft); }
.holiday-empty { color: var(--slate-deep); }
/* Compact holiday rows (home panel): date, name, short status */
.holiday-rows { list-style: none; }
.holiday-rows li { display: grid; grid-template-columns: 6.6rem 1fr auto; gap: 0.15rem 1rem; align-items: baseline; padding: 0.6rem 0; border-top: 1px solid var(--line); }
.holiday-rows li:first-child { border-top: 0; padding-top: 0; }
.holiday-rows li:last-child { padding-bottom: 0; }
.holiday-rows .d { font-family: var(--font-ui); font-weight: 600; font-size: 0.95rem; color: var(--navy); white-space: nowrap; }
.holiday-rows .n { font-family: var(--font-ui); font-weight: 600; font-size: 1rem; color: var(--ink); white-space: nowrap; }
.holiday-rows .s { font-size: 0.95rem; line-height: 1.35; color: var(--slate-deep); text-align: right; max-width: 15rem; }
.holiday-rows .s.is-closed { font-family: var(--font-ui); font-weight: 700; color: var(--navy); }
.holiday-rows li.is-today .d { color: var(--amber-dark); }
.panel-foot .open-line { margin-top: 0; }

/* ---------- Reviews (borderless quotes, three across) ---------- */
.review-source { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem; font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }
.review-source img { height: 26px; width: auto; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.review { display: flex; flex-direction: column; gap: 0.8rem; margin: 0; }
.review-stars { display: flex; gap: 0.15rem; color: var(--amber); }
.review-stars svg { width: 18px; height: 18px; }
.review-quote { font-size: 1.12rem; line-height: 1.55; color: var(--ink); text-wrap: pretty; }
.review-by { font-family: var(--font-ui); font-weight: 600; color: var(--navy); margin-top: auto; }
.review-by small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.9rem; color: var(--slate-deep); margin-top: 0.15rem; }

/* ---------- Home: Visit us (photo + address, hours panel + directions) ---------- */
.visit-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: stretch; }
.visit-photo { position: relative; }
.visit-photo .photo { height: 100%; aspect-ratio: auto; min-height: 440px; }
.visit-card { position: absolute; left: 1.25rem; bottom: 1.25rem; max-width: calc(100% - 2.5rem); background: var(--surface); border-radius: var(--radius); padding: 0.85rem 1.1rem; box-shadow: var(--shadow-float); font-family: var(--font-ui); font-weight: 600; font-size: 1rem; line-height: 1.35; color: var(--navy); }
.visit-card .k { display: block; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.2rem; }
.visit-side { display: flex; flex-direction: column; gap: 1.2rem; }
.visit-side .panel { box-shadow: var(--shadow-float); }
.visit-note { font-size: 1rem; color: var(--slate-deep); }
.visit-note b { font-family: var(--font-ui); font-weight: 600; color: var(--navy); }

/* ---------- Find us ---------- */
.findus-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2rem; align-items: stretch; }
.map-frame { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; background: var(--surface); }
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.7rem; display: flex; flex-direction: column; gap: 1.2rem; }
.info-line { font-size: 1.06rem; }
.info-line .k { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); display: block; margin-bottom: 0.25rem; }
.info-line a { color: var(--navy); font-weight: 600; }
.directions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.notes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.note-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.note-card svg { width: 30px; height: 30px; flex: none; color: var(--amber); }
.note-card h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.note-card p { font-size: 1rem; color: var(--slate-deep); }

/* ---------- "Can I ship this?" ---------- */
.ship-grid { display: grid; grid-template-columns: 360px 1fr; gap: 2rem; align-items: start; }
.ship-check { position: sticky; top: calc(var(--header-h) + 1rem); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; }
.ship-check label { display: block; font-family: var(--font-ui); font-weight: 600; margin-bottom: 0.4rem; }
.ship-check input[type="search"] { width: 100%; min-height: 54px; font-family: var(--font-ui); font-size: 1.1rem; padding: 0.6rem 1rem; border: 1.5px solid var(--navy); border-radius: var(--radius); background: #fff; color: var(--ink); }
.ship-quick { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.8rem; }
.ship-quick button { font-family: var(--font-ui); font-weight: 600; font-size: 0.88rem; color: var(--navy); background: var(--tint); border: 0; border-radius: 999px; padding: 0.35rem 0.8rem; min-height: 36px; cursor: pointer; }
.ship-quick button:hover { background: var(--navy); color: #fff; }
.ship-legend { display: grid; gap: 0.55rem; margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--line); font-size: 0.92rem; color: var(--slate-deep); }
.ship-legend span { display: inline-flex; align-items: center; gap: 0.5rem; }
.ship-check .small { margin-top: 1.1rem; font-size: 0.9rem; }
.ship-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 0.3rem 1.4rem 1rem; }
.ship-results { list-style: none; }
.ship-results li { display: grid; grid-template-columns: 6rem 1fr; gap: 0.2rem 1rem; align-items: start; padding: 0.85rem 0; border-top: 1px solid var(--line); }
.ship-results li:first-child { border-top: 0; }
.ship-results .item { font-family: var(--font-ui); font-weight: 600; font-size: 1.04rem; padding-top: 0.1rem; }
.ship-results .note { grid-column: 2; font-size: 0.98rem; color: var(--slate-deep); }
.badge-ok, .badge-ask, .badge-no { display: inline-block; min-width: 5.6rem; text-align: center; font-family: var(--font-ui); font-weight: 700; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.55rem; border-radius: var(--radius-sm); margin-top: 0.15rem; }
.badge-ok { background: var(--amber); color: var(--ink); }
.badge-ask { background: var(--amber-soft); color: var(--ink); border: 1px solid var(--amber); }
.badge-no { background: var(--navy); color: #fff; }
.ship-empty { display: block; margin: 1rem 0 0.6rem; padding: 1rem; border: 1px dashed var(--line); border-radius: var(--radius); color: var(--slate-deep); }
.ship-more { padding: 0.9rem 0 0.2rem; border-top: 1px solid var(--line); font-family: var(--font-ui); font-weight: 600; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { display: block; font-family: var(--font-ui); font-weight: 600; font-size: 1rem; margin-bottom: 0.35rem; color: var(--ink); }
.field label small { font-weight: 400; color: var(--slate-deep); font-family: var(--font-body); }
.field input, .field textarea, .field select { width: 100%; min-height: 52px; font-family: var(--font-body); font-size: 1.1rem; padding: 0.6rem 0.9rem; border: 1.5px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--navy); outline: none; box-shadow: 0 0 0 3px rgba(22, 50, 79, 0.12); }
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: 0.9rem; color: var(--slate-deep); margin-top: 0.3rem; }
.field input[type="file"] { padding: 0.75rem 0.9rem; background: var(--tint); border-style: dashed; cursor: pointer; }
.photo-previews { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 0.6rem; }
.photo-previews img { width: 88px; height: 88px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); }
.form-status { display: none; padding: 1rem 1.2rem; border-radius: var(--radius); font-family: var(--font-ui); font-weight: 400; }
.form-status.show { display: block; }
.form-status.ok { background: var(--amber-soft); border: 1px solid var(--amber); color: var(--ink); }
.form-status.err { background: var(--tint); border: 1px solid var(--navy); color: var(--navy); }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }
.form-note { font-size: 0.92rem; color: var(--slate-deep); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: start; }
.contact-side { display: grid; gap: 1.2rem; }
.big-call { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 1.6rem; }
.big-call .k { font-family: var(--font-ui); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 0.4rem; }
.big-call a.num { display: block; font-family: var(--font-black); font-size: clamp(1.5rem, 4vw, 2rem); color: #fff; text-decoration: none; letter-spacing: -0.01em; line-height: 1.2; }
.big-call a.num:hover { color: var(--amber); }
.big-call p { color: #C6D4E2; font-size: 0.98rem; margin-top: 0.5rem; }

/* ---------- U-Haul (navy-only per brand rule) ---------- */
/* "Authorized dealer" lockup: the U-Haul mark beside a small caps label, in place of the eyebrow */
.dealer-mark { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--slate); }
.dealer-mark img { height: 32px; width: auto; flex: none; }
.uhaul-art { text-align: center; }
.uhaul-art img { width: 100%; max-width: 240px; height: auto; margin: 0 auto; }
.svc.uhaul .btn-primary { background: var(--navy); color: #fff; }
.svc.uhaul .btn-primary:hover { background: var(--navy-deep); }
.svc.uhaul .tab { background: var(--navy); color: #fff; }
.row.uhaul .btn-primary { background: var(--navy); color: #fff; }

/* ---------- 404 ---------- */
.notfound { position: relative; overflow: hidden; padding: 4.5rem 0 6rem; text-align: center; }
.notfound .container { position: relative; z-index: 1; }
.nf-code { font-family: var(--font-black); font-size: clamp(6rem, 18vw, 11rem); line-height: 0.9; letter-spacing: -0.04em; color: var(--navy); margin-bottom: 1.2rem; }
.notfound h1 { margin: 0 auto; }
.notfound .lede { margin: 1rem auto 1.6rem; max-width: 32em; }
.notfound .cta-row { justify-content: center; }
.notfound .jump-links { justify-content: center; margin-top: 2.2rem; }

/* ---------- Legal and accessibility pages ---------- */
.page-head.plain .container { grid-template-columns: 1fr; }
.legal { max-width: 46em; }
.legal .updated { font-family: var(--font-ui); font-size: 0.9rem; color: var(--slate-deep); margin-bottom: 2rem; }
.legal h2 { font-size: 1.05rem; letter-spacing: 0.08em; margin: 2.4rem 0 0.75rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { font-size: 1.08rem; }
.legal p { margin-bottom: 0.95rem; }
.legal ul { padding-left: 1.3rem; margin: 0 0 1.1rem; }
.legal li { margin-bottom: 0.45rem; }
.legal .callout { background: var(--tint); border-radius: var(--radius); padding: 1rem 1.2rem; margin: 1.4rem 0; }
.legal .callout p { margin: 0; font-size: 1rem; color: var(--slate-deep); }

/* ---------- Footer ---------- */
/* Navy footer with the contour texture washed across it, white lines at low opacity */
footer.site { position: relative; overflow: hidden; background: var(--navy); color: #C6D4E2; padding: 5.5rem 0 2.5rem; }
footer.site::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: url("/img/footer-texture.webp") center bottom / max(100%, 1200px) auto no-repeat; opacity: 0.07; }
footer.site .container { position: relative; z-index: 1; }
.foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; padding-bottom: 3.5rem; }
.foot-h { font-family: var(--font-black); font-size: 1.05rem; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; margin-bottom: 1.3rem; }
footer.site a { color: #C6D4E2; text-decoration: none; }
footer.site a:hover { color: #fff; text-decoration: underline; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 0.65rem; }
.foot-lockup { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.2rem; }
.foot-lockup .brand-mark { height: 64px; color: var(--bone); }
.foot-lockup .wm-top { color: #fff; font-size: 1.5rem; }
.foot-lockup .wm-tab { font-size: 1.5rem; }
.foot-tagline { font-family: var(--font-black); font-size: 1.35rem; color: #fff; text-transform: uppercase; letter-spacing: -0.005em; line-height: 1.15; max-width: 16em; margin-bottom: 1rem; }
/* Contact block: the phone leads, then address, email and today's hours on matching icon lines */
.foot-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 0.8rem; margin-top: 1.4rem; }
.foot-call, .foot-line { display: inline-flex; align-items: center; gap: 0.65rem; font-family: var(--font-ui); }
.foot-call { font-weight: 600; font-size: 1.15rem; color: #fff !important; }
.foot-line { font-weight: 400; font-size: 0.98rem; }
.foot-call svg, .foot-line svg { width: 20px; height: 20px; flex: none; color: var(--amber); }
.foot-bottom { border-top: 1px solid rgba(198, 212, 226, 0.22); padding-top: 2rem; display: grid; gap: 0.9rem; }
.foot-row { display: flex; justify-content: space-between; align-items: center; gap: 0.8rem 2rem; flex-wrap: wrap; }
.foot-copy { font-family: var(--font-ui); font-size: 0.95rem; color: #C6D4E2; }
.foot-legal { display: flex; flex-wrap: wrap; gap: 0.4rem 1.75rem; font-family: var(--font-ui); font-weight: 600; font-size: 0.95rem; }
.foot-legal a { color: #fff; }
.foot-disclaimer { font-size: 0.85rem; line-height: 1.5; color: #90A4B8; max-width: 64em; }

/* ---------- Answers layout helpers ---------- */
.answers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.answers-2 { grid-template-columns: 1fr 1fr; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .what-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
  /* Header: brand + phone on the first row, nav on its own row beneath */
  :root { --header-h: 104px; }
  .header-inner { flex-wrap: wrap; min-height: 0; padding-top: 0.75rem; padding-bottom: 0.35rem; gap: 0 1rem; }
  nav.primary { order: 3; flex-basis: 100%; margin-left: -0.75rem; }
  nav.primary a { min-height: 44px; }
}
@media (max-width: 960px) {
  .findus-grid, .contact-grid, .svc-cols, .svc, .row, .row.flip, .visit-grid, .ship-grid { grid-template-columns: 1fr; }
  .ship-check { position: static; }
  .review-grid { grid-template-columns: 1fr; gap: 2rem; }
  .visit-photo .photo { aspect-ratio: 4 / 3; min-height: 0; }
  .row.flip .row-visual { order: 0; }
  .answers, .answers-2, .track-tips { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .board-body { grid-template-columns: 1fr; }
  .board-col + .board-col { border-left: 0; border-top: 2px dashed var(--line); }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .photo-panel .float { position: relative; left: auto; bottom: auto; width: auto; margin: -2rem 0.8rem 0; }
  .svc.stretch .photo { min-height: 0; aspect-ratio: 4 / 3; }
  .page-head .container { grid-template-columns: 1fr; }
  /* Phones and tablets: the clip becomes a band under the copy, fading up into the background */
  .page-head-media { padding-bottom: 0; }
  .page-head-media .container { grid-template-columns: 1fr; }
  .page-media { position: relative; inset: auto; width: auto; height: 260px; margin-top: 2.5rem; -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 30%); mask-image: linear-gradient(to bottom, transparent 0%, #000 30%); }
  .page-icon-wrap { width: 132px; height: 132px; order: -1; }
  .page-icon-wrap img { width: 96px; height: 96px; }
}
@media (max-width: 720px) {
  body { font-size: 1.08rem; }
  section { padding: 3.2rem 0; }
  .container { padding: 0 1.1rem; }
  :root { --header-h: 56px; }
  .header-inner { flex-wrap: nowrap; min-height: var(--header-h); padding: 0 1.1rem; gap: 0.6rem; }
  .brand { gap: 0.5rem; }
  .brand-mark { height: 30px; }
  .wm-top, .wm-tab { font-size: 0.88rem; }
  nav.primary { display: none; }
  /* Phones: the number becomes a square amber call button, the links move behind a Menu button */
  .call-link { position: relative; background: var(--amber); color: var(--ink); width: 42px; min-height: 44px; padding: 0; justify-content: center; border-radius: var(--radius); }
  .call-link svg { width: 18px; height: 18px; color: var(--navy); }
  .call-link .call-num { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
  .call-link:hover { text-decoration: none; background: var(--amber-dark); }
  .menu-btn { display: inline-flex; }
  .menu-panel { display: block; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; background: var(--surface); box-shadow: inset 0 1px 0 var(--line); padding: 0.6rem 1.1rem calc(2rem + env(safe-area-inset-bottom, 0)); visibility: hidden; opacity: 0; transform: translateY(-10px); pointer-events: none; transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0s linear 0.4s; }
  header.site.menu-open .menu-panel { visibility: visible; opacity: 1; transform: none; pointer-events: auto; transition-delay: 0s; }
  .menu-panel .item { display: flex; align-items: center; min-height: 54px; font-family: var(--font-ui); font-weight: 600; font-size: 1.2rem; color: var(--ink); text-decoration: none; }
  .menu-panel .item[aria-current="page"] { color: var(--navy); font-weight: 700; }
  .menu-foot { margin-top: 1.2rem; padding-top: 1.4rem; border-top: 1px solid var(--line); display: grid; gap: 1rem; }
  .menu-foot .btn { width: 100%; justify-content: center; }
  .menu-foot .open-line { margin-top: 0; }
  body.menu-open { overflow: hidden; }
  .hero { padding: calc(2.4rem + var(--header-h)) 0 3rem; }
  .hero-copy .lede { font-size: 1.12rem; }
  .board { margin-top: 2rem; }
  .board-col { padding: 1.2rem 1.15rem 1.3rem; }
  .board-foot { padding: 0.8rem 1.15rem; gap: 0.4rem 1.2rem; }
  .what-grid { grid-template-columns: 1fr; gap: 0; }
  .what { display: grid; grid-template-columns: 48px 1fr; column-gap: 1rem; align-items: center; padding: 0.85rem 0; }
  .what + .what { border-top: 1px solid var(--line); }
  .what .svc-icon { grid-row: 1 / span 2; width: 48px; height: 48px; margin: 0; }
  .what h3 { font-size: 1.05rem; margin-bottom: 0.1rem; align-self: end; }
  .what p { display: none; }
  .what .go { margin-top: 0; padding-top: 0; font-size: 0.86rem; align-self: start; }
  .rows { gap: 3rem; }
  .row { gap: 1.6rem; }
  .row-visual { padding: 1.2rem; }
  .mini-rate { padding: 0.6rem 0.55rem; }
  .mini-rate .p { font-size: 1.05rem; }
  .row-visual .svc-icon { width: 64px; height: 64px; right: 1rem; top: -1.2rem; }
  .svc-visual { padding: 1.2rem; }
  .notary-aside .svc-icon { width: 140px; height: 140px; margin-bottom: 1rem; }
  .pickup-row { grid-template-columns: 76px 1fr; gap: 0.3rem 0.85rem; padding: 0.85rem 1.15rem; }
  .pickup-row .carrier-logo { grid-row: span 2; }
  .pickup-next { text-align: left; }
  .pickup-next .when-row { justify-content: flex-start; }
  .service-grid { grid-template-columns: 1fr; }
  .track-box { padding: 1.4rem; }
  .track-form { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .directions, .notes-grid { grid-template-columns: 1fr; }
  .holiday-list li { grid-template-columns: 1fr; }
  .holiday-rows li { grid-template-columns: 6.2rem 1fr; }
  .holiday-rows .n { white-space: normal; }
  .holiday-rows .s { grid-column: 2; text-align: left; max-width: none; }
  .holiday-list .h { grid-column: 1; }
  .ship-results li { grid-template-columns: 6.3rem 1fr; }
  .ship-results .badge-ok, .ship-results .badge-ask, .ship-results .badge-no { white-space: nowrap; min-width: 0; width: 100%; }
  .ship-results .note { grid-column: 1 / -1; }
  .ship-panel { padding: 0.2rem 1rem 0.8rem; }
  .foot-top { grid-template-columns: 1fr; gap: 2rem; }
  .page-head { padding: 2.2rem 0 2.4rem; }
  .page-head .container { gap: 1.2rem; }
  .page-icon-wrap { width: 84px; height: 84px; }
  .page-icon-wrap img { width: 60px; height: 60px; }
  .open-line { font-size: 0.9rem; margin-top: 1.3rem; }
  .pickup-list .name small { display: none; }
  table.rates th, table.rates td { padding: 0.8rem 0.9rem; }
  table.rates td.avail { white-space: normal; }
  table.rates td.avail .tab { white-space: normal; }
}
@media print {
  header.site, footer.site, .track-box, form { display: none; }
}

/* ---------- Services: feature sections (soft bento cards) ---------- */
.fx-head { text-align: center; max-width: 46rem; margin: 0 auto 2.4rem; }
.fx-head h2 { margin-bottom: 0.7rem; }
.fx-head .section-intro { margin: 0 auto; }
.fx-head .dealer-mark { display: flex; justify-content: center; }
.fx-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; align-items: stretch; }
.fx-grid + .fx-grid { margin-top: 1.25rem; }
.fx-4 { grid-column: span 4; } .fx-5 { grid-column: span 5; } .fx-6 { grid-column: span 6; } .fx-7 { grid-column: span 7; } .fx-8 { grid-column: span 8; }
.fx-card { margin: 0; min-width: 0; background: var(--tint); border-radius: 20px; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.fx-card h3 { font-size: 1.32rem; }
.fx-card .checklist { margin: 0; }
.fx-card .checklist li:last-child { margin-bottom: 0; }
.fx-card .cta-row { margin-top: auto; padding-top: 0.4rem; }
/* Photos fill the card edge to edge; no frame around the image */
.fx-card.visual { padding: 0; overflow: hidden; position: relative; min-height: 340px; }
.fx-card.visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.fx-card.icon { align-items: center; justify-content: center; min-height: 260px; }
.fx-card.icon .svc-icon { width: 160px; height: 160px; }
/* Widgets dropped straight into the grid pick up the card radius and fill their row */
.fx-grid > .panel, .fx-grid > .pickup-card, .fx-grid > .status-card { border-radius: 20px; display: flex; flex-direction: column; }
.fx-grid > .panel .panel-foot, .fx-grid > .status-card .panel-foot, .fx-grid > .pickup-card .pickup-card-foot { margin-top: auto; }
.ship-check, .ship-panel { border-radius: 20px; }
/* FAQ: hairline rows, native <details>, no script */
.faq { max-width: 60rem; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.25rem 0; font-family: var(--font-ui); font-weight: 600; font-size: 1.12rem; color: var(--navy); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; flex: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%2316324F' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / 18px no-repeat; transition: transform 0.2s; }
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details p { padding: 0 0 1.4rem; max-width: 50em; color: var(--slate-deep); font-size: 1.06rem; }
@media (max-width: 960px) {
  .fx-grid { grid-template-columns: 1fr; }
  .fx-4, .fx-5, .fx-6, .fx-7, .fx-8 { grid-column: auto; }
  .fx-card { padding: 1.4rem; }
  .fx-card.visual { min-height: 0; aspect-ratio: 4 / 3; }
  .fx-card.icon { min-height: 200px; }
  .fx-card.icon .svc-icon { width: 120px; height: 120px; }
}
.fx-grid.start { align-items: start; }
.fx-card .btn-secondary { background: var(--surface); }
.fx-card .btn-secondary:hover { background: var(--tint-2); }
/* Section head that sits in a grid column instead of centered above the grid */
.fx-head.left { text-align: left; max-width: none; margin: 0 0 1.6rem; }
.fx-head.left .section-intro { margin: 0; }
@media (max-width: 960px) {
  .fx-head.left { text-align: center; max-width: 46rem; margin: 0 auto 2.4rem; }
  .fx-head.left .section-intro { margin: 0 auto; }
}
/* Status card in the bento: icon sits top-right as a supporting mark, hours run full width below */
.fx-grid .status-card-body { grid-template-columns: 1fr auto; }
.fx-grid .status-card-body .status-main { grid-column: 1; grid-row: 1; }
.fx-grid .status-card-body .status-icon { grid-column: 2; grid-row: 1; width: 64px; height: 64px; }
.fx-grid .status-card-body .status-lines { grid-column: 1 / -1; }
/* Carriers: copy on the left, scattered soft logo tiles on the right */
.carriers { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 3rem; align-items: center; }
.carriers .fx-head { margin-bottom: 0; }
.carriers .section-intro { margin-bottom: 1.4rem; }
.fx-link { display: inline-flex; align-items: center; gap: 0.45rem; font-family: var(--font-ui); font-weight: 600; color: var(--navy); }
.fx-link svg { width: 18px; height: 18px; }
.carriers-tiles { display: grid; grid-template-columns: repeat(5, 104px); justify-content: space-between; row-gap: 2.8rem; padding: 2.2rem 0; }
.tile { width: 104px; height: 104px; padding: 1.1rem; border-radius: 22px; background: var(--tint); display: flex; align-items: center; justify-content: center; text-align: center; font-family: var(--font-ui); font-weight: 600; font-size: 0.86rem; line-height: 1.2; color: var(--navy); transform: translateY(var(--dy, 0)); }
.tile img { width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 960px) {
  .carriers { grid-template-columns: 1fr; gap: 2rem; }
  .carriers-tiles { grid-template-columns: repeat(auto-fill, 92px); justify-content: center; gap: 0.8rem; padding: 0; }
  .tile { width: 92px; height: 92px; transform: none; }
}
