/* sipsonline — yellow / black / white */
:root {
  --yellow: #F8D909;
  --yellow-ink: #111111;
  --black: #111111;
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --line: #e6e6e6;
  --paper: #f6f6f4;
  --white: #ffffff;
  --max: 72rem;
  --pad: clamp(1.1rem, 4vw, 2rem);
  --radius: 0.4rem;
  --font: Outfit, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

@font-face {
  font-family: Outfit;
  src: url("assets/fonts/Outfit.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; }

.skip {
  position: absolute;
  left: var(--pad);
  top: -100px;
  background: var(--yellow);
  color: var(--black);
  padding: 0.5rem 0.8rem;
  z-index: 100;
  font-weight: 700;
}
.skip:focus { top: 0.5rem; }

.wrap {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-transform: none; /* sentence case as written (was lowercase) */
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.2rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.02em; }
p { margin: 0 0 1rem; }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 40rem; }
.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header::after {
  content: "";
  display: block;
  height: 4px;
  background: var(--yellow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.1rem;
}
.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.logo img {
  height: 2.15rem;
  width: auto;
}
@media (min-width: 720px) {
  .logo img { height: 2.45rem; }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  padding: 0.55rem;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--black);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle span { transition: transform 0.15s ease, opacity 0.15s ease; }

.nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0.6rem var(--pad) 1.2rem;
}
.nav.open { display: block; }
.nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.nav a {
  display: block;
  padding: 0.7rem 0.2rem;
  text-decoration: none;
  font-weight: 600;
}
.nav a:hover, .nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 4px; }
.nav .btn { display: inline-flex; margin-top: 0.4rem; text-decoration: none; }

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .nav {
    display: block;
    position: static;
    border: 0;
    padding: 0;
    background: transparent;
  }
  .nav ul {
    flex-direction: row;
    align-items: center;
    gap: 1.4rem;
  }
  .nav a { padding: 0.2rem 0; }
  .nav .btn { margin-top: 0; }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.2rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--black);
  border-radius: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1;
}
.btn:hover { filter: brightness(0.97); }
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-ghost {
  background: transparent;
  color: var(--black);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin: 1.3rem 0 0.4rem; }

:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 3px;
}
.btn:focus-visible { outline-color: var(--black); box-shadow: 0 0 0 3px var(--yellow); }

/* hero */
.hero {
  padding: 2.2rem 0 2.6rem;
  background:
    linear-gradient(90deg, var(--yellow) 0 8px, transparent 8px);
}
.hero-grid {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}
.hero-copy .kicker { background: var(--yellow); padding: 0.2rem 0.45rem; }
.hero h1 { margin-bottom: 0.5em; }
.hero-note {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 1rem;
}
.hero-media {
  background: var(--paper);
  border: 1px solid var(--line);
}
.hero-media img { width: 100%; }
.hero-media figcaption {
  display: flex;
  font-size: 0.82rem;
  font-weight: 700;
}
.hero-media figcaption span {
  padding: 0.55rem 0.75rem;
  flex: 1;
}
.hero-media .yb { background: var(--yellow); color: var(--black); }
.hero-media .gb { background: var(--black); color: var(--white); }
.hero-media .wb { background: var(--white); }

@media (min-width: 860px) {
  .hero { padding: 3.2rem 0 3.6rem; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; }
}

/* price rail */
.price-rail {
  background: var(--black);
  color: var(--white);
  padding: 0.85rem 0;
  overflow-x: auto;
}
.price-rail ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  min-width: max-content;
  align-items: baseline;
}
.price-rail li { font-size: 0.92rem; white-space: nowrap; }
.price-rail strong { color: var(--yellow); font-weight: 700; }
.price-rail .hint { color: #bdbdbd; font-size: 0.8rem; }

/* sections */
section { padding: 3.2rem 0; }
.section-head { margin-bottom: 1.6rem; max-width: 40rem; }
.band-paper { background: var(--paper); }
.band-yellow { background: var(--yellow); }
.band-yellow h2, .band-yellow p { color: var(--black); }

.split {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .split-2 { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .split-4 { grid-template-columns: repeat(4, 1fr); }
  .split-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.4rem 1.3rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card h3 { margin-bottom: 0.4em; }
.card p { color: var(--muted); flex: 1; }
.card a.more {
  font-weight: 700;
  margin-top: 0.8rem;
  text-underline-offset: 3px;
}

.use-card .icon {
  width: 2.4rem;
  height: 2.4rem;
  background: var(--yellow);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 0.9rem;
}

/* products */
.product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product {
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.product-media { position: relative; background: var(--white); }
.product-media img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.5rem;
}
.badge-eps { background: var(--black); }
.badge-pir { background: var(--yellow); color: var(--black); border: 1px solid var(--black); }
.product-body { padding: 1rem 1.05rem 1.2rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.product-body h3 { margin: 0; font-size: 1.25rem; }
.product-body .meta { color: var(--muted); font-size: 0.92rem; margin: 0; }
.price {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.3rem 0 0.6rem;
}
.price small { font-size: 0.85rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.product .btn { align-self: flex-start; }

.fine {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 1.2rem;
}

/* process */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}
@media (min-width: 720px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  border-top: 4px solid var(--yellow);
  padding-top: 1rem;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-weight: 800;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}
.step h3 { font-size: 1.05rem; }
.step p { color: var(--muted); margin: 0; font-size: 0.98rem; }

/* faq */
.faq { display: grid; gap: 0.5rem; }
details {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.2rem 1rem;
}
details[open] { border-color: var(--black); }
summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.95rem 0;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  font-weight: 800;
}
details[open] summary::after { content: "–"; }
details p { color: var(--muted); padding-bottom: 0.9rem; }

/* cta band */
.cta-band { padding: 3rem 0; }
.cta-band .wrap { display: grid; gap: 1rem; align-items: center; }
@media (min-width: 800px) {
  .cta-band .wrap { grid-template-columns: 1.4fr auto; }
}

/* page hero */
.page-hero { padding: 2.4rem 0 1.2rem; }
.page-hero h1 { max-width: 18ch; }

/* form */
form {
  display: grid;
  gap: 0.9rem;
  max-width: 38rem;
}
label { display: grid; gap: 0.35rem; font-weight: 650; font-size: 0.95rem; }
input, select, textarea {
  font: inherit;
  padding: 0.75rem 0.8rem;
  border: 1px solid #cfcfcf;
  background: var(--white);
  color: var(--ink);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--black);
}
.form-row {
  display: grid;
  gap: 0.9rem;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-note { font-size: 0.9rem; color: var(--muted); font-weight: 400; }
.radio-row {
  display: flex;
  gap: 1rem;
  font-weight: 600;
}
.radio-row label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}
.radio-row input { width: auto; }

.direct-mail {
  margin-top: 2rem;
  padding: 1.1rem 1.2rem;
  background: var(--paper);
  max-width: 38rem;
}

/* tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
th, td { text-align: left; padding: 0.7rem 0.85rem; border-bottom: 1px solid var(--line); }
th { background: var(--black); color: var(--white); font-weight: 650; }
tr:last-child td { border-bottom: 0; }
td.num, th.num { text-align: right; }
.t-pir td:first-child { font-weight: 700; }

/* footer */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 2.4rem 0 1.4rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer a { color: var(--yellow); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; text-underline-offset: 3px; }
.site-footer .lock {
  background: var(--white);
  display: inline-flex;
  padding: 0.45rem 0.55rem;
  margin-bottom: 0.9rem;
}
.site-footer .lock img { height: 1.7rem; width: auto; }
.site-footer p, .site-footer li { color: #d4d4d4; font-size: 0.95rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin: 0.3rem 0; }
.legal {
  border-top: 1px solid #2a2a2a;
  margin-top: 1.8rem;
  padding-top: 1rem;
  font-size: 0.82rem;
  color: #9a9a9a;
}

/* honest list */
.plain { padding-left: 1.1rem; margin: 0 0 1rem; }
.plain li { margin: 0.3rem 0; }

.pill {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.15rem 0.4rem;
}

@media (min-width: 720px) {
  .split-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 719px) {
  .split-4 { grid-template-columns: 1fr 1fr; }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* kits */
.kit-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .kit-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .kit-grid { grid-template-columns: repeat(3, 1fr); } }
.kit {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 1.2rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
}
.kit .dims {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  margin: 0 0 0.2rem;
}
.kit .count { color: var(--muted); font-size: 0.95rem; margin: 0 0 0.6rem; }
.kit .price { margin: 0 0 0.85rem; }
.kit .btn { align-self: flex-start; margin-top: auto; }
.breakdown {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 0.8rem;
}
.flag {
  align-self: flex-start;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.15rem 0.4rem;
  margin-bottom: 0.7rem;
}

.callout {
  border-left: 6px solid var(--yellow);
  background: var(--paper);
  padding: 1rem 1.1rem;
  margin: 0 0 1.5rem;
}
.callout p { margin: 0; }

.two-col {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
}

/* denser nav: hamburger until 1080 */
@media (min-width: 860px) and (max-width: 1079px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem var(--pad) 1.2rem;
  }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .nav a { padding: 0.7rem 0.2rem; }
  .nav .btn { margin-top: 0.4rem; }
}
@media (min-width: 1080px) {
  .nav-toggle { display: none; }
  .nav { display: block; position: static; border: 0; padding: 0; background: transparent; }
  .nav ul { flex-direction: row; align-items: center; gap: 1.05rem; }
  .nav a { padding: 0.2rem 0; font-size: 0.95rem; }
  .nav .btn { margin-top: 0; font-size: 0.95rem; padding: 0.7rem 1rem; }
}

.shop-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .shop-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .shop-grid { grid-template-columns: repeat(5, 1fr); } }

.shop-card .from {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  margin: 0.2rem 0 0.5rem;
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.6rem;
}
.subnav a {
  border: 1px solid var(--line);
  padding: 0.4rem 0.7rem;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
}
.subnav a[aria-current="page"], .subnav a:hover {
  border-color: var(--black);
  background: var(--yellow);
}

.diagram {
  height: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.diagram-inner {
  background: var(--white);
  border: 10px solid var(--black);
  box-shadow: 8px 8px 0 var(--yellow);
}
.d-window { width: 160px; height: 150px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; }
.d-window i { background: #d9eef8; display: block; }
.d-french { width: 170px; height: 170px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 8px; }
.d-french i { background: #d9eef8; display: block; position: relative; }
.d-bifold { width: 210px; height: 150px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 8px; }
.d-bifold i { background: #d9eef8; display: block; }
.d-clad { width: 200px; height: 140px; display: flex; flex-direction: column; gap: 7px; padding: 12px; }
.d-clad i { flex: 1; background: var(--yellow); display: block; }
.d-clad i:nth-child(2n) { background: #e7c307; }
.d-epdm { width: 210px; height: 90px; background: #1a1a1a; border-color: #1a1a1a; position: relative; }
.d-epdm::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; top: 12px; bottom: 22px;
  background: #2a2a2a;
  border: 2px solid #444;
}

.pack {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .pack { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
}
.pack-summary {
  background: var(--black);
  color: var(--white);
  padding: 1.3rem 1.3rem 1.5rem;
  position: sticky;
  top: 5.2rem;
}
.pack-summary h2 { color: var(--yellow); }
.pack-summary p, .pack-summary li { color: #e8e8e8; }
.pack-summary .big {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0.2rem 0 0.6rem;
}
.pack-summary .muted { color: #b0b0b0; font-size: 0.9rem; }
.pack-summary ul { list-style: none; margin: 0 0 1rem; }
.pack-summary li { margin: 0.25rem 0; }

.option-grid { display: grid; gap: 1rem; }
@media (min-width: 720px) { .option-grid { grid-template-columns: 1fr 1fr 1fr; } }

.tiny { font-size: 0.88rem; color: var(--muted); }

/* photo hero + brand photography */
.hero-photo {
  position: relative;
  background: #111;
  color: var(--white);
}
.hero-photo > img {
  width: 100%;
  height: min(78vh, 42rem);
  object-fit: cover;
  object-position: center 78%;
}
.hero-photo .hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 5.5rem 0 2.4rem;
  background: linear-gradient(180deg, transparent 0%, rgba(17,17,17,0.88) 58%);
}
.hero-photo h1 { color: var(--white); max-width: 16ch; }
.hero-photo .lede { color: #e6e6e6; }
.hero-photo .kicker { background: var(--yellow); color: var(--black); }
.hero-photo .btn-ghost { color: var(--white); border-color: var(--white); }
.hero-photo .hero-note { color: #d2d2d2; }

.photo-split {
  display: grid;
  background: var(--black);
  color: var(--white);
}
.photo-split img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
}
.photo-split .copy {
  padding: 2.2rem var(--pad) 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.photo-split h2 { color: var(--white); }
.photo-split p { color: #d8d8d8; }
.photo-split .btn { align-self: flex-start; }
@media (min-width: 860px) {
  .photo-split { grid-template-columns: 1.15fr 0.85fr; }
  .photo-split .copy { padding: 2.8rem 2.4rem; }
}

.clad-figure {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.8rem;
}
.clad-figure img {
  width: 100%;
  max-height: 38rem;
  object-fit: contain;
  margin: 0 auto;
}
.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 0.4rem 0 1rem;
  padding: 0;
  list-style: none;
}
.swatches li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 650;
  font-size: 0.92rem;
}
.swatches i {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
  border: 1px solid #c8c8c8;
}
.sw-oak i { background: #c49a5a; }
.sw-grey i { background: #9aa0a4; }
.sw-walnut i { background: #5c3a22; }
.sw-anth i { background: #2a2a2a; }

.media-caption {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0.45rem 0 0;
}

.cta-pair { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.supplier {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.35rem;
}
.price-ex { font-size: 0.88rem; font-weight: 600; color: var(--muted); }
.nav .wa { font-weight: 700; }
.hero-photo .cta-pair { margin-top: 1.1rem; }

/* —— branding lockup: yellow SO + sipsonline.co.uk wordmark —— */
.logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}
.logo-mark {
  height: 2.55rem !important;
  width: auto !important;
  flex: 0 0 auto;
}
.logo-word {
  height: 1.45rem !important;
  width: auto !important;
  max-width: min(52vw, 16rem);
}
@media (min-width: 720px) {
  .logo-mark { height: 2.85rem !important; }
  .logo-word { height: 1.65rem !important; max-width: 18rem; }
}

.site-footer .lock {
  background: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.6rem;
  margin-bottom: 0.9rem;
}
.site-footer .footer-mark {
  height: 2.1rem;
  width: auto;
}
.site-footer .footer-word {
  height: 1.25rem;
  width: auto;
}

/* product / kit card watermark */
.product-media,
.kit-media,
.card-media {
  position: relative;
  background: var(--white);
  overflow: hidden;
}
.product-media img.product-photo,
.kit-media img,
.card-media img {
  width: 100%;
  display: block;
}
.wm {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  height: 1.55rem !important;
  width: auto !important;
  z-index: 2;
  pointer-events: none;
  opacity: 0.78;
  background: transparent;
  object-fit: contain;
  filter: none;
  box-shadow: none;
}
.kit {
  padding: 0;
}
.kit .kit-media {
  background: #f3f3f1;
}
.kit .kit-media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.kit .kit-body {
  padding: 1.05rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* visual strip of 6 SKUs */
.sku-strip .product-grid {
  margin: 0;
}
@media (min-width: 1100px) {
  .sku-strip .product-grid { grid-template-columns: repeat(6, 1fr); }
}
.sku-strip .product-body { padding: 0.75rem 0.85rem 1rem; }
.sku-strip .product-body h3 { font-size: 1.05rem; }
.sku-strip .price { font-size: 1.35rem; margin: 0.15rem 0 0.4rem; }
.sku-strip .btn { padding: 0.65rem 0.85rem; font-size: 0.9rem; }

/* shop cards with photos */
.shop-card {
  padding: 0;
}
.shop-card .card-media {
  background: #eee;
}
.shop-card .card-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.shop-card .card-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* large photo bands */
.bleed-photo {
  position: relative;
  background: #111;
  color: var(--white);
  padding: 0;
}
.bleed-photo > img {
  width: 100%;
  height: min(62vh, 34rem);
  object-fit: cover;
  object-position: center;
}
.bleed-photo .bleed-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: 4.5rem 0 2.2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(17,17,17,0.9) 55%);
}
.bleed-photo h2 { color: var(--white); }
.bleed-photo p { color: #ddd; }

.photo-split img {
  min-height: 22rem;
}
@media (min-width: 860px) {
  .photo-split { grid-template-columns: 1.35fr 0.65fr; }
  .photo-split.photo-split-flip { grid-template-columns: 0.65fr 1.35fr; }
  .photo-split.photo-split-flip img { order: 2; }
}

/* gallery of finished work */
.gallery-grid {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-grid figure {
  margin: 0;
  background: var(--black);
}
.gallery-grid img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}
.gallery-grid figcaption {
  color: #ddd;
  font-size: 0.82rem;
  font-weight: 650;
  padding: 0.45rem 0.6rem 0.6rem;
}

/* merch — small, not hero */
.merch-strip {
  display: grid;
  gap: 1.2rem;
  align-items: center;
}
@media (min-width: 800px) {
  .merch-strip { grid-template-columns: 1.2fr 0.7fr 0.7fr; }
}
.merch-strip img {
  width: 100%;
  background: #ececec;
  aspect-ratio: 1;
  object-fit: contain;
}

/* quote page side image */
.quote-visual {
  margin: 0 0 1.4rem;
}
.quote-visual img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}
@media (min-width: 900px) {
  .pack { grid-template-columns: 1.05fr 0.95fr; }
  .quote-visual img { height: 18rem; }
}

/* cladding / page photo heroes */
.page-photo {
  padding: 0 0 1rem;
}
.page-photo img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  object-position: center;
}
.page-photo.page-photo-contain {
  background: var(--white);
  padding: 0.8rem var(--pad) 0;
}
.page-photo.page-photo-contain img {
  max-height: 36rem;
  object-fit: contain;
  margin: 0 auto;
}

.clad-figure img {
  max-height: 42rem;
}

/* foundations */
.found-spec {
  display: grid;
  gap: 0.8rem;
}
@media (min-width: 720px) {
  .found-spec { grid-template-columns: 1fr 1fr 1fr; }
}

.card .card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.card:has(.card-media) {
  padding: 0;
}
.card:has(.card-media) h3,
.card:has(.card-media) p,
.card:has(.card-media) a.more,
.card:has(.card-media) .from,
.card:has(.card-media) .supplier {
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}
.card:has(.card-media) h3 { margin-top: 0.9rem; }
.card:has(.card-media) a.more { margin-bottom: 1.1rem; padding-bottom: 0.2rem; }

/* —— stronger lockup: CSS wordmark, not a jpeg strip —— */
.logo-word {
  height: auto !important;
  width: auto !important;
  max-width: none;
  font-weight: 750;
  font-size: 1.28rem;
  letter-spacing: -0.045em;
  text-transform: lowercase;
  color: var(--black);
  line-height: 1;
}
@media (min-width: 720px) {
  .logo-word { font-size: 1.45rem; height: auto !important; max-width: none; }
  .logo-mark { height: 3.05rem !important; }
}
.site-header::after { height: 5px; }
.nav .tel { font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }

.site-footer .lock {
  background: transparent;
  padding: 0;
  gap: 0.5rem;
}
.site-footer .footer-mark {
  height: 2.35rem;
  width: auto;
}
.site-footer .footer-word {
  height: auto;
  width: auto;
  font-weight: 750;
  font-size: 1.25rem;
  letter-spacing: -0.045em;
  text-transform: lowercase;
  color: var(--yellow);
  line-height: 1;
}

.cad-figure {
  background: #f3f3f1;
  border: 1px solid var(--line);
  padding: 0.6rem;
  margin: 0;
}
.cad-figure img {
  width: 100%;
  max-height: 28rem;
  object-fit: contain;
  background: #ececea;
}
.cad-figure figcaption,
.honest {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0.55rem 0 0;
  max-width: 40rem;
}
.factory-note {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0.4rem 0 0;
}
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  font-weight: 700;
  margin: 1rem 0 0;
}
.contact-strip a { text-underline-offset: 3px; }
.quote-visual + .contact-strip,
.page-hero .contact-strip { margin-top: 0.8rem; }

@media (min-width: 1080px) {
  .nav ul { gap: 0.85rem; }
  .nav a { font-size: 0.92rem; }
}

/* typical U-values — competitor published, not sipsonline tests */
.u-disclaimer {
  border: 3px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  padding: 1.1rem 1.2rem;
  margin: 1.4rem 0 1.2rem;
}
.u-disclaimer p { margin: 0; font-weight: 650; }
.u-disclaimer strong { font-weight: 800; }
.spec-line {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 0.7rem;
  line-height: 1.4;
}
.u-table-wrap { overflow-x: auto; margin: 0 0 1.2rem; }
.u-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.u-table th,
.u-table td {
  text-align: left;
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.u-table th { font-weight: 750; }
.u-table caption {
  text-align: left;
  font-weight: 750;
  margin: 0 0 0.5rem;
  caption-side: top;
}

.hero-branded > img { object-position: center 42%; }


.company-id {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.45;
  margin-top: 0.75rem;
}
.company-id a { color: inherit; text-decoration: underline; }

/* About / company identity */
.wrap.narrow { max-width: 42rem; }
.callout-warn {
  border-left: 4px solid #F8D909;
  background: #fffbea;
  padding: 1.1rem 1.25rem;
  margin: 1.5rem 0 2rem;
  border-radius: 0 8px 8px 0;
}
.callout-warn h2 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.callout-warn p { margin: 0.55rem 0 0; }
table.spec {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.75rem;
  font-size: 0.95rem;
}
table.spec th, table.spec td {
  text-align: left;
  vertical-align: top;
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid #e5e5e5;
}
table.spec th {
  width: 32%;
  font-weight: 600;
  color: #222;
  background: #f4f4f2;
}
.company-id {
  font-size: 0.85rem;
  line-height: 1.45;
  color: #444;
  margin: 0.75rem 0 0;
}
.company-id a { color: inherit; text-decoration: underline; }

/* —— Homepage Direct-density rebuild (SO yellow/black) —— */
.audience-bar {
  background: var(--black);
  color: var(--white);
  border-bottom: 3px solid var(--yellow);
}
.audience-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.35rem;
  padding: 0.7rem 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none; /* sentence-case nav (was uppercase) */
}
.audience-bar a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.92;
}
.audience-bar a:hover,
.audience-bar a:focus-visible {
  color: var(--yellow);
  opacity: 1;
}

.trust-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0 1.25rem;
}
.trust-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .trust-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .trust-list { grid-template-columns: repeat(5, 1fr); gap: 0.85rem; }
}
.trust-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.65rem;
  row-gap: 0.1rem;
  align-items: start;
}
.trust-icon {
  grid-row: 1 / span 2;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: 2px;
}
.trust-list strong {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
}
.trust-list span:not(.trust-icon) {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.35;
}

.process-band {
  background: var(--black);
  color: var(--white);
  padding: 2.6rem 0 2.8rem;
}
.process-band .section-head { max-width: 36rem; }
.process-band .kicker { background: var(--yellow); color: var(--black); padding: 0.2rem 0.45rem; }
.process-band h2 { color: var(--white); }
.process-steps {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  margin-top: 0.5rem;
  counter-reset: none;
}
@media (min-width: 800px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.process-steps li {
  border-top: 3px solid var(--yellow);
  padding-top: 1rem;
}
.process-steps .n {
  display: block;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--yellow);
  margin-bottom: 0.4rem;
}
.process-steps h3 {
  color: var(--white);
  text-transform: none;
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}
.process-steps p {
  color: #cfcfcf;
  margin: 0;
  font-size: 0.98rem;
}

.category-row { padding: 2.6rem 0 1.5rem; }
.cat-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .cat-grid { grid-template-columns: repeat(6, 1fr); gap: 0.85rem; }
}
.cat-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--black);
  text-decoration: none;
  color: var(--white);
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.25) 100%);
}
.cat-card span {
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.85rem;
  z-index: 1;
  font-weight: 750;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  text-transform: none;
}
.cat-card:hover img,
.cat-card:focus-visible img { transform: scale(1.04); }
.cat-card:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

.price-rail em {
  font-style: normal;
  font-size: 0.75rem;
  color: #bdbdbd;
  margin-left: 0.15rem;
}

.kit-teaser { padding: 2.8rem 0; }
.kit-teaser-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .kit-teaser-grid { grid-template-columns: 1.1fr 1fr; gap: 2rem; }
}
.kit-teaser-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
}
.kit-teaser .price { margin: 0.4rem 0 0.85rem; }
.product-body .more {
  font-size: 0.88rem;
  font-weight: 650;
  margin-top: 0.35rem;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.product-body .cta-pair { margin: 0.35rem 0 0; }
.product-body .cta-pair .btn { font-size: 0.88rem; padding: 0.5rem 0.75rem; }

/* Sticky mobile conversion bar (Direct-style persistence) */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(0,0,0,0.12);
  padding: 0.55rem 0.65rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  gap: 0.45rem;
}
.sticky-mobile-bar a {
  flex: 1;
  text-align: center;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.92rem;
  padding: 0.7rem 0.4rem;
  border-radius: var(--radius);
}
.smb-quote { background: var(--yellow); color: var(--black); }
.smb-wa { background: var(--black); color: var(--white); }
.smb-call {
  background: var(--paper);
  color: var(--black);
  border: 1px solid var(--line);
}
@media (max-width: 860px) {
  .sticky-mobile-bar { display: flex; }
  body.has-sticky-bar { padding-bottom: 4.5rem; }
}
@media (min-width: 861px) {
  .sticky-mobile-bar { display: none !important; }
}


/* —— Logo / header premium pass (24 Sep 2026) —— */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  text-decoration: none;
  color: inherit;
}
.logo-mark,
.logo img.logo-mark {
  display: block;
  height: 2.25rem !important; /* ~36px mobile */
  width: auto !important;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  background: transparent !important;
  border: 0;
  box-shadow: none !important;
  filter: none;
  mix-blend-mode: normal;
  flex: 0 0 auto;
}
.logo-word {
  display: block;
  height: auto !important;
  width: auto !important;
  max-width: none;
  font-weight: 750;
  font-size: 1.22rem;
  letter-spacing: -0.045em;
  text-transform: lowercase;
  color: var(--black);
  line-height: 1;
  position: relative;
  top: 0.04em; /* optical align with yellow mark */
}
@media (min-width: 720px) {
  .logo-mark,
  .logo img.logo-mark { height: 2.75rem !important; } /* ~44px */
  .logo-word { font-size: 1.42rem; }
  .header-inner { min-height: 4.35rem; gap: 1.25rem; }
}
@media (min-width: 1100px) {
  .logo-mark,
  .logo img.logo-mark { height: 3rem !important; } /* ~48px */
  .logo-word { font-size: 1.5rem; }
}

.site-footer .lock {
  background: transparent !important;
  padding: 0 !important;
  gap: 0.45rem;
  display: inline-flex;
  align-items: center;
  box-shadow: none;
  border: 0;
}
.site-footer .footer-mark {
  height: 2.2rem;
  width: auto;
  object-fit: contain;
  background: transparent !important;
  box-shadow: none;
  filter: none;
}
.site-footer .footer-word {
  height: auto;
  font-weight: 750;
  font-size: 1.2rem;
  letter-spacing: -0.045em;
  text-transform: lowercase;
  color: var(--yellow);
  line-height: 1;
}

/* Audience bar: less cramped on narrow */
.audience-inner {
  gap: 0.35rem 1.1rem;
  padding: 0.62rem 0;
  row-gap: 0.45rem;
}
@media (max-width: 560px) {
  .audience-inner {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    gap: 0.35rem 0.85rem;
  }
}

/* Sticky bar: fit phone number */
.smb-call {
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  line-height: 1.15;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
@media (max-width: 380px) {
  .smb-call { font-size: 0.7rem; }
  .sticky-mobile-bar a { font-size: 0.82rem; }
}

/* Nav contact hierarchy */
.nav .wa { font-weight: 750; }
.nav .tel {
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
@media (min-width: 860px) {
  .nav ul { gap: 0.15rem 0.85rem; align-items: center; }
  .nav .btn { margin-top: 0; }
}

/* —— SO mark clip-safe header (24 Sep 2026 review) —— */
.site-header,
.header-inner,
.logo {
  overflow: visible;
}
.site-header {
  padding-top: 0.55rem;
  padding-bottom: 0.35rem;
}
.header-inner {
  min-height: 4.6rem;
  align-items: center;
  overflow: visible;
}
.logo-mark,
.logo img.logo-mark {
  display: block;
  height: 2.55rem !important; /* ~41px mobile — room for full curves */
  width: auto !important;
  max-height: none !important;
  max-width: none;
  object-fit: contain;
  object-position: left center;
  background: transparent !important;
  flex: 0 0 auto;
}
@media (min-width: 720px) {
  .logo-mark,
  .logo img.logo-mark { height: 3rem !important; } /* ~48px */
  .header-inner { min-height: 5rem; }
  .site-header { padding-top: 0.65rem; padding-bottom: 0.4rem; }
}
@media (min-width: 1100px) {
  .logo-mark,
  .logo img.logo-mark { height: 3.25rem !important; } /* ~52px */
}

/* Clean hero (no baked SO): terrace photo; keep cover framing */
.hero-photo > img {
  object-position: center 62%;
}

/* —— Design & quote wizard —— */
.design-layout {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 2rem;
}
@media (min-width: 960px) {
  .design-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
    align-items: start;
    gap: 2rem;
  }
  .design-summary {
    position: sticky;
    top: 5.5rem;
  }
}
.design-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.design-steps li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border: 1px solid #ddd;
  border-radius: 999px;
  color: #666;
  background: #fff;
}
.design-steps li.is-active {
  background: var(--yellow);
  border-color: var(--black);
  color: var(--black);
}
.design-steps li.is-done {
  border-color: var(--black);
  color: var(--black);
}
.design-panel {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1.4rem;
  margin-bottom: 1rem;
  background: #fff;
}
.design-panel h2 {
  font-size: 1.15rem;
  margin: 0 0 0.35rem;
}
.design-panel .panel-lede {
  margin: 0 0 1rem;
  color: #555;
  font-size: 0.95rem;
}
.choice-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .choice-grid.cols-2 { grid-template-columns: 1fr 1fr; }
  .choice-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
}
.choice {
  position: relative;
  display: block;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  padding: 0.85rem 1rem 0.85rem 2.4rem;
  cursor: pointer;
  background: #fafafa;
  transition: border-color 0.15s, background 0.15s;
}
.choice:hover { border-color: #999; }
.choice:has(input:checked),
.choice.is-selected {
  border-color: var(--black);
  background: #fffdf0;
  box-shadow: inset 3px 0 0 var(--yellow);
}
.choice input {
  position: absolute;
  left: 0.85rem;
  top: 1rem;
  margin: 0;
}
.choice strong { display: block; font-size: 0.98rem; }
.choice span.meta { display: block; font-size: 0.82rem; color: #666; margin-top: 0.15rem; }
.choice span.price {
  display: block;
  margin-top: 0.35rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.design-summary {
  background: var(--black);
  color: #eee;
  border-radius: 12px;
  padding: 1.35rem 1.25rem 1.5rem;
}
.design-summary h2 {
  color: var(--yellow);
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}
.design-summary .big {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin: 0.4rem 0 0.15rem;
  letter-spacing: -0.02em;
}
.design-summary .muted { color: #aaa; font-size: 0.85rem; margin: 0 0 1rem; }
.design-summary ul { list-style: none; margin: 0 0 1rem; padding: 0; }
.design-summary li {
  padding: 0.35rem 0;
  border-bottom: 1px solid #333;
  font-size: 0.9rem;
}
.design-summary li:last-child { border-bottom: 0; }
.design-summary .quoted { color: var(--yellow); }
.design-nav-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}
.design-panel[hidden] { display: none !important; }
.grp-placeholder {
  border: 2px dashed #ccc;
  border-radius: 12px;
  padding: 1.5rem;
  background: #f7f7f7;
  margin: 2rem 0;
}
.grp-placeholder h2 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.grp-placeholder .badge-soon {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}
.grp-slot {
  min-height: 220px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #888;
  padding: 1.5rem;
  margin-top: 1rem;
}
.grp-slot code {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: #555;
  word-break: break-all;
}
.design-hero-note {
  font-size: 0.9rem;
  color: #555;
  max-width: 42rem;
}

/* aliases matching design.html markup */
.design-layout {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 2rem;
}
@media (min-width: 960px) {
  .design-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
    align-items: start;
    gap: 2rem;
  }
  .design-summary { position: sticky; top: 5.5rem; }
}
.design-steps {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  list-style: none; margin: 0 0 1.25rem; padding: 0;
}
.design-steps li {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em;
  text-transform: uppercase; padding: 0.35rem 0.65rem;
  border: 1px solid #ddd; border-radius: 999px; color: #666; background: #fff;
  cursor: pointer;
}
.design-steps li.is-active { background: var(--yellow); border-color: var(--black); color: var(--black); }
.design-steps li.is-done { border-color: var(--black); color: var(--black); }
.design-panel {
  border: 1px solid #e5e5e5; border-radius: 12px;
  padding: 1.25rem 1.25rem 1.4rem; margin-bottom: 1rem; background: #fff;
}
.design-panel h2 { font-size: 1.15rem; margin: 0 0 0.35rem; }
.panel-lede, .design-panel .panel-lede { margin: 0 0 1rem; color: #555; font-size: 0.95rem; }
.choice-grid { display: grid; gap: 0.65rem; grid-template-columns: 1fr; }
@media (min-width: 560px) {
  .choice-grid.cols-2 { grid-template-columns: 1fr 1fr; }
}
.choice {
  position: relative; display: block;
  border: 1.5px solid #ddd; border-radius: 10px;
  padding: 0.85rem 1rem 0.85rem 2.4rem; cursor: pointer;
  background: #fafafa; transition: border-color 0.15s, background 0.15s;
}
.choice:hover { border-color: #999; }
.choice.is-selected, .choice:has(input:checked) {
  border-color: var(--black); background: #fffdf0;
  box-shadow: inset 3px 0 0 var(--yellow);
}
.choice input { position: absolute; left: 0.85rem; top: 1rem; margin: 0; }
.choice strong { display: block; font-size: 0.98rem; }
.choice .meta { display: block; font-size: 0.82rem; color: #666; margin-top: 0.15rem; }
.choice .price { display: block; margin-top: 0.35rem; font-weight: 700; font-size: 0.95rem; }
.design-summary {
  background: var(--black); color: #eee; border-radius: 12px;
  padding: 1.35rem 1.25rem 1.5rem;
}
.design-summary h2 { color: var(--yellow); margin: 0 0 0.75rem; font-size: 1.1rem; }
.design-summary .big {
  font-size: 2rem; font-weight: 800; color: #fff;
  margin: 0.4rem 0 0.15rem; letter-spacing: -0.02em;
}
.design-summary .muted { color: #aaa; font-size: 0.85rem; margin: 0 0 1rem; }
.design-summary ul { list-style: none; margin: 0 0 1rem; padding: 0; }
.design-summary li { padding: 0.35rem 0; border-bottom: 1px solid #333; font-size: 0.9rem; }
.design-summary li:last-child { border-bottom: 0; }
.design-summary .quoted { color: var(--yellow); }
.design-nav-btns { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; }
.design-panel[hidden] { display: none !important; }
.design-hero-note { font-size: 0.9rem; color: #555; max-width: 42rem; }
.grp-placeholder {
  border: 2px dashed #ccc; border-radius: 12px; padding: 1.5rem;
  background: #f7f7f7; margin: 2rem 0;
}
.grp-placeholder h2 { margin: 0 0 0.5rem; font-size: 1.15rem; }
.badge-soon {
  display: inline-block; background: var(--yellow); color: var(--black);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; padding: 0.2rem 0.5rem; border-radius: 4px; margin-bottom: 0.6rem;
}
.grp-slot {
  min-height: 220px; background: #fff; border: 1px solid #e0e0e0; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: #888; padding: 1.5rem; margin-top: 1rem;
}
.grp-slot code { display: block; margin-top: 0.6rem; font-size: 0.78rem; color: #555; word-break: break-all; }
.band-paper { background: #f5f5f5; padding: 2.5rem 0; margin-top: 1rem; }
.split-2 { display: grid; gap: 1rem; }
@media (min-width: 720px) { .split-2 { grid-template-columns: 1fr 1fr; } }
.plain { list-style: disc; padding-left: 1.2rem; }
.plain li { margin: 0.35rem 0; }
.radio-row { display: flex; flex-wrap: wrap; gap: 1rem; margin: 0.75rem 0; }
.form-note { font-size: 0.88rem; color: #555; }

/* --- Contact / guides / 404 (Sep 2026 draft) --- */
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
@media (min-width: 720px) and (max-width: 899px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

.contact-cards {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 2rem;
}
@media (min-width: 560px) {
  .contact-cards { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .contact-cards { grid-template-columns: 1fr 1fr 1fr; }
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.2rem;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s ease, transform 0.15s ease;
  min-height: 8.5rem;
}
.contact-card:hover {
  background: var(--yellow);
  color: var(--black);
}
.contact-card .cc-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.contact-card:hover .cc-label { color: var(--black); }
.contact-card strong {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  word-break: break-word;
}
.contact-card .cc-hint {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: auto;
}
.contact-card:hover .cc-hint { color: var(--black); }
.contact-card-wa {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.contact-card-wa .cc-label,
.contact-card-wa .cc-hint { color: #bbb; }
.contact-card-wa:hover {
  background: var(--yellow);
  color: var(--black);
}
.contact-card-wa:hover .cc-label,
.contact-card-wa:hover .cc-hint { color: var(--black); }
.contact-card-cta {
  background: var(--yellow);
  border-color: var(--black);
}
.company-block {
  background: var(--paper);
  border-left: 6px solid var(--yellow);
  padding: 1.25rem 1.35rem;
  margin: 0 0 1.75rem;
  max-width: 42rem;
}
.company-block h2 { margin: 0 0 0.6rem; font-size: 1.15rem; }
.company-block p { margin: 0.5rem 0 0; }
.hours-note { color: var(--muted); font-size: 0.95rem; }

.guide-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.guide-list li {
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.guide-list a {
  display: block;
  padding: 0.75rem 0;
  color: var(--ink);
  font-weight: 650;
  text-decoration: none;
}
.guide-list a:hover {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.guide-list.checklist li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}
.guide-list.checklist strong { font-weight: 700; }

.guides-band {
  background: var(--black);
  color: var(--white);
  padding: 2rem 0;
}
.guides-band .kicker {
  background: var(--yellow);
  color: var(--black);
  display: inline-block;
  padding: 0.15rem 0.4rem;
}
.guides-band h2 { color: var(--white); margin: 0.4rem 0 1rem; }
.guides-band .guide-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  border: 0;
}
.guides-band .guide-row li {
  border: 0;
  margin: 0;
}
.guides-band .guide-row a {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  text-decoration: none;
}
.guides-band .guide-row a:hover {
  background: transparent;
  color: var(--yellow);
  text-decoration: none;
}

.error-404 .page-hero { padding-bottom: 0.5rem; }
.error-404 .error-links {
  max-width: 28rem;
  margin-bottom: 1.5rem;
}
.error-404 .error-links a {
  font-size: 1.1rem;
}


/* ---- grouped nav dropdowns (mega-lite) ---- */
.nav .has-menu { position: relative; }
.nav .sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0.55rem 0.85rem;
  flex-direction: column !important;
  gap: 0.05rem !important;
  align-items: stretch !important;
}
.nav.open .has-menu.open > .sub-menu,
.nav .has-menu.open > .sub-menu { display: flex; }
.nav .sub-menu a {
  font-weight: 550;
  font-size: 0.92rem;
  padding: 0.45rem 0.2rem;
  color: var(--muted, #444);
}
.nav .has-menu > a.menu-parent::after {
  content: " ▾";
  font-size: 0.75em;
  opacity: 0.7;
}
@media (min-width: 860px) {
  .nav > ul { flex-wrap: wrap; gap: 0.85rem 1.05rem; }
  .nav .has-menu:hover > .sub-menu,
  .nav .has-menu:focus-within > .sub-menu,
  .nav .has-menu.open > .sub-menu {
    display: flex;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    min-width: 14.5rem;
    max-width: 18rem;
    padding: 0.55rem 0.35rem;
    background: var(--white, #fff);
    border: 1px solid var(--line, #e5e5e5);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    z-index: 40;
  }
  .nav .sub-menu a { padding: 0.4rem 0.65rem; white-space: nowrap; }
  .nav .sub-menu a:hover { background: #f7f7f7; text-decoration: none; border-radius: 6px; }
}
@media (max-width: 859px) {
  .nav .has-menu > a.menu-parent { display: flex; justify-content: space-between; align-items: center; }
}

/* gallery: uniform cropped tiles */
.gallery-grid .product-media img { aspect-ratio: 4 / 3; object-fit: cover; height: auto; }

/* Homepage hero: brighter photo, soft darkening only behind the text (2026-09-27) */
.hero-photo.hero-home > img {
  filter: brightness(1.15);
}
.hero-photo.hero-home .hero-overlay {
  background: linear-gradient(180deg, rgba(17,17,17,0) 0%, rgba(17,17,17,0.18) 35%, rgba(17,17,17,0.45) 100%);
}
.hero-photo.hero-home h1,
.hero-photo.hero-home .lede,
.hero-photo.hero-home .hero-note {
  text-shadow: 0 1px 3px rgba(0,0,0,0.55), 0 2px 14px rgba(0,0,0,0.35);
}
.hero-photo.hero-home .lede { color: #f2f2f2; }
.hero-photo.hero-home .hero-note { color: #ececec; }
