/* ==========================================================
   Special Projects Group — Design System
   thespg.org | Mobile-first, no build step
   ========================================================== */

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

/* ── DESIGN TOKENS ────────────────────────────────────── */
:root {
  /* Background layers */
  --bg:          #070e1c;
  --bg-card:     #0c1829;
  --bg-alt:      #080f1e;
  --bg-nav:      #040b16;

  /* Borders */
  --border:      #152033;
  --border-card: #1c2f4a;

  /* Accent: steel blue */
  --accent:       #3b82f6;
  --accent-dim:   #1e4db7;
  --accent-light: #93c5fd;

  /* CTA: operational amber */
  --amber:        #f59e0b;
  --amber-hover:  #fbbf24;
  --amber-dim:    rgba(245, 158, 11, 0.12);

  /* QuackClean: teal */
  --teal:        #14b8a6;
  --teal-dim:    rgba(20, 184, 166, 0.12);

  /* Text */
  --text:        #dde6f4;
  --text-sub:    #8da0b8;
  --text-muted:  #4e6278;

  /* Typography */
  --font: system-ui, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.75rem;
  --gap-lg: 3rem;
  --gap-xl: 5rem;

  --radius: 4px;
  --radius-lg: 6px;
  --max-w: 1080px;
  --nav-h: 60px;
  --bar-h: 34px;
}

/* ── BASE ─────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p { line-height: 1.7; }

/* ── LAYOUT ───────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gap-sm);
}

/* ── TRUST BAR ────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 var(--gap-sm);
  height: var(--bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

/* ── NAVIGATION ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: var(--gap-sm);
}

.nav__logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
}

.nav__logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__logo-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-card);
  color: var(--text-sub);
  font-size: 1.2rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  border-radius: var(--radius);
  line-height: 1;
  transition: border-color 0.2s;
}

.nav__toggle:hover { border-color: var(--accent); color: var(--text); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-sub);
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a.is-active { color: var(--text); }

/* nav CTA */
.nav__links .btn-nav {
  background: var(--amber);
  color: #000 !important;
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.nav__links .btn-nav:hover { background: var(--amber-hover); }

/* mobile nav */
@media (max-width: 700px) {
  .nav__toggle { display: block; }

  .nav__links {
    display: none;
    position: absolute;
    top: calc(var(--bar-h) + var(--nav-h));
    left: 0; right: 0;
    background: var(--bg-nav);
    border-bottom: 2px solid var(--border-card);
    flex-direction: column;
    align-items: stretch;
    padding: var(--gap-sm);
    gap: 0;
  }

  .nav__links.is-open { display: flex; }

  .nav__links a {
    display: block;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
  }

  .nav__links li:last-child a { border-bottom: none; }

  .nav__links .btn-nav {
    margin-top: 0.75rem;
    display: block;
    text-align: center;
    padding: 0.6rem 1rem !important;
  }
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}

.btn--primary   { background: var(--amber); color: #000; }
.btn--primary:hover { background: var(--amber-hover); }

.btn--outline {
  background: transparent;
  color: var(--text-sub);
  border: 1px solid var(--border-card);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

.btn--teal    { background: var(--teal); color: #000; }
.btn--teal:hover { background: #0d9488; }

/* ── SECTION ──────────────────────────────────────────── */
.section { padding-block: var(--gap-xl); }

.section--alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__hd {
  text-align: center;
  margin-bottom: var(--gap-lg);
}

.section__hd h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--text);
  margin-bottom: 0.5rem;
}

.section__hd p {
  color: var(--text-sub);
  font-size: 0.95rem;
  max-width: 520px;
  margin-inline: auto;
}

.accent-rule {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin: 0.75rem auto 0;
}

/* ── HERO LAYOUT ──────────────────────────────────────── */
.hero__inner {
  display: flex;
  align-items: center;
  gap: var(--gap-lg);
  margin-bottom: var(--gap-md);
}

.hero__content { flex: 1; min-width: 0; }

.hero__artwork {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo image base — sized to sit comfortably inside the oval frame */
.hero__logo {
  width: 165px;
  height: 165px;
  object-fit: contain;
  display: block;
}

/* ─────────────────────────────────────────────────────────
   HOMEPAGE HERO LOGO TREATMENT
   Horizontal oval/ellipse badge frame used on the homepage
   hero only. Nav logo (.nav__logo-img) and footer logo
   (.footer__logo) are sized separately; this frame does not
   apply to them.
   ───────────────────────────────────────────────────────── */
.hero__logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Horizontal oval: wider than tall produces the ellipse */
  width: 320px;
  height: 218px;
  border-radius: 50%;
  /* Single clean accent border echoing the site's steel-blue system */
  border: 1px solid rgba(59, 130, 246, 0.30);
  /* Outer halo ring + diffuse ambient glow */
  box-shadow:
    0 0 0 5px rgba(59, 130, 246, 0.04),
    0 0 60px rgba(59, 130, 246, 0.07);
  flex-shrink: 0;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  padding-block: 5.5rem 4rem;
  background: linear-gradient(150deg, #0b1d38 0%, var(--bg) 65%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(59,130,246,0.02) 80px,
    rgba(59,130,246,0.02) 81px
  );
  pointer-events: none;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--accent-dim);
  border-radius: 2px;
}

.hero__title {
  font-size: clamp(2.1rem, 5.5vw, 3.5rem);
  color: var(--text);
  margin-bottom: 1.25rem;
  max-width: 700px;
  letter-spacing: -0.03em;
}

.hero__title .hi { color: var(--accent-light); }

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-sub);
  max-width: 540px;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero__spec {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero__spec strong {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__spec span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

/* ── PAGE HERO (interior) ─────────────────────────────── */
.page-hero {
  padding-block: 3rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #0b1626 0%, var(--bg) 100%);
}

.page-hero__tag {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-sub);
  max-width: 580px;
  line-height: 1.75;
}

/* ── CARDS ────────────────────────────────────────────── */
.grid { display: grid; gap: 1.25rem; }

@media (min-width: 560px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 860px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--gap-md);
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-2px);
}

a.card { display: block; color: inherit; }
a.card:hover { color: inherit; }

.card__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.card__eyebrow--teal { color: var(--teal); }

.card__title {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.card__body {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.65;
}

.card__divider {
  height: 1px;
  background: var(--border);
  margin-block: 1rem;
}

.card--accent { border-left: 3px solid var(--accent); }
.card--amber  { border-left: 3px solid var(--amber); }
.card--teal   { border-left: 3px solid var(--teal); }

/* ── FEATURE LIST ─────────────────────────────────────── */
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.feat-list li {
  font-size: 0.88rem;
  color: var(--text-sub);
  padding-left: 1.25rem;
  position: relative;
}

.feat-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.feat-list--teal li::before { color: var(--teal); }

/* ── DIVISION PAIR ────────────────────────────────────── */
.division-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 860px) {
  .division-grid { grid-template-columns: 1fr 1fr; }
}

.division-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.division-card--spg  { border-top: 3px solid var(--accent); }
.division-card--quack { border-top: 3px solid var(--teal); }

.division-card h3 { font-size: 1.35rem; }
.division-card p  { font-size: 0.9rem; color: var(--text-sub); line-height: 1.7; }

.div-badge {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.div-badge--spg {
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.35);
  color: var(--accent-light);
}

.div-badge--quack {
  background: rgba(20,184,166,0.1);
  border: 1px solid rgba(20,184,166,0.35);
  color: #5eead4;
}

/* ── CTA STRIP ────────────────────────────────────────── */
.cta-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: var(--gap-xl);
  text-align: center;
}

.cta-strip h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 0.75rem;
}

.cta-strip p {
  color: var(--text-sub);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* ── CONTACT ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 1fr 1.5fr; }
}

.contact-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-item--primary {
  border-color: var(--amber);
  border-width: 2px;
}

.contact-item__label {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.contact-item__value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.contact-item__value a { color: inherit; }
.contact-item__value a:hover { color: var(--accent-light); }

.contact-item__note {
  font-size: 0.78rem;
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-item__sub {
  font-size: 0.82rem;
  color: var(--text-sub);
}

/* ── FORM ─────────────────────────────────────────────── */
.form { display: grid; gap: 1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.field label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-sub);
}

.field input,
.field select,
.field textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 0.65rem 0.8rem;
  transition: border-color 0.2s;
  width: 100%;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field textarea { resize: vertical; min-height: 110px; }
.field select option { background: #0c1829; }

/* ── SPECS TABLE ──────────────────────────────────────── */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.spec-table thead th {
  text-align: left;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
}

.spec-table tbody td {
  padding: 0.75rem 1rem;
  color: var(--text-sub);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.spec-table tbody tr:last-child td { border-bottom: none; }
.spec-table tbody td:first-child { color: var(--text); font-weight: 600; }

/* ── CALLOUT ──────────────────────────────────────────── */
.callout {
  background: var(--amber-dim);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-sub);
}

.callout strong { color: var(--amber); }

.callout--accent {
  background: rgba(59,130,246,0.06);
  border-color: rgba(59,130,246,0.25);
}

.callout--accent strong { color: var(--accent-light); }

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--bg-nav);
  border-top: 1px solid var(--border);
  padding-block: var(--gap-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 560px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer__brand {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.footer__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  margin-bottom: 0.6rem;
}

.footer__tagline {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 260px;
}

.footer__col h4 {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__links a {
  font-size: 0.83rem;
  color: var(--text-sub);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--text); }

.footer__sep {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__bottom a { color: var(--text-muted); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--text-sub); }

/* ── UTILITIES ────────────────────────────────────────── */
.hi        { color: var(--accent-light); }
.hi--amber { color: var(--amber); }
.hi--teal  { color: var(--teal); }

.lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mt-xs { margin-top: var(--gap-xs); }
.mt-sm { margin-top: var(--gap-sm); }
.mt-md { margin-top: var(--gap-md); }
.mt-lg { margin-top: var(--gap-lg); }
.mb-xs { margin-bottom: var(--gap-xs); }
.mb-sm { margin-bottom: var(--gap-sm); }
.mb-md { margin-bottom: var(--gap-md); }

.text-center { text-align: center; }
.text-sub    { color: var(--text-sub); }
.text-muted  { color: var(--text-muted); }

/* form success state */
.form-success {
  background: rgba(20,184,166,0.08);
  border: 1px solid rgba(20,184,166,0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: #5eead4;
  font-size: 0.9rem;
  display: none;
}

.form-success.is-visible { display: block; }

/* ── PHONE HERO (contact page primary block) ─────────── */
.phone-hero {
  background: var(--bg-card);
  border: 2px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.phone-hero__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.phone-hero__number {
  font-size: clamp(2rem, 7vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}

.phone-hero__number a { color: inherit; }
.phone-hero__number a:hover { color: var(--accent-light); }

.phone-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--amber);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 2px;
  width: fit-content;
}

.phone-hero__note {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.65;
  max-width: 540px;
}

/* ── TEXT INSTRUCTIONS BOX ────────────────────────────── */
.text-box {
  background: rgba(59,130,246,0.06);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.text-box h3 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
}

/* ── BANNER SHOWCASE ──────────────────────────────────── */
.banner-showcase {
  margin-block: var(--gap-lg) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
}

.banner-showcase__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 240px;
}

@media (min-width: 700px) {
  .banner-showcase__img { max-height: 300px; }
}

/* ── SCROLLABLE TABLE WRAPPER ─────────────────────────── */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
}

/* ── MOBILE OVERRIDES (≤ 700px) ───────────────────────── */
@media (max-width: 700px) {

  /* Tap-target floors */
  .btn          { min-height: 44px; }
  .nav__toggle  { min-height: 44px; min-width: 44px; padding: 0.5rem 0.75rem; }

  /* Logo sizing on mobile */
  .nav__logo-text { display: none; }

  /* Hero two-column → single-column on mobile */
  .hero__inner       { flex-direction: column; gap: var(--gap-md); }
  .hero__artwork     { order: -1; }
  /* Oval frame scales down on mobile; logo scales to match */
  .hero__logo-frame  { width: 210px; height: 144px; }
  .hero__logo        { width: 100px; height: 100px; }

  /* Hero: reduce top padding on phones */
  .hero { padding-block: 3rem 2.5rem; }

  .hero__specs {
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  /* Section rhythm */
  .section     { padding-block: 3.5rem; }
  .cta-strip   { padding-block: 3.5rem; }
  .page-hero   { padding-block: 2.25rem 2rem; }

  /* Contact value stays legible on narrow screens */
  .contact-item__value { font-size: 1.35rem; }
}

/* ── VERY NARROW (≤ 440px) ────────────────────────────── */
@media (max-width: 440px) {

  /* Trust bar wraps gracefully */
  .trust-bar {
    flex-wrap: wrap;
    height: auto;
    padding-block: 0.45rem;
    gap: 0.3rem 1rem;
  }

  .hero { padding-block: 2.5rem 2rem; }
}
