/* ==========================================================================
   OVERNIGHT FILING — shared stylesheet
   Palette: bg #FFFFFF | surface #F4F6F8 | text #10203A | muted #5B6B7F
            accent (navy) #1B4D8F | success (fast) #2E7D5B
   ========================================================================== */

:root {
  --bg: #ffffff;
  --surface: #f4f6f8;
  --surface-2: #eaeef3;
  --text: #10203a;
  --muted: #5b6b7f;
  --accent: #1b4d8f;
  --accent-dark: #143a6d;
  --accent-tint: #e8eff8;
  --success: #2e7d5b;
  --success-tint: #e6f2ec;
  --line: #dbe2ea;
  --radius: 6px;
  --maxw: 1140px;
  --shadow: 0 1px 2px rgba(16, 32, 58, .06), 0 8px 24px rgba(16, 32, 58, .06);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Source Sans 3", "Source Sans Pro", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-display {
  font-family: "Libre Franklin", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.35rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { margin: 0 0 1.1em; }
a  { color: var(--accent); }

img, svg { max-width: 100%; }

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

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }
.section--surface { background: var(--surface); }
.section--navy { background: var(--accent); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: #d6e2f2; }

.eyebrow {
  font-family: "Libre Franklin", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .9em;
}
.section--navy .eyebrow { color: #9dc0ee; }
.lead { font-size: 1.15rem; color: var(--muted); }
.muted { color: var(--muted); }
.small { font-size: .9rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: 14px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); }
.btn--ghost { background: transparent; color: var(--accent); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); background: var(--accent-tint); }
.btn--onnavy { background: #fff; color: var(--accent); }
.btn--onnavy:hover { background: var(--accent-tint); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Seasonal banner (SWAP THIS ONE BLOCK — see comment in HTML) ---------- */
.seasonal {
  background: var(--success);
  color: #fff;
  font-size: .95rem;
  text-align: center;
  padding: 9px 24px;
}
.seasonal strong { font-weight: 700; }
.seasonal a { color: #fff; text-underline-offset: 3px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(160%) blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 78px;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand__mark {
  width: 38px; height: 38px; flex: none;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
}
.brand__name {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: 1.06rem;
  color: var(--text);
  line-height: 1.1;
}
.brand__sub {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 400;
  font-size: .74rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: "Libre Franklin", sans-serif;
  font-size: .93rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 9px 12px;
  border-radius: var(--radius);
}
.nav a:hover { background: var(--surface); color: var(--accent); }
.nav a[aria-current="page"] { color: var(--accent); box-shadow: inset 0 -2px 0 var(--accent); border-radius: 0; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.header-phone span { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--success); }
.header-phone:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text);
  cursor: pointer;
}

/* ---------- Hero (asymmetric split) ---------- */
.hero { border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #fff 0%, var(--surface) 100%); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
  padding: 76px 0 84px;
}
.hero h1 { max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lead { max-width: 46ch; }

.hero-facts { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-facts div { font-size: .92rem; color: var(--muted); }
.hero-facts strong { display: block; font-family: "Libre Franklin", sans-serif; font-size: 1.05rem; color: var(--text); }

/* Status card */
.status-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.status-card h2 { font-size: 1.25rem; }
.status-line { display: flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 700; color: var(--success); font-family: "Libre Franklin", sans-serif; margin-bottom: 14px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px var(--success-tint); flex: none; }
.status-card ul { list-style: none; margin: 0 0 20px; padding: 0; }
.status-card li { padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: .95rem; display: flex; justify-content: space-between; gap: 14px; }
.status-card li:last-child { border-bottom: 0; }
.status-card li span { color: var(--muted); }

/* ---------- SIGNATURE: the Overnight Rail ---------- */
.rail { padding: 56px 0; }
.rail-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  counter-reset: rail;
}
.rail-track::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 13px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #10203a 0%, var(--accent) 48%, #f0a04b 88%, #ffd9a0 100%);
}
.rail-step { position: relative; padding: 40px 26px 0 0; }
.rail-step::before {
  counter-increment: rail;
  content: counter(rail);
  position: absolute;
  top: 0; left: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--accent);
  color: var(--accent);
  font-family: "Libre Franklin", sans-serif;
  font-weight: 800;
  font-size: .82rem;
  display: grid; place-items: center;
}
.rail-step:nth-child(3)::before { border-color: #f0a04b; color: #b96f1c; }
.rail-step h3 { font-size: 1.06rem; margin-bottom: .3em; }
.rail-step p { font-size: .95rem; color: var(--muted); margin: 0; }
.rail-time {
  font-family: "Libre Franklin", sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--success);
  display: block;
  margin-bottom: .35em;
}
.section--navy .rail-track::before { background: linear-gradient(90deg, #0b1c33 0%, #6f9ede 50%, #ffd9a0 100%); }
.section--navy .rail-step::before { background: var(--accent); border-color: #fff; color: #fff; }
.section--navy .rail-step p { color: #cddcf0; }
.section--navy .rail-time { color: #ffd9a0; }

/* Slim divider variant */
.rail-divider { height: 4px; background: linear-gradient(90deg, #10203a 0%, var(--accent) 48%, #f0a04b 88%, #ffd9a0 100%); border: 0; margin: 0; }

/* ---------- Trust band ---------- */
.trust { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 34px 0; }
.trust-item { display: flex; gap: 13px; align-items: flex-start; }
.trust-item svg { flex: none; margin-top: 2px; }
.trust-item strong { display: block; font-family: "Libre Franklin", sans-serif; font-size: .98rem; }
.trust-item span { font-size: .88rem; color: var(--muted); }

/* ---------- Editorial numbered service index ---------- */
.index-list { border-top: 1px solid var(--line); }
.index-row {
  display: grid;
  grid-template-columns: 96px 1fr 220px 44px;
  gap: 24px;
  align-items: center;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background .18s ease, padding .18s ease;
}
.index-row:hover { background: var(--accent-tint); padding-left: 18px; padding-right: 0; }
.index-num {
  font-family: "Libre Franklin", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--surface-2);
  letter-spacing: -.04em;
  transition: color .18s ease;
}
.index-row:hover .index-num { color: var(--accent); }
.index-row h3 { margin: 0 0 .15em; font-size: 1.28rem; }
.index-row p { margin: 0; font-size: .95rem; color: var(--muted); }
.index-meta { font-size: .9rem; color: var(--muted); }
.index-meta strong { display: block; font-family: "Libre Franklin", sans-serif; color: var(--success); font-size: .95rem; }
.index-arrow { font-size: 1.5rem; color: var(--accent); text-align: right; line-height: 1; }

/* ---------- Generic grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--wide-left { grid-template-columns: 1.25fr .75fr; }
.split--wide-right { grid-template-columns: .8fr 1.2fr; }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card--surface { background: var(--surface); border-color: transparent; }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }

/* ---------- Photo placeholder frames (replace with real photos) ---------- */
.photo {
  position: relative;
  background:
    repeating-linear-gradient(135deg, #eaeef3 0 14px, #e3e9f0 14px 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  min-height: 300px;
  color: var(--muted);
}
.photo--tall { min-height: 420px; }
.photo--short { min-height: 210px; }
.photo__label {
  font-family: "Libre Franklin", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .5em;
}
.photo__file { font-size: .85rem; font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; color: var(--muted); word-break: break-all; }
.photo svg { display: block; margin: 0 auto 12px; opacity: .55; }

/* ---------- Page header (interior pages) ---------- */
.page-head { background: var(--surface); border-bottom: 1px solid var(--line); padding: 56px 0; }
.page-head h1 { max-width: 20ch; }
.page-head .lead { max-width: 62ch; margin-bottom: 0; }
.crumbs { font-size: .87rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent); text-decoration: underline; }

/* ---------- Prose lists ---------- */
.checklist { list-style: none; padding: 0; margin: 0 0 1.4em; }
.checklist li { position: relative; padding: 7px 0 7px 30px; border-bottom: 1px solid var(--line); }
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "";
  position: absolute; left: 2px; top: 15px;
  width: 8px; height: 14px;
  border: solid var(--success);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(42deg);
}
.arrowlist { list-style: none; padding: 0; margin: 0 0 1.4em; }
.arrowlist li { position: relative; padding: 5px 0 5px 24px; }
.arrowlist li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---------- Pricing ---------- */
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.price-table th, .price-table td { text-align: left; padding: 18px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table th {
  font-family: "Libre Franklin", sans-serif;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  border-bottom: 2px solid var(--text);
}
.price-table td.amount {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--accent);
  white-space: nowrap;
}
.price-table td.amount span { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.price-table tbody tr:hover { background: var(--surface); }
.price-note {
  background: var(--accent-tint);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .95rem;
}

/* ---------- Callout / notice ---------- */
.notice {
  background: var(--success-tint);
  border-left: 4px solid var(--success);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.notice--warn { background: #fdf3e6; border-left-color: #b96f1c; }
.notice--plain { background: var(--surface); border-left-color: var(--muted); }
.notice p:last-child { margin-bottom: 0; }
.notice strong { font-family: "Libre Franklin", sans-serif; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  padding: 20px 40px 20px 0;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute; right: 6px; top: 17px;
  font-size: 1.5rem; font-weight: 400; color: var(--accent);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: var(--accent); }
.faq .faq-body { padding: 0 40px 20px 0; color: var(--muted); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Deadline table ---------- */
.deadlines { width: 100%; border-collapse: collapse; }
.deadlines th, .deadlines td { text-align: left; padding: 15px 14px; border-bottom: 1px solid var(--line); }
.deadlines th { font-family: "Libre Franklin", sans-serif; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid var(--text); }
.deadlines td:first-child {
  font-family: "Libre Franklin", sans-serif;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
  width: 150px;
}
.deadlines tbody tr:hover { background: var(--surface); }

/* ---------- Forms ---------- */
.form-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: "Libre Franklin", sans-serif;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 6px;
}
.field .hint { font-weight: 400; color: var(--muted); font-size: .85rem; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-tint);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-privacy { font-size: .87rem; color: var(--muted); margin-top: 14px; }
.form-success {
  background: var(--success-tint);
  border: 1px solid var(--success);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.form-success h3 { color: var(--success); }
.form-success p:last-child { margin-bottom: 0; }
[hidden] { display: none !important; }

/* ---------- Embed placeholder (map / scheduler) ---------- */
.embed-slot {
  background: var(--surface);
  border: 2px dashed var(--accent);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  color: var(--muted);
  min-height: 300px;
  display: grid;
  place-items: center;
}
.embed-slot strong {
  display: block;
  font-family: "Libre Franklin", sans-serif;
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.embed-slot code { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: .85rem; background: #fff; padding: 2px 6px; border-radius: 3px; border: 1px solid var(--line); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); color: #fff; padding: 62px 0; }
.cta-band h2 { color: #fff; max-width: 18ch; }
.cta-band p { color: #d6e2f2; max-width: 52ch; }
.cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.cta-phone {
  font-family: "Libre Franklin", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: block;
  letter-spacing: -.02em;
}
.cta-phone:hover { color: #ffd9a0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--text); color: #b9c6d8; padding: 62px 0 28px; font-size: .93rem; }
.site-footer h4 {
  color: #fff;
  font-size: .8rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 1em;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer a { color: #b9c6d8; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 9px; }
.footer-brand { font-family: "Libre Franklin", sans-serif; font-weight: 800; font-size: 1.15rem; color: #fff; margin-bottom: .5em; letter-spacing: -.02em; }
.credential-box {
  border: 1px solid #2c405f;
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-top: 16px;
  font-size: .87rem;
  background: #16294494;
}
.credential-box strong { color: #fff; display: block; font-family: "Libre Franklin", sans-serif; }
.footer-bottom {
  border-top: 1px solid #26374f;
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: space-between;
  font-size: .85rem;
  color: #8496ad;
}
.footer-bottom a { color: #8496ad; }
.disclaimer { max-width: 78ch; margin-top: 14px; font-size: .82rem; color: #7d8ea6; line-height: 1.6; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #fff; padding: 12px 18px; z-index: 100;
}
.skip-link:focus { left: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 52px 0 60px; }
  .split, .split--wide-left, .split--wide-right, .cta-inner { grid-template-columns: 1fr; gap: 34px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .index-row { grid-template-columns: 62px 1fr 40px; }
  .index-meta { display: none; }
  .index-num { font-size: 1.8rem; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 52px 0; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 10px 16px 18px;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav a[aria-current="page"] { box-shadow: none; }
  .nav-toggle { display: block; order: 3; }
  .header-inner { position: relative; min-height: 66px; }
  .header-phone span { display: none; }
  .header-phone { font-size: .95rem; }
  .rail-track { grid-template-columns: 1fr; gap: 26px; }
  .rail-track::before { top: 0; bottom: 0; left: 14px; right: auto; width: 4px; height: auto; }
  .rail-step { padding: 0 0 0 52px; }
  .rail-step::before { top: 0; left: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 560px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .price-table th:nth-child(2), .price-table td:nth-child(2) { display: none; }
  .btn { width: 100%; text-align: center; }
  .btn-row { flex-direction: column; }
}

/* ---------- Illustrated artwork in the photo slots ---------- */
.photo-art {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  object-fit: cover;
}
.photo-art--short { height: 240px; }
.photo-art--tall  { height: 460px; }
@media (max-width: 720px) {
  .photo-art--tall { height: 320px; }
  .photo-art--short { height: 190px; }
}

/* ---------- Spam honeypot (must never be visible or focusable) ---------- */
.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media print {
  .site-header, .site-footer, .cta-band, .seasonal { display: none; }
}
