/* UKB Bold British — shared design system */
:root {
  --navy: #0c2340;
  --navy-2: #16365c;
  --navy-soft: #1e3f66;
  --red: #b01c1c;
  --red-hover: #8f1616;
  --cream: #f4f0e8;
  --cream-2: #ebe5d9;
  --ink: #0c2340;
  --muted: #525f73;
  --gold: #c4a35a;
  --white: #ffffff;
  --line: #e0d9cd;
  --shadow: 0 18px 55px rgba(12, 35, 64, 0.15);
  --max: 1180px;
  --font: "Barlow", system-ui, sans-serif;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  min-width: 0;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
/* <picture> wrappers are layout-transparent: the inner <img> stays the box
   its parent styles, so existing selectors and grid/flex layouts are unchanged. */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button, input, select, textarea { font: inherit; max-width: 100%; }
iframe { max-width: 100%; }

/* Logo — transparent crest, crisp on light/dark */
.logo-img {
  width: auto;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  image-rendering: auto;
  flex-shrink: 0;
}
.logo-img--sm { height: 40px; }
.logo-img--lg { height: 68px; }
.logo-img--footer {
  height: 56px;
  /* slight lift on dark footer so gold reads clearly */
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}
.brand {
  gap: 0.7rem;
}
.site-footer .logo-img--footer {
  background: transparent;
}

/* Top bar */
.top {
  background: var(--navy);
  color: #c9d4e3;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.55rem 4vw;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.top strong { color: var(--gold); }
.top a:hover { color: var(--gold); }

/* Nav */
.site-nav {
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 4vw;
  border-bottom: 3px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(12, 35, 64, 0.06);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1 1 auto;
}
.brand-text {
  min-width: 0;
}
.brand-text b {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
}
.brand-text small {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(42vw, 220px);
}
.nav-links {
  display: flex;
  gap: 1.15rem;
  font-weight: 600;
  font-size: 0.9rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  color: var(--ink);
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--red); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.45rem;
  height: 2px;
  background: var(--red);
}
.site-nav .btn-nav {
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--red);
  color: #fff !important;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.78rem 1.25rem;
  border: 2px solid var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .15s;
  white-space: normal;
  text-align: center;
  line-height: 1.15;
  min-height: 44px;
}
.btn:hover { background: var(--red-hover); border-color: var(--red-hover); }
.btn-navy { background: var(--navy); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-2); border-color: var(--navy-2); }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--navy) !important; }
.btn-gold:hover { background: #d4b56a; border-color: #d4b56a; }
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff !important;
}
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy) !important;
}
.btn-outline-dark:hover { background: var(--navy); color: #fff !important; }

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow img { height: 28px; width: auto; }
h1, .h1 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.98;
}
h2, .h2 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}
h3, .h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.35rem;
  line-height: 1.15;
}
.lead { font-size: 1.08rem; line-height: 1.6; color: var(--muted); max-width: 42rem; }
.section { padding: 4rem 4vw; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-head { margin-bottom: 2rem; max-width: 40rem; }
.section-head p { color: var(--muted); margin-top: 0.65rem; line-height: 1.55; }
.section-kicker {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 12% 0%, rgba(196, 163, 90, 0.13), transparent 34%),
    linear-gradient(125deg, var(--navy) 0%, var(--navy-2) 58%, #111f34 100%);
  color: #fff;
  padding: 3.5rem 4vw 3.75rem;
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.1rem);
  margin: 0.85rem 0 1.15rem;
  max-width: 15ch;
}
.hero .intro {
  color: #c5d0df;
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 40ch;
  margin-bottom: 1.75rem;
}
.hero-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.85rem;
  color: #a8b8cc;
  font-weight: 500;
}
.hero-trust span::before {
  content: "✓ ";
  color: var(--gold);
  font-weight: 700;
}
.hero-visual {
  position: relative;
  border: 3px solid rgba(255,255,255,.12);
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255,255,255,.97);
  color: var(--ink);
  padding: 0.85rem 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  border-top: 3px solid var(--red);
}
.hero-badge strong {
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.03em;
}
.hero-badge small { color: var(--muted); font-size: 0.82rem; font-weight: 500; }
.hero-badge-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 42px;
  background: var(--navy);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Facts strip */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.facts > div {
  padding: 1.6rem 1.2rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.facts > div:last-child { border-right: none; }
.facts b {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.facts span { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

/* Cards / grids */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-2);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 1.25rem 1.2rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 0.5rem; }
.card-body p { color: var(--muted); font-size: 0.95rem; line-height: 1.5; margin-bottom: 1rem; flex: 1; }
.card-body .link {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
  font-size: 1rem;
}
.card-body .link:hover { text-decoration: underline; }

/* Dual panels */
.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dual > div { padding: 3.5rem 4vw; }
.dual-home {
  background: var(--white);
  border-right: 1px solid var(--line);
}
.dual-trade {
  background: var(--navy);
  color: #fff;
}
.dual-trade p { color: #b8c5d6; }
.dual h2 { margin-bottom: 0.75rem; }
.dual p { margin-bottom: 1.35rem; line-height: 1.55; max-width: 36ch; }
.dual-home p { color: var(--muted); }

/* Band */
.band {
  background: var(--red);
  color: #fff;
  padding: 1.75rem 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.band strong {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  max-width: 40rem;
  line-height: 1.15;
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 1.35rem 1.15rem;
}
.step .n {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--red);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.9rem; line-height: 1.45; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-2);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(transparent, rgba(12,35,64,.85));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Content page hero */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 3rem 4vw 3.25rem;
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin: 0.75rem 0 1rem;
  max-width: 16ch;
}
.page-hero .intro { color: #c5d0df; max-width: 42ch; line-height: 1.6; margin-bottom: 1.25rem; }
.page-hero-img {
  border: 3px solid rgba(255,255,255,.1);
  overflow: hidden;
  min-height: 220px;
}
.page-hero-img img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.breadcrumb {
  font-size: 0.8rem;
  color: #8fa0b5;
  margin-bottom: 0.5rem;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* Prose for SEO body */
.prose {
  max-width: 42rem;
  color: var(--ink);
}
.prose p { margin-bottom: 1rem; line-height: 1.65; color: #3d4a5c; }
.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.65rem;
}
.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1.25rem;
  color: #3d4a5c;
}
.prose li { margin-bottom: 0.4rem; line-height: 1.5; }
.prose strong { color: var(--navy); }

/* Two-col content */
.split-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}
.side-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  padding: 1.5rem;
  position: sticky;
  top: 5.5rem;
  min-width: 0;
}
.side-card .btn,
.side-card .btn-outline-dark {
  width: 100%;
}
.side-card h3 { margin-bottom: 0.75rem; }
.side-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1rem; line-height: 1.5; }
.side-card ul { margin-bottom: 1.25rem; }
.side-card li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 600;
}
.side-card li:last-child { border-bottom: none; }
.side-card li::before { content: "▸ "; color: var(--red); }

/* FAQ */
.faq { display: grid; gap: 0.75rem; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1rem 1.15rem;
}
.faq summary {
  font-weight: 700;
  cursor: pointer;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.05rem;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-size: 1.25rem;
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin-top: 0.75rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* Footer — enhanced */
.site-footer {
  background: var(--navy);
  color: #9aabc0;
  margin-top: 0;
}
.footer-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.25rem 4vw 2.5rem;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 2rem 1.5rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer-brand h2 {
  font-size: 1.5rem;
  color: #fff;
  margin: 0;
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 28ch;
}
.footer-col h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.45rem;
  display: inline-block;
}
.footer-col ul { display: grid; gap: 0.45rem; }
.footer-col a {
  font-size: 0.92rem;
  color: #b8c5d6;
  transition: color .15s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #b8c5d6;
}
/* Padded to clear the 24px minimum tap target: these are the phone and
   email links, the two most likely things a phone user taps. */
.footer-col address a {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  padding: 0.35rem 0;
  min-height: 24px;
}
.footer-col address a:hover { color: var(--gold); }
.footer-cta {
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 4vw;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #7a8da3;
  max-width: var(--max);
  margin: 0 auto;
}
.footer-bar a:hover { color: var(--gold); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: var(--navy);
  color: #fff;
  border: none;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Service checklist */
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem 1.25rem;
  margin: 1.25rem 0 1.5rem;
}
.check-grid li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.check-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* Factory / machinery cards */
.machine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.machine {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(100px, 140px) 1fr;
  min-height: 160px;
}
.machine-img {
  background: var(--cream-2);
  min-height: 140px;
}
.machine-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 140px;
}
.machine-body { padding: 1.15rem 1.2rem; min-width: 0; }
.machine-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  color: var(--navy);
}
.machine-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 500;
}

/* ========== Simple forms + contact (calm, easy on the eyes) ========== */
:root {
  --form-bg: #f7f6f4;
  --form-card: #ffffff;
  --form-line: #e6e2dc;
  --form-label: #5c6570;
  --form-text: #1a2330;
  --form-muted: #7a8490;
  --form-radius: 10px;
}

.ios-form,
.form.ios-form {
  display: grid;
  gap: 1.1rem;
  min-width: 0;
  width: 100%;
}

.ios-section-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--form-label);
  margin: 0 0 0.45rem;
  letter-spacing: 0;
  text-transform: none;
}

.ios-group {
  background: var(--form-card);
  border-radius: var(--form-radius);
  border: 1px solid var(--form-line);
  overflow: hidden;
}

.ios-field {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--form-line);
  min-width: 0;
  background: var(--form-card);
}
.ios-field:last-child { border-bottom: none; }

.ios-field > span,
.ios-field > .ios-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--form-label);
  letter-spacing: 0;
  text-transform: none;
}

.ios-field input,
.ios-field select,
.ios-field textarea,
.form.ios-form input,
.form.ios-form select,
.form.ios-form textarea {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0.25rem 0 0;
  margin: 0;
  min-height: 28px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--form-text);
  letter-spacing: normal;
  text-transform: none;
  border-radius: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}
.ios-field textarea,
.form.ios-form textarea {
  min-height: 96px;
  resize: vertical;
  padding-top: 0.35rem;
}
.ios-field input::placeholder,
.ios-field textarea::placeholder {
  color: #a8b0b8;
  opacity: 1;
}
.ios-field input:focus,
.ios-field select:focus,
.ios-field textarea:focus {
  outline: none;
}
.ios-field:focus-within {
  background: #fafbfc;
}

.ios-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237a8490' d='M1.4.6L6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.1rem center;
  padding-right: 1.3rem;
  cursor: pointer;
}

.ios-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.ios-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--form-line);
  background: #fff;
  color: var(--form-text);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: background .12s, border-color .12s, color .12s;
}
.ios-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.ios-chip:hover {
  border-color: #c5ccd4;
  background: #fafbfc;
}
.ios-chip:has(input:checked),
.ios-chip.is-selected {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.ios-chip:has(input:focus-visible) {
  outline: 2px solid #9db0c7;
  outline-offset: 2px;
}

.ios-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--form-text);
  line-height: 1.45;
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
  background: #fff;
}
.ios-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--navy);
  cursor: pointer;
}

.ios-actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.15rem;
}
.ios-actions .btn {
  width: 100%;
  border-radius: 10px;
  min-height: 50px;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  box-shadow: none;
}
.ios-actions .btn:hover { box-shadow: none; }
.ios-actions .btn-soft {
  background: #fff;
  border-color: var(--form-line);
  color: var(--navy) !important;
}
.ios-actions .btn-soft:hover {
  background: #fafbfc;
  border-color: #c5ccd4;
}

.ios-hint,
.form .hint,
.ios-form .hint {
  font-size: 0.85rem;
  color: var(--form-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.5;
  margin: 0;
  text-align: left;
  padding: 0;
}
.ios-hint a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  border: 0;
}
.ios-hint a:hover { color: var(--red); }

.ios-status {
  display: none;
  border-radius: var(--form-radius);
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
}
.ios-status.is-show { display: block; }
.ios-status.is-ok {
  background: #eef8f1;
  color: #1e5c36;
  border: 1px solid #cfe8d6;
}
.ios-status.is-err {
  background: #fdf2f2;
  color: #8b2e2e;
  border: 1px solid #efd0d0;
}

/* Contact page — quiet layout */
.contact-page {
  background: var(--form-bg);
  border-top: 1px solid var(--form-line);
}
.contact-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 4vw 3.5rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: start;
}
.contact-main,
.contact-aside { min-width: 0; }

.contact-panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.contact-card-head {
  margin-bottom: 1.25rem;
  padding-bottom: 0;
  border-bottom: 0;
}
.contact-card-head h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  color: var(--navy);
  font-weight: 700;
}
.contact-card-head p {
  color: var(--form-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
  max-width: 40ch;
  font-weight: 400;
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
}
.quick-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  background: #fff;
  border: 1px solid var(--form-line);
  border-radius: var(--form-radius);
  padding: 1rem 1.05rem;
  min-height: auto;
  box-shadow: none;
  transition: border-color .12s, background .12s;
  position: static;
  overflow: visible;
}
.quick-action::after { display: none; }
.quick-action:hover {
  transform: none;
  box-shadow: none;
  border-color: #c5ccd4;
  background: #fafbfc;
}
.quick-action .qa-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: inherit;
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  box-shadow: none;
  place-items: unset;
}
.quick-action.qa-call .qa-icon {
  background: none;
  box-shadow: none;
}
.quick-action strong {
  font-family: var(--font);
  font-size: 0.98rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--form-text);
  font-weight: 650;
}
.quick-action span {
  font-size: 0.84rem;
  color: var(--form-muted);
  font-weight: 400;
  line-height: 1.4;
}

.contact-info-card {
  background: #fff;
  border: 1px solid var(--form-line);
  border-radius: var(--form-radius);
  padding: 1.2rem 1.15rem 1.15rem;
  box-shadow: none;
  margin-bottom: 0.75rem;
  position: static;
  overflow: visible;
}
.contact-info-card::before { display: none; }
.contact-info-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
  color: var(--navy);
  padding-left: 0;
  font-family: var(--font);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}
.contact-info-card address {
  font-style: normal;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--form-muted);
  margin-bottom: 0.75rem;
  padding-left: 0;
}
.contact-info-card address strong {
  color: var(--form-text);
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.96rem;
}
.contact-list {
  display: grid;
  gap: 0;
  margin: 0 0 0.9rem;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--form-line);
}
.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--form-line);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--navy);
  min-height: 44px;
}
.contact-list a:first-child,
.contact-list span:first-child { border-top: none; }
.contact-list .cl-label {
  color: var(--form-muted);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0;
}
.contact-list a:hover { color: var(--red); }

.contact-note {
  font-size: 0.92rem;
  color: var(--form-muted);
  line-height: 1.55;
  margin: 0 0 0.95rem;
  padding-left: 0;
  font-weight: 400;
}
.contact-info-card .btn {
  border-radius: 10px;
  width: 100%;
  box-shadow: none;
}
.contact-info-card .btn-outline-dark {
  background: #fff;
}

.contact-badge-row,
.contact-badge { display: none; }

/* File upload (trade) */
.file-upload {
  position: relative;
}
.file-upload input[type="file"] {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}
.file-upload-drop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  text-align: center;
  padding: 1.35rem 1rem;
  background: #fff;
  border: 1.5px dashed #c5ccd4;
  border-radius: var(--form-radius, 10px);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  min-height: 120px;
}
.file-upload-drop:hover,
.file-upload-drop.is-dragover {
  border-color: var(--navy);
  background: #fafbfc;
}
.file-upload-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.15rem;
}
.file-upload-drop strong {
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--form-text, var(--ink));
}
.file-upload-hint {
  font-size: 0.82rem;
  color: var(--form-muted, var(--muted));
  font-weight: 400;
  max-width: 28rem;
  line-height: 1.4;
}
.file-upload-limit {
  font-size: 0.75rem;
  color: #9aa3ad;
  font-weight: 500;
  margin-top: 0.15rem;
}
.file-upload-list {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--form-line, #e6e2dc);
  border-radius: var(--form-radius, 10px);
  overflow: hidden;
}
.file-upload-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-top: 1px solid var(--form-line, #e6e2dc);
  font-size: 0.88rem;
  color: var(--form-text, var(--ink));
}
.file-upload-list li:first-child { border-top: none; }
.file-upload-list .file-meta {
  min-width: 0;
  flex: 1;
}
.file-upload-list .file-name {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.file-upload-list .file-size {
  font-size: 0.75rem;
  color: var(--form-muted, var(--muted));
  font-weight: 400;
}
.file-upload-list .file-remove {
  border: 0;
  background: #f2f2f4;
  color: var(--navy);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
}
.file-upload-list .file-remove:hover {
  background: #e8e8ec;
}

/* Legacy form */
.form:not(.ios-form) {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    gap: 1.5rem;
  }
  .contact-aside { order: -1; }
}
@media (max-width: 640px) {
  .quick-actions { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-wrap { padding: 1.5rem 5vw 2.5rem; }
}

/* Trust / ratings bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 4vw;
}
.trust-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}
.trust-score {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.trust-score .num {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.trust-score .meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
}
.trust-score .meta span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  display: block;
}
.stars {
  color: #e6a817;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  line-height: 1;
}
.trust-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  min-height: 40px;
}
.trust-pill b { color: var(--red); font-family: var(--display); font-size: 1.05rem; }
.trust-pill a { color: inherit; }
.trust-pill a:hover { color: var(--red); }

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.35rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}
.review-card .stars { font-size: 0.95rem; }
.review-card blockquote {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #3d4a5c;
  font-weight: 500;
  flex: 1;
  quotes: none;
  overflow-wrap: anywhere;
}
.review-card footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  background: transparent;
  flex-wrap: wrap;
}
.review-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
}
.review-card .src {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.review-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.review-cta p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-right: auto;
  flex: 1 1 12rem;
}

/* Values row */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.value {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 1.5rem 1.25rem;
  min-width: 0;
}
.value-number {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.value h3 { margin-bottom: 0.5rem; }
.value p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }

/* Search-friendly planning feature */
.advice-feature {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.advice-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.advice-feature h2 { max-width: 18ch; margin-bottom: 1rem; }
.advice-feature .lead { margin-bottom: 1.5rem; }
.answer-card {
  background: var(--navy);
  color: #fff;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.answer-card > strong {
  display: block;
  margin-bottom: 1rem;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.answer-card ol { list-style: none; padding: 0; counter-reset: advice; }
.answer-card li {
  position: relative;
  padding: .85rem 0 .85rem 2.6rem;
  border-top: 1px solid rgba(255,255,255,.13);
  counter-increment: advice;
}
.answer-card li::before {
  content: "0" counter(advice);
  position: absolute;
  left: 0;
  top: .86rem;
  color: var(--gold);
  font-family: var(--display);
  font-weight: 700;
}
.answer-card li span { display: block; font-weight: 700; }
.answer-card li small { display: block; margin-top: .1rem; color: #aebed1; }

/* Long-form advice pages */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.article-body { max-width: 48rem; }
.article-meta {
  margin-bottom: .85rem;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.article-body > p:first-of-type { font-size: 1.12rem; color: var(--ink); }
.article-body h2 { margin: 2.6rem 0 .85rem; }
.article-body h3 { margin: 1.7rem 0 .55rem; font-size: 1.16rem; }
.article-body p { margin-bottom: 1rem; color: #3d4a5c; line-height: 1.7; }
.article-body ul, .article-body ol { margin: 0 0 1.25rem 1.2rem; color: #3d4a5c; }
.article-body li { margin-bottom: .55rem; line-height: 1.55; }
.article-note {
  margin: 1.6rem 0;
  padding: 1.2rem 1.3rem;
  background: #fff;
  border-left: 4px solid var(--gold);
}
.article-note strong { display: block; margin-bottom: .25rem; color: var(--navy); }
.toc { position: sticky; top: 6rem; background: #fff; border: 1px solid var(--line); padding: 1.25rem; }
.toc h2 { font-size: 1rem; margin-bottom: .75rem; }
.toc ol { display: grid; gap: .5rem; padding-left: 1.1rem; color: var(--muted); font-size: .9rem; }
.toc a:hover { color: var(--red); }
.comparison-table { width: 100%; border-collapse: collapse; margin: 1.25rem 0 1.75rem; font-size: .93rem; }
.comparison-table th, .comparison-table td { padding: .85rem; text-align: left; vertical-align: top; border: 1px solid var(--line); }
.comparison-table th { background: var(--navy); color: #fff; font-family: var(--display); letter-spacing: .03em; text-transform: uppercase; }
.comparison-table td:first-child { font-weight: 700; color: var(--navy); }

/* Homepage project highlights */
.highlights {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}
.highlights .hl {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream-2);
  min-height: 180px;
}
.highlights .hl-main {
  grid-row: 1 / span 2;
  min-height: 420px;
}
.highlights .hl img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: inherit;
  transition: transform 0.35s ease;
}
.highlights .hl:hover img { transform: scale(1.03); }
.highlights .hl figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(12, 35, 64, 0.82));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.highlights .hl figcaption strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
  margin-bottom: 0.1rem;
}
.highlights .hl figcaption span {
  font-weight: 500;
  opacity: 0.9;
  font-size: 0.8rem;
}

/* Utility: stacked gallery on content pages */
.gallery-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.gallery-stack figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--cream-2);
}
.gallery-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-stack figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.65rem 0.85rem;
  background: linear-gradient(transparent, rgba(12,35,64,.85));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ========== RESPONSIVE ========== */

/* Large tablet / small laptop */
@media (max-width: 1100px) {
  .nav-links { gap: 0.85rem; font-size: 0.85rem; }
  .site-nav .btn-nav { padding: 0.65rem 0.9rem; font-size: 0.95rem; }
  .card-grid,
  .reviews-grid,
  .values { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .highlights {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .highlights .hl-main {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 280px;
  }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Tablet */
@media (max-width: 900px) {
  .section { padding: 3rem 4.5vw; }
  .hero { padding: 2.75rem 4.5vw 3rem; }
  .page-hero { padding: 2.25rem 4.5vw 2.5rem; }

  .hero-grid,
  .page-hero-inner,
  .split-content,
  .dual,
  .advice-feature-grid,
  .article-layout { grid-template-columns: 1fr; }

  .toc { position: static; order: -1; }

  .hero h1,
  .page-hero h1 { max-width: none; }

  .hero-visual { min-height: 260px; }
  .hero-visual img { min-height: 260px; }

  .page-hero-img { min-height: 200px; max-height: 320px; }
  .page-hero-img img { min-height: 200px; max-height: 320px; }

  .facts {
    grid-template-columns: 1fr 1fr;
  }
  .facts > div {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .facts > div:nth-child(2n) { border-right: none; }
  .facts > div:nth-last-child(-n+2) { border-bottom: none; }

  .gallery { grid-template-columns: 1fr 1fr; }
  .machine-grid { grid-template-columns: 1fr; }
  .machine {
    grid-template-columns: 120px 1fr;
  }
  .check-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }

  .dual > div { padding: 2.5rem 4.5vw; }
  .dual-home { border-right: none; border-bottom: 1px solid var(--line); }

  .side-card {
    position: static;
    top: auto;
  }

  .trust-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Hide long nav links earlier; show toggle */
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    padding: 0.5rem 0 1rem;
    border-bottom: 3px solid var(--navy);
    gap: 0;
    box-shadow: var(--shadow);
    max-height: min(70vh, 480px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    padding: 0.9rem 4.5vw;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav-links a[aria-current="page"]::after { display: none; }
  .nav-links a[aria-current="page"] {
    background: var(--cream);
    color: var(--red);
  }
  .site-nav .btn-nav { display: none; }
  .site-nav { flex-wrap: wrap; }
}

/* Phone */
@media (max-width: 640px) {
  .top {
    font-size: 0.72rem;
    padding: 0.5rem 4vw;
    gap: 0.35rem 0.75rem;
    justify-content: center;
    text-align: center;
  }
  .top span { width: 100%; }

  .logo-img { height: 48px; }
  .logo-img--footer { height: 52px; }
  .brand-text small { max-width: 46vw; font-size: 0.6rem; }

  .section { padding: 2.5rem 5vw; }
  .hero { padding: 2rem 5vw 2.25rem; }
  .page-hero { padding: 1.75rem 5vw 2rem; }

  .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); margin: 0.65rem 0 0.9rem; }
  .page-hero h1 { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .hero .intro,
  .page-hero .intro { font-size: 1rem; max-width: none; margin-bottom: 1.25rem; }

  .hero-actions,
  .review-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn,
  .review-cta .btn,
  .review-cta .btn-outline-dark,
  .band .btn {
    width: 100%;
  }

  .hero-visual,
  .hero-visual img { min-height: 220px; }
  .hero-badge {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0.7rem 0.75rem;
  }
  .hero-badge strong { font-size: 1rem; }

  .facts { grid-template-columns: 1fr 1fr; }
  .facts b { font-size: 1.55rem; }
  .facts span { font-size: 0.75rem; }
  .facts > div { padding: 1.15rem 0.75rem; }

  .card-grid,
  .reviews-grid,
  .values,
  .steps,
  .gallery,
  .check-grid,
  .form-row,
  .footer-main,
  .highlights { grid-template-columns: 1fr; }
  .highlights .hl-main {
    grid-column: auto;
    min-height: 240px;
  }
  .highlights .hl { min-height: 200px; }

  .footer-brand { grid-column: auto; }
  .footer-main { padding: 2.5rem 5vw 2rem; gap: 1.75rem; }
  .footer-bar {
    flex-direction: column;
    text-align: center;
    padding: 1rem 5vw;
  }

  .machine { grid-template-columns: 1fr; }
  .machine-img { min-height: 180px; }
  .machine-img img { min-height: 180px; }

  .band {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.5rem 5vw;
  }
  .band strong { max-width: none; }

  .dual > div { padding: 2rem 5vw; }
  .dual p { max-width: none; }

  .prose h2 { font-size: 1.4rem; }
  .comparison-table { display: block; overflow-x: auto; }
  .faq summary { font-size: 0.98rem; padding-right: 1.5rem; }
  .faq summary::after { float: none; position: absolute; right: 1rem; }
  .faq details { position: relative; }

  .trust-score { width: 100%; }
  .trust-sources { width: 100%; }
  .trust-pill { flex: 1 1 auto; justify-content: center; }

  .side-card .footer-cta,
  .footer-cta { width: 100%; }
  .side-card .footer-cta .btn { width: 100%; }

  /* Sticky mobile book CTA */
  .mobile-book-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    gap: 0.5rem;
    padding: 0.65rem 4vw calc(0.65rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(12, 35, 64, 0.1);
    backdrop-filter: blur(8px);
  }
  .mobile-book-bar .btn { flex: 1; font-size: 0.95rem; padding: 0.7rem 0.5rem; }
  .mobile-book-bar .btn-call {
    flex: 0 0 auto;
    background: var(--navy);
    border-color: var(--navy);
    min-width: 3rem;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
  body.has-mobile-book-bar { padding-bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px)); }
  body.ukb-book-open .mobile-book-bar { display: none; }
  body.ukb-book-open { padding-bottom: 0; }
}

/* Mobile book bar only on small screens */
.mobile-book-bar { display: none; }
@media (max-width: 640px) {
  .mobile-book-bar { display: flex; }
}

/* Small phones */
@media (max-width: 400px) {
  .facts { grid-template-columns: 1fr; }
  .facts > div {
    border-right: none !important;
    border-bottom: 1px solid var(--line);
  }
  .facts > div:last-child { border-bottom: none; }
  .brand-text small { display: none; }
  .ukb-cal-day,
  .ukb-time { font-size: 0.85rem; }
}

/* Large desktop */
@media (min-width: 1400px) {
  :root { --max: 1240px; }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card,
  .card-img img,
  .btn { transition: none; }
}

/* Print */
@media print {
  .top, .site-nav, .nav-toggle, .band, .mobile-book-bar, .ukb-book-overlay { display: none !important; }
  body { background: #fff; color: #000; padding: 0 !important; }
  .hero, .page-hero { background: #fff !important; color: #000 !important; }
  a { text-decoration: underline; }
}

/* --- Turnstile ------------------------------------------------------------
   Reserve the widget's height so it does not push the submit button down as
   it loads; the whole point of the earlier font work was removing that kind
   of shift. 65px is Cloudflare's rendered height for the standard widget. */
.cf-turnstile,
.ukb-book-turnstile {
  margin: 0 0 1rem;
  min-height: 65px;
}
.ukb-book-turnstile:empty { min-height: 0; }
