﻿:root {
  --ink: #102235;
  --navy: #0b1f36;
  --navy-2: #14385d;
  --blue: #1f5d8f;
  --sky: #dfeef8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #d8e1e8;
  --muted: #607080;
  --gold: #c7923e;
  --green: #4d7c67;
  --shadow: 0 24px 70px rgba(11, 31, 54, 0.13);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Sora", "Aptos", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: #425366; }
ul { margin: 0; padding-left: 1.1rem; color: #425366; }
li { margin: 0.35rem 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(216, 225, 232, 0.9);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.logo-image {
  width: 210px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  box-shadow: 0 10px 22px rgba(31, 93, 143, 0.22);
  position: relative;
}
.logo-mark:after {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid var(--gold);
  position: absolute;
  right: 8px;
  top: 8px;
  border-radius: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
  color: #34485e;
}
.nav-links a { padding: 8px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); border-color: var(--gold); }
.nav-cta { display: inline-flex; align-items: center; justify-content: center; padding: 10px 16px; border-radius: 999px; background: var(--navy); color: var(--white); font-weight: 700; }
.menu-toggle { display: none; border: 1px solid var(--line); background: var(--white); border-radius: 12px; padding: 9px 12px; color: var(--navy); font-weight: 700; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(199, 146, 62, 0.16), transparent 28%),
    linear-gradient(135deg, #081b2f 0%, #0f3154 100%);
}
.hero .container { padding-top: 64px; padding-bottom: 64px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.86fr); gap: 40px; align-items: center; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; color: var(--gold); font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; margin-bottom: 18px; }
.eyebrow:before { content: ""; width: 28px; height: 2px; background: currentColor; }
h1, h2, h3 { margin: 0; letter-spacing: -0.05em; line-height: 1.05; color: var(--navy); }
.hero h1 { color: #ffffff; font-size: clamp(2.2rem, 4.2vw, 4.35rem); line-height: 1.02; max-width: 760px; }
.hero-subtitle { color: rgba(255,255,255,0.78); font-size: clamp(1rem, 1.45vw, 1.16rem); max-width: 680px; margin: 20px 0 24px; }
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 20px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 28px rgba(11, 31, 54, 0.16); }
.btn-primary { background: var(--gold); color: #081b2f; }
.btn-secondary { background: rgba(255,255,255,0.1); color: #ffffff; border-color: rgba(255,255,255,0.35); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); border-color: var(--line); }
.trust-strip { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; margin-top: 38px; }
.trust-pill { color: #fff; border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.08); padding: 12px 14px; border-radius: 999px; font-size: 0.84rem; }
.trust-chip { color: var(--navy); border: 1px solid rgba(255,255,255,0.78); background: rgba(255,255,255,0.92); padding: 11px 12px; border-radius: 10px; font-size: 0.84rem; font-weight: 800; box-shadow: 0 14px 30px rgba(0,0,0,0.12); }
.hero-panel { background: rgba(255,255,255,0.95); border-radius: 30px; padding: 20px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.7); }
.hero-panel .placeholder { min-height: 445px; }
.hero-visual-stack { display: grid; grid-template-columns: minmax(0, 1fr) 190px; gap: 14px; min-height: 470px; }
.hero-main-visual { min-height: 470px; }
.hero-small-visuals { display: grid; gap: 14px; }
.hero-small-visual { min-height: 228px; border-radius: 18px; padding: 16px; }
.hero-small-visual strong { font-size: 0.9rem; }
.hero-small-visual span { font-size: 0.72rem; }
.project-collage { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.hero-collage { min-height: 460px; }
.collage-item { min-height: 220px; border-radius: 20px; padding: 18px; }
.collage-item strong { font-size: 0.95rem; }
.collage-item span { font-size: 0.74rem; }
.collage-label { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); z-index: 3; padding: 13px 18px; border-radius: 999px; background: var(--navy); color: #fff; font-weight: 900; box-shadow: 0 18px 34px rgba(11,31,54,0.28); white-space: nowrap; }

.container { max-width: var(--max); margin: 0 auto; padding: 72px 22px; }
.section-head { max-width: 820px; margin-bottom: 28px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-kicker { color: var(--gold); font-weight: 900; letter-spacing: 0.11em; text-transform: uppercase; font-size: 0.76rem; margin-bottom: 10px; }
h2 { font-size: clamp(2rem, 3.8vw, 3.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
.lead { font-size: 1.12rem; color: #425366; max-width: 760px; }
.source-section h2,
.industry-section h2,
.review-faq-section h2,
.scope-section h2 {
  font-size: clamp(1.95rem, 3.35vw, 3rem);
  line-height: 1.08;
}
.active-project-section h2,
.prefabrication-section h2,
.flow-section h2,
.evidence-section h2,
.project-video-section h2 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1.08;
}
.bg-white { background: var(--white); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.bg-navy p, .bg-navy li { color: rgba(255,255,255,0.72); }
.bg-blue-soft { background: linear-gradient(180deg, #eef6fb, #fbfaf7); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 18px 42px rgba(11,31,54,0.06); }
.card.dark { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); box-shadow: none; }
.card h3 { margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }
.icon-card { min-height: 180px; }
.icon-card:before { content: ""; display: block; width: 42px; height: 42px; border-radius: 14px; background: linear-gradient(135deg, var(--sky), #ffffff); border: 1px solid var(--line); margin-bottom: 18px; box-shadow: inset 0 0 0 7px rgba(31,93,143,0.06); }
.bg-navy .icon-card:before { background: linear-gradient(135deg, rgba(199,146,62,0.26), rgba(255,255,255,0.08)); border-color: rgba(255,255,255,0.15); }

.placeholder { border-radius: var(--radius); border: 1px solid #cdd9e2; background: linear-gradient(135deg, #edf4f8 0%, #ffffff 52%, #e8f0f6 100%); min-height: 290px; padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.placeholder:before { content: ""; position: absolute; inset: 18px; border: 1px dashed rgba(31,93,143,0.28); border-radius: 18px; }
.placeholder strong, .placeholder span { position: relative; z-index: 1; }
.placeholder strong { color: var(--navy); font-size: 1.02rem; }
.placeholder span { color: var(--muted); font-size: 0.83rem; margin-top: 8px; }
.placeholder.dark { background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.2)); border-color: rgba(255,255,255,0.2); }
.placeholder.dark strong { color: #fff; }
.placeholder.dark span { color: rgba(255,255,255,0.7); }

.feature-band { display: grid; grid-template-columns: 45fr 55fr; gap: 34px; align-items: center; }
.case-evidence-media { display: grid; gap: 16px; }
.case-main-image { min-height: 500px; }
.evidence-tabs { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.evidence-tabs span { padding: 12px 10px; border-radius: 14px; background: #eef4f7; border: 1px solid var(--line); color: var(--navy); font-weight: 900; text-align: center; font-size: 0.82rem; }
.featured-media { display: grid; gap: 14px; }
.featured-main-image { min-height: 430px; }
.featured-media-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.mini-placeholder { min-height: 150px; padding: 14px; border-radius: 16px; }
.mini-placeholder strong { font-size: 0.86rem; }
.mini-placeholder span { font-size: 0.7rem; }
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 20px; }
.check-list.single { grid-template-columns: 1fr; }
.check-item { padding: 14px 14px 14px 38px; background: rgba(31,93,143,0.06); border: 1px solid rgba(31,93,143,0.11); border-radius: 14px; position: relative; color: #33475b; }
.check-item:before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); position: absolute; left: 15px; top: 20px; }
.bg-navy .check-item { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); color: rgba(255,255,255,0.78); }

.install-section { background: linear-gradient(135deg, #081b2f, #123a61); }
.installation-proof { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.proof-item { min-height: 150px; padding: 22px; border-radius: 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); color: #fff; }
.proof-item strong { display: block; font-size: 1.05rem; margin-bottom: 8px; color: #fff; }
.proof-item span { color: rgba(255,255,255,0.72); }

.steps { counter-reset: step; display: grid; gap: 14px; }
.step { counter-increment: step; display: grid; grid-template-columns: 58px 1fr; gap: 16px; align-items: start; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; }
.step:before { content: counter(step, decimal-leading-zero); display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 18px; color: var(--navy); background: #f3e6d0; font-weight: 900; }
.step h3 { font-size: 1.08rem; margin-bottom: 4px; }
.step p { margin-bottom: 0; }

.partner-stack { display: grid; gap: 20px; }
.primary-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.source-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.source-tags span { padding: 10px 14px; border-radius: 999px; background: #eef4f7; border: 1px solid var(--line); color: #34485e; font-weight: 800; font-size: 0.88rem; }
.coordination-flow { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; align-items: stretch; }
.coordination-flow span { position: relative; padding: 18px 16px; border-radius: 18px; background: var(--navy); color: #fff; font-weight: 900; text-align: center; }
.coordination-flow span:not(:last-child):after { content: "→"; position: absolute; right: -14px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.4rem; z-index: 2; }
.secondary-cards { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.micro-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; max-width: 760px; margin: 0 auto; }
.image-card { padding: 18px; }
.card-visual { min-height: 210px; margin-bottom: 18px; border-radius: 18px; }
.compact-card { min-height: 150px; padding: 22px; }
.compact-card h3, .micro-card h3 { font-size: 1.12rem; }
.micro-card { background: #f7fbfd; }

.flow-layout { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 32px; align-items: start; }
.process-visual { min-height: 590px; justify-content: space-between; }
.process-path { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 9px; margin-top: 22px; }
.process-path span { padding: 9px 10px; border-radius: 12px; background: rgba(255,255,255,0.86); border: 1px solid var(--line); color: var(--navy); font-size: 0.78rem; font-weight: 800; }
.visual-timeline { display: grid; gap: 8px; margin: 24px 0; padding: 22px; border-radius: var(--radius); background: rgba(255,255,255,0.76); border: 1px solid var(--line); box-shadow: 0 18px 42px rgba(11,31,54,0.05); }
.visual-timeline span { position: relative; display: block; padding: 10px 14px; border-radius: 12px; background: #fff; border: 1px solid var(--line); color: var(--navy); font-weight: 800; }
.visual-timeline span:not(:last-child):after { content: "↓"; position: absolute; left: 18px; bottom: -17px; color: var(--gold); font-weight: 900; z-index: 2; }
.flow-image-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }

.documentation-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 30px; align-items: start; }
.doc-sequence { margin-top: 24px; padding: 24px; border-radius: var(--radius); background: linear-gradient(135deg, #f4f8fb, #fff); border: 1px solid var(--line); box-shadow: 0 18px 42px rgba(11,31,54,0.06); display: grid; gap: 24px; }
.doc-step { position: relative; padding: 18px; border-radius: 16px; background: #fff; border: 1px solid var(--line); }
.doc-step:not(:last-child):after { content: "↓"; position: absolute; left: 24px; bottom: -26px; color: var(--gold); font-weight: 900; }
.doc-step strong { display: block; color: var(--navy); font-size: 1.02rem; margin-bottom: 4px; }
.doc-step span { color: var(--muted); font-size: 0.9rem; }

.evidence-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.evidence-documentation .section-head { margin-left: 0; }
.evidence-layout { display: grid; grid-template-columns: minmax(0, 1fr) 430px; gap: 24px; align-items: stretch; }
.evidence-main-visual { min-height: 520px; }
.evidence-card-list { display: grid; gap: 14px; }
.video-proof-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; margin-top: 20px; }
.video-thumb { min-height: 180px; border-radius: 18px; }

.video-layout { display: grid; grid-template-columns: 1fr 320px; gap: 22px; align-items: stretch; }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.video-grid .video-card:nth-child(5) { grid-column: 1 / -1; }
.video-cta { background: var(--navy); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.video-cta h3 { color: #fff; font-size: clamp(1.6rem, 2.5vw, 2.25rem); }
.video-cta p { color: rgba(255,255,255,0.72); }
.video-cta a { display: block; margin-top: 12px; padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: #fff; font-weight: 800; }

.start-checklist { margin-top: 24px; }
.review-faq-layout { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: 28px; align-items: start; }
.review-panel { display: grid; gap: 18px; }
.submission-list { display: grid; gap: 10px; margin-top: 18px; }
.submission-list div {
  min-width: 0;
  position: relative;
  padding: 13px 14px 13px 42px;
  border-radius: 14px;
  background: #f7fbfd;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
  line-height: 1.35;
}
.submission-list div:before { content: ""; position: absolute; left: 15px; top: 15px; width: 14px; height: 14px; border-radius: 5px; border: 2px solid var(--gold); background: #fff; }
.compact-form textarea { min-height: 100px; }
.scope-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.do-card { border-top: 5px solid var(--green); }
.dont-card { border-top: 5px solid #b75d4b; }
.limit-list { display: grid; gap: 12px; margin-top: 18px; }
.limit-list div { padding: 14px 14px 14px 38px; border-radius: 14px; background: #fff4f1; border: 1px solid #f1d4cc; color: #6e3328; position: relative; font-weight: 800; }
.limit-list div:before { content: ""; width: 12px; height: 12px; border-radius: 2px; background: #b75d4b; position: absolute; left: 15px; top: 20px; transform: rotate(45deg); }

/* Image-led homepage layout */
.project-hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  background: #071829;
  isolation: isolate;
}
.project-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0) 35%),
    radial-gradient(circle at 78% 24%, rgba(255,255,255,0.92), rgba(223,238,248,0.72) 20%, transparent 38%),
    radial-gradient(circle at 88% 78%, rgba(199,146,62,0.38), transparent 24%),
    linear-gradient(135deg, #dce8ef 0%, #f8fbfd 48%, #9fb7ca 100%);
}
.project-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,24,41,0.98) 0%, rgba(7,24,41,0.94) 42%, rgba(7,24,41,0.58) 57%, rgba(7,24,41,0.16) 78%, rgba(7,24,41,0.03) 100%),
    linear-gradient(180deg, rgba(7,24,41,0.08), rgba(7,24,41,0.24));
}
.project-hero .container { position: relative; z-index: 2; width: 100%; }
.image-led-hero { display: block; max-width: 790px; }
.hero-copy { position: relative; z-index: 2; }
.project-trust-strip { grid-template-columns: repeat(2, minmax(0,1fr)); max-width: 640px; }
.proof-strip-section { background: #ffffff; border-bottom: 1px solid var(--line); }
.proof-strip-section .container { padding-top: 14px; padding-bottom: 14px; }
.proof-strip { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.proof-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f4f8fb;
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.hero-bg-label {
  position: absolute;
  right: clamp(22px, 6vw, 86px);
  bottom: clamp(24px, 6vw, 72px);
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7,24,41,0.78);
  border: 1px solid rgba(255,255,255,0.28);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(7,24,41,0.26);
  backdrop-filter: blur(10px);
}
.project-hero-media { background: rgba(255,255,255,0.96); border: 1px solid rgba(255,255,255,0.7); border-radius: 34px; padding: 18px; box-shadow: var(--shadow); display: grid; gap: 14px; }
.hero-showcase-main { min-height: 430px; }
.single-hero-visual { min-height: 620px; aspect-ratio: 16 / 10; }
.hero-thumbnail-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.hero-thumb { min-height: 145px; border-radius: 18px; }

.visual-placeholder { position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid #cdd9e2; background: linear-gradient(135deg, #e9f1f6 0%, #ffffff 48%, #dfeaf2 100%); min-height: 280px; display: flex; align-items: flex-end; padding: 22px; box-shadow: 0 18px 42px rgba(11,31,54,0.07); }
.visual-placeholder:before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(31,93,143,0.14); border-radius: 18px; }
.visual-placeholder:after { content: ""; position: absolute; width: 48%; height: 58%; right: -14%; top: -12%; border-radius: 999px; background: rgba(31,93,143,0.08); }
.visual-placeholder span { position: relative; z-index: 1; display: inline-flex; padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,0.88); color: var(--navy); font-weight: 900; font-size: 0.88rem; box-shadow: 0 10px 28px rgba(11,31,54,0.08); }
.dark-visual { border-color: rgba(255,255,255,0.35); background: linear-gradient(135deg, #edf4f8 0%, #ffffff 52%, #dfeaf2 100%); }
.dark-visual span { background: rgba(255,255,255,0.92); color: var(--navy); }

/* Keep review placeholders centered while preserving the intended fit for future images. */
.image-slot img[src$="image-under-review.svg"],
.hero-bg-picture img[src$="image-under-review.svg"] {
  object-fit: contain;
  object-position: center;
  background: #edf2f5;
}

.split-feature { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 42px; align-items: center; }
.active-project-section,
.prefabrication-section,
.source-section {
  position: relative;
  isolation: isolate;
}
.active-project-section .container,
.prefabrication-section .container,
.source-section .container {
  position: relative;
  z-index: 1;
}
.active-media { display: grid; gap: 14px; }
.project-case-visual {
  min-height: 0;
  max-height: 420px;
  aspect-ratio: 7 / 5;
}
.project-case-visual img { object-fit: cover; }
.case-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.case-tags span { padding: 10px 14px; border-radius: 999px; background: #eef4f7; border: 1px solid var(--line); color: var(--navy); font-size: 0.84rem; font-weight: 900; }
.project-case-copy h2, .prefab-copy h2 { margin-bottom: 18px; }
.prefab-copy h2 {
  max-width: 12ch;
  line-height: 1.08;
  overflow-wrap: anywhere;
}
.clean-points { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 28px; }
.clean-points div {
  min-width: 0;
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 15px 16px;
  border-radius: 16px;
  background: #f4f8fb;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: normal;
}

.prefabrication-section { background: linear-gradient(135deg, #071829, #123a61); }
.prefab-visual {
  min-height: 0;
  max-height: 420px;
  aspect-ratio: 14 / 9;
}
.prefab-visual img { object-fit: cover; }
.dark-points { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 26px; }
.dark-points span { padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.86); font-weight: 800; }

.source-section .section-head { margin-bottom: 24px; }
.source-carousel { position: relative; padding: 0 50px 34px; }
.carousel-viewport { overflow: hidden; }
.image-card-row { display: flex; gap: 20px; }
.source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.carousel-track { transition: transform 0.45s ease; will-change: transform; }
.carousel-track .image-led-card { flex: 0 0 calc((100% - 48px) / 3); }
.image-led-card,
.industry-card,
.short-video-card,
.scope-panel {
  min-width: 0;
  height: 100%;
}
.image-led-card,
.industry-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(11,31,54,0.06);
  display: flex;
  flex-direction: column;
}
.image-led-card .card-image {
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  box-shadow: none;
  border: 0;
}
.image-led-card .card-image img { object-fit: cover; }
.image-card-copy, .industry-card h3, .industry-card p, .industry-card .btn { margin-left: 22px; margin-right: 22px; }
.image-card-copy {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 0 22px;
}
.image-card-copy h3,
.industry-card h3,
.short-video-copy h3,
.scope-panel h3,
.scope-panel li,
.submission-list div,
.flow-steps strong,
.evidence-list strong,
.video-actions a,
.video-actions .social-disabled,
summary {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}
.image-card-copy h3,
.industry-card h3 {
  min-height: 2.35em;
  line-height: 1.14;
}
.image-card-copy p,
.industry-card p,
.scope-panel li,
.flow-steps p,
.evidence-list span,
details p {
  overflow-wrap: anywhere;
  word-break: normal;
}
.image-card-copy p {
  flex: 1;
  min-height: 68px;
  line-height: 1.52;
}
.carousel-arrow { position: absolute; top: 38%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,0.94); color: var(--navy); font-size: 2rem; line-height: 1; font-weight: 700; cursor: pointer; box-shadow: 0 16px 34px rgba(11,31,54,0.12); z-index: 3; }
.carousel-arrow:hover { background: var(--navy); color: #fff; }
.carousel-arrow-prev { left: 0; }
.carousel-arrow-next { right: 0; }
.carousel-dots { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); display: flex; gap: 9px; justify-content: center; }
.carousel-dot { width: 9px; height: 9px; border-radius: 999px; border: 0; padding: 0; background: #c6d5df; cursor: pointer; transition: width 0.2s ease, background 0.2s ease; }
.carousel-dot.is-active { width: 26px; background: var(--navy); }
.support-line { margin-top: 22px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.support-line span { padding: 10px 14px; border-radius: 999px; background: #eef4f7; border: 1px solid var(--line); color: var(--navy); font-weight: 800; }

.flow-section .section-head { margin-bottom: 20px; }
.horizontal-flow { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 10px; margin-bottom: 28px; }
.horizontal-flow span { position: relative; padding: 14px 12px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); color: var(--navy); font-weight: 900; text-align: center; font-size: 0.86rem; }
.horizontal-flow span:not(:last-child):after { content: "→"; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); color: var(--gold); font-weight: 900; z-index: 2; }
.flow-content { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr); gap: 28px; align-items: stretch; }
.flow-visual {
  min-height: 0;
  max-height: 400px;
  aspect-ratio: 7 / 5;
  background: #edf2f5;
}
.flow-visual img { object-fit: contain; }
.flow-steps { display: grid; gap: 12px; }
.flow-steps div {
  min-width: 0;
  padding: 17px 18px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(11,31,54,0.05);
}
.flow-steps strong { display: block; color: var(--navy); font-size: 1rem; margin-bottom: 5px; }
.flow-steps p { margin: 0; font-size: 0.92rem; }

.industry-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.industry-image {
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}
.industry-image img { object-fit: cover; }
.industry-card h3 { padding-top: 20px; }
.industry-card p {
  flex: 1;
  min-height: 72px;
  line-height: 1.52;
}
.industry-card .btn { margin-top: auto; margin-bottom: 20px; }

.evidence-layout-v2 { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(370px,0.95fr); gap: 24px; align-items: stretch; }
.evidence-main {
  min-height: 0;
  max-height: 400px;
  aspect-ratio: 7 / 5;
  background: #edf2f5;
}
.evidence-main img { object-fit: contain; }
.evidence-copy { align-self: center; }
.evidence-list { display: grid; gap: 10px; margin-top: 20px; }
.evidence-list div {
  min-width: 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f7fbfd;
  border: 1px solid var(--line);
}
.evidence-list strong { display: block; color: var(--navy); margin-bottom: 4px; }
.evidence-list span { color: var(--muted); }
.evidence-thumbs { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.evidence-thumb {
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  background: #edf2f5;
}
.evidence-thumb img { object-fit: contain; }

.project-video-section { background: linear-gradient(180deg, #f6fafc, #ffffff); }
.project-video-section .section-head .lead { margin-left: auto; margin-right: auto; }
.short-video-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; max-width: 920px; margin: 0 auto; }
.short-video-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(11,31,54,0.07);
  display: flex;
  flex-direction: column;
}
.vertical-video { aspect-ratio: 9 / 16; min-height: 0; max-height: 480px; border-radius: 0; border: 0; box-shadow: none; align-items: flex-end; }
.vertical-video img { object-fit: contain; background: #edf2f5; }
.short-video-copy {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 18px;
}
.short-video-copy h3 {
  min-height: 2.35em;
  font-size: 1.05rem;
  line-height: 1.16;
  margin-bottom: 14px;
}
.video-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-top: auto;
}
.video-actions a { display: inline-flex; justify-content: center; align-items: center; min-height: 42px; padding: 10px 12px; border-radius: 999px; background: #eef4f7; border: 1px solid var(--line); color: var(--navy); font-weight: 900; font-size: 0.78rem; }
.video-actions a:hover { background: var(--navy); color: #fff; }

.review-faq-section { background: linear-gradient(180deg, #ffffff, #f3f8fb); }
.review-faq-layout-v2 { display: grid; grid-template-columns: minmax(0,0.95fr) minmax(0,1.05fr); gap: 30px; align-items: start; }
.review-box { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: 0 18px 42px rgba(11,31,54,0.06); }
.review-box h2 { margin-bottom: 20px; }
.review-box .compact-form { margin-top: 20px; }
.review-top { display: grid; grid-template-columns: minmax(0,0.82fr) minmax(0,1.18fr); gap: 22px; align-items: stretch; margin-bottom: 22px; }
.review-checklist, .review-form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: 0 18px 42px rgba(11,31,54,0.06); }
.review-checklist h3 { margin-bottom: 18px; }
.review-visual {
  min-height: 0;
  max-height: 380px;
  aspect-ratio: 7 / 5;
  background: #edf2f5;
}
.review-visual img { object-fit: contain; }

/* Inner-page review placeholders use restrained, reusable media proportions. */
.grid-3 .placeholder {
  min-height: 0;
  aspect-ratio: 4 / 3;
  justify-content: center;
}
.grid-2 > .reveal > .placeholder {
  min-height: 0;
  max-height: 420px;
  aspect-ratio: 4 / 3;
  justify-content: center;
}

/* Review-state SVGs stay fully visible even inside future cover-based media slots. */
body .image-slot img[src$="image-under-review.svg"] {
  object-fit: contain;
  object-position: center;
}

/* WordPress stage-one homepage media wrappers migrated from the static head. */
.hero-bg-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.hero-bg-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.image-slot {
  position: relative;
  overflow: hidden;
  padding: 0;
  display: block;
}
.image-slot picture,
.image-slot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.image-slot:before,
.image-slot:after,
.image-slot span {
  display: none;
}
.review-bottom { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(360px,0.9fr); gap: 22px; align-items: start; }
.review-form-card .btn { margin-top: 16px; }

.scope-grid-v2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.scope-panel { border-radius: var(--radius); padding: 24px; border: 1px solid var(--line); background: var(--white); box-shadow: 0 18px 42px rgba(11,31,54,0.06); }
.scope-panel h3 { min-height: 2.2em; margin-bottom: 18px; line-height: 1.16; }
.scope-panel ul { list-style: none; padding: 0; display: grid; gap: 11px; }
.scope-panel li { margin: 0; padding: 12px 14px; border-radius: 14px; background: #f7fbfd; color: var(--navy); font-weight: 800; line-height: 1.4; }
.do-panel { border-top: 5px solid var(--green); }
.dont-panel { border-top: 5px solid #b75d4b; }

.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { padding: 10px 13px; border-radius: 999px; background: #eef4f7; border: 1px solid var(--line); color: #34485e; font-weight: 700; font-size: 0.88rem; }
.video-card { min-height: 230px; }
.faq { display: grid; gap: 12px; }
details {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
}
summary { cursor: pointer; font-weight: 900; color: var(--navy); line-height: 1.35; }
details p { margin: 12px 0 0; line-height: 1.55; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: var(--navy); font-size: 0.9rem; }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font: inherit; color: var(--ink); background: #fff; }
textarea { min-height: 132px; resize: vertical; }
.form-note { margin-top: 14px; font-size: 0.88rem; color: var(--muted); }

.page-hero { background: linear-gradient(135deg, var(--navy), #123a61); color: var(--white); }
.page-hero .container { padding-top: 72px; padding-bottom: 70px; }
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 4.6rem); max-width: 960px; }
.page-hero p { color: rgba(255,255,255,0.76); max-width: 760px; font-size: 1.12rem; }
.breadcrumb { color: rgba(255,255,255,0.58); font-weight: 800; font-size: 0.82rem; margin-bottom: 18px; }
.page-hero h1,
.page-hero p,
.breadcrumb,
.page-hero .container,
.section-head,
.grid-2,
.grid-3,
.grid-4,
.split-feature,
.review-top,
.review-bottom,
.faq,
.card,
.card h3,
.card p,
.check-item,
.step,
.step h3,
.step p,
.scope-panel,
.scope-panel li,
details,
details summary,
details p {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}
.case-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 18px; border: 1px solid var(--line); background: #fff; }
.case-table th, .case-table td { text-align: left; padding: 15px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.case-table th { width: 220px; color: var(--navy); background: #f3f7fa; }
.case-table tr:last-child th, .case-table tr:last-child td { border-bottom: 0; }

.site-footer { background: #071829; color: rgba(255,255,255,0.72); }
.footer-grid { max-width: var(--max); margin: 0 auto; padding: 46px 22px; display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr; gap: 24px; }
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 12px; }
.site-footer a { display: block; color: rgba(255,255,255,0.72); margin: 8px 0; }
.site-footer a:hover { color: #fff; }
.footer-logo {
  width: 180px;
  height: 55px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 12px;
}
.social-disabled {
  display: block;
  color: rgba(255,255,255,0.5);
  margin: 8px 0;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 14px 22px; text-align: center; font-size: 0.84rem; }

.quick-contact-card {
  margin-top: 18px;
  padding: 18px 20px;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .nav-links { position: absolute; left: 18px; right: 18px; top: 68px; display: none; flex-direction: column; align-items: flex-start; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-cta { width: 100%; }
  .hero { background: linear-gradient(135deg, #081b2f 0%, #0f3154 100%); }
  .container { padding: 62px 20px; }
  .section-head { margin-bottom: 24px; }
  .project-hero { min-height: 560px; }
  .hero .container { padding-top: 52px; padding-bottom: 54px; }
  .hero-grid { gap: 28px; }
  .hero h1 { font-size: clamp(2.05rem, 5vw, 3.4rem); max-width: 640px; }
  .hero-subtitle { font-size: 1rem; max-width: 560px; margin: 18px 0 22px; }
  .project-hero:after { background: linear-gradient(90deg, rgba(7,24,41,0.98) 0%, rgba(7,24,41,0.9) 54%, rgba(7,24,41,0.32) 100%); }
  .hero-grid, .feature-band, .grid-2, .flow-layout, .documentation-layout, .video-layout, .scope-grid, .hero-visual-stack, .evidence-layout, .review-faq-layout, .image-led-hero, .split-feature, .flow-content, .evidence-layout-v2, .review-faq-layout-v2, .review-top, .review-bottom { grid-template-columns: 1fr; }
.trust-strip, .proof-strip, .grid-4, .primary-cards, .secondary-cards, .evidence-grid, .installation-proof, .coordination-flow, .video-proof-row, .industry-row, .horizontal-flow, .evidence-thumbs, .scope-grid-v2, .short-video-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .proof-strip-section .container { padding-top: 12px; padding-bottom: 12px; }
  .source-carousel { padding-left: 44px; padding-right: 44px; }
  .carousel-track .image-led-card { flex-basis: calc((100% - 24px) / 2); }
  .source-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .project-case-visual, .prefab-visual { max-height: 340px; }
  .flow-visual, .evidence-main, .review-visual { max-height: 320px; }
  .vertical-video { max-height: 420px; }
  .review-checklist, .review-form-card, .scope-panel { padding: 22px; }
  .grid-3 { grid-template-columns: 1fr; }
  .project-hero-media { order: -1; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); padding: 38px 20px; gap: 20px; }
}
@media (max-width: 768px) {
  .nav-wrap { padding: 12px 18px; gap: 14px; }
  .logo-image { width: 168px; height: 48px; }
  .container { padding: 52px 18px; }
  .section-head { margin-bottom: 20px; }
  .project-hero { min-height: 520px; }
  .hero .container { padding-top: 44px; padding-bottom: 46px; }
  .hero h1 { font-size: clamp(1.95rem, 7vw, 2.7rem); line-height: 1.06; }
  .hero-subtitle { font-size: 0.96rem; margin: 16px 0 20px; }
  .hero-actions { gap: 10px; }
  .proof-strip { gap: 8px; }
  .proof-strip span { min-height: 44px; padding: 9px 10px; font-size: 0.76rem; }
  .source-section h2,
  .industry-section h2,
  .review-faq-section h2,
  .scope-section h2 { font-size: clamp(1.75rem, 6vw, 2.25rem); }
  .active-project-section h2,
  .prefabrication-section h2,
  .flow-section h2,
  .evidence-section h2,
  .project-video-section h2 { font-size: clamp(1.65rem, 5vw, 2.05rem); }
  .prefab-copy h2 { max-width: 100%; }
  .source-carousel { padding: 0 0 30px; }
  .image-card-copy { padding: 18px 0 18px; }
  .image-card-copy h3,
  .industry-card h3,
  .short-video-copy h3,
  .scope-panel h3 { min-height: 0; }
  .image-card-copy p,
  .industry-card p { min-height: 0; }
  .industry-card h3 { padding-top: 18px; }
  .industry-card .btn { margin-bottom: 18px; }
  .project-case-visual, .prefab-visual { max-height: 300px; }
  .flow-visual, .evidence-main, .review-visual { max-height: 260px; }
  .vertical-video { max-height: 360px; }
  .short-video-row { gap: 18px; }
  .short-video-copy { padding: 16px; }
  .review-top { margin-bottom: 18px; }
  .review-checklist, .review-form-card, .scope-panel { padding: 20px; }
  .submission-list { gap: 8px; }
  .faq { gap: 10px; }
  details { padding: 16px 18px; }
  .footer-grid { padding: 34px 18px; gap: 18px; }
}
@media (max-width: 640px) {
  .nav-wrap { padding: 10px 14px; }
  .logo-image { width: 148px; height: 42px; }
  .menu-toggle { padding: 8px 11px; font-size: 0.82rem; }
  .container { padding: 44px 14px; }
  body[class*="page-template-page-"] h2 { font-size: clamp(1.68rem, 7vw, 2.05rem); line-height: 1.08; max-width: 100%; }
  body[class*="page-template-page-"] h3 { font-size: clamp(1.05rem, 4.6vw, 1.24rem); line-height: 1.16; }
  .page-hero .container { padding-top: 40px; padding-bottom: 44px; }
  .page-hero h1 { font-size: clamp(1.72rem, 8vw, 2.1rem); line-height: 1.08; max-width: 100%; }
  .page-hero p { font-size: 0.96rem; max-width: 100%; }
  .breadcrumb { font-size: 0.76rem; margin-bottom: 14px; }
  .hero .container { padding-top: 38px; padding-bottom: 42px; }
  .project-hero { min-height: 500px; align-items: flex-start; }
  .project-hero:after { background: linear-gradient(180deg, rgba(7,24,41,0.98) 0%, rgba(7,24,41,0.88) 62%, rgba(7,24,41,0.38) 100%); }
  .image-led-hero, .hero-copy { max-width: calc(100vw - 32px); }
  .hero h1 { font-size: clamp(1.7rem, 8.3vw, 1.95rem); line-height: 1.08; max-width: 100%; }
  .hero-subtitle { font-size: 0.92rem; max-width: calc(100vw - 32px); margin: 14px 0 18px; }
  .hero-bg-label { left: 14px; right: auto; bottom: 16px; max-width: calc(100% - 28px); font-size: 0.74rem; padding: 9px 12px; }
.trust-strip, .proof-strip, .grid-4, .check-list, .form-grid, .footer-grid, .project-collage, .featured-media-row, .primary-cards, .secondary-cards, .micro-cards, .flow-image-row, .evidence-grid, .video-grid, .hero-small-visuals, .evidence-tabs, .installation-proof, .coordination-flow, .process-path, .video-proof-row, .hero-thumbnail-row, .clean-points, .dark-points, .horizontal-flow, .flow-content, .industry-row, .evidence-layout-v2, .evidence-thumbs, .review-faq-layout-v2, .scope-grid-v2, .short-video-row, .review-top, .review-bottom, .video-actions { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
  .proof-strip span { min-height: 42px; padding: 8px 10px; font-size: 0.74rem; }
  .source-carousel { padding: 0 0 30px; }
  .carousel-track .image-led-card { flex-basis: 100%; }
  .carousel-arrow { top: auto; bottom: -2px; width: 40px; height: 40px; font-size: 1.7rem; }
  .carousel-arrow-prev { left: 0; }
  .carousel-arrow-next { right: 0; }
  .source-grid { grid-template-columns: 1fr; }
  .prefab-copy h2 { max-width: 100%; }
  .field.full { grid-column: auto; }
  .hero-actions .btn, .section-actions .btn { width: 100%; min-height: 44px; }
  .hero-panel .placeholder { min-height: 330px; }
  .hero-showcase-main, .single-hero-visual, .hero-main-visual, .case-main-image, .process-visual, .evidence-main-visual { min-height: 360px; }
  .project-case-visual, .prefab-visual { min-height: 0; max-height: 240px; }
  .flow-visual, .evidence-main, .review-visual { min-height: 0; max-height: 220px; }
  .vertical-video { width: 100%; max-height: 300px; }
  .hero-small-visual { min-height: 200px; }
  .visual-placeholder { min-height: 200px; padding: 16px; }
  .hero-thumb, .evidence-thumb { min-height: 150px; }
  .project-hero-media, .review-box, .scope-panel, .review-checklist, .review-form-card { padding: 18px; }
  .horizontal-flow span:not(:last-child):after { content: "↓"; right: auto; left: 50%; top: auto; bottom: -16px; transform: translateX(-50%); }
  .hero-collage { min-height: auto; }
  .collage-label { position: static; transform: none; text-align: center; border-radius: 16px; }
  .featured-main-image { min-height: 310px; }
  .mini-placeholder { min-height: 170px; }
  .coordination-flow span:not(:last-child):after { content: "↓"; right: auto; left: 50%; top: auto; bottom: -19px; transform: translateX(-50%); }
  .video-grid .video-card:nth-child(5) { grid-column: auto; }
  .card { padding: 20px; }
  .review-top { margin-bottom: 16px; }
  .submission-list div { padding: 11px 12px 11px 38px; }
  .submission-list div:before { left: 14px; top: 14px; }
  .scope-panel li { padding: 11px 12px; }
  .footer-grid { padding: 30px 14px; gap: 16px; }
  .footer-bottom { padding: 12px 14px; }
  .case-table, .case-table tbody, .case-table tr, .case-table th, .case-table td { display: block; width: 100%; }
  .case-table th { border-bottom: 0; }
}
@media (max-width: 430px) {
  .container { padding: 40px 14px; }
  body[class*="page-template-page-"] h2 { font-size: 1.58rem; }
  body[class*="page-template-page-"] h3 { font-size: 1rem; }
  .page-hero .container { padding-top: 36px; padding-bottom: 40px; }
  .page-hero h1 { font-size: 1.64rem; line-height: 1.08; }
  .page-hero p { font-size: 0.92rem; }
  .breadcrumb { font-size: 0.72rem; }
  .project-hero { min-height: 470px; }
  .hero .container { padding-top: 34px; padding-bottom: 38px; }
  .hero h1 { font-size: 1.64rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .source-section h2,
  .industry-section h2,
  .review-faq-section h2,
  .scope-section h2 { font-size: 1.58rem; }
  .active-project-section h2,
  .prefabrication-section h2,
  .flow-section h2,
  .evidence-section h2,
  .project-video-section h2 { font-size: 1.5rem; }
  .image-card-copy, .industry-card h3, .industry-card p, .industry-card .btn { margin-left: 18px; margin-right: 18px; }
  .image-card-copy { padding: 16px 0 16px; }
  .image-card-copy h3,
  .industry-card h3,
  .short-video-copy h3,
  .scope-panel h3 {
    font-size: 1rem;
    line-height: 1.16;
  }
  .image-card-copy p,
  .industry-card p,
  .scope-panel li,
  details p,
  .flow-steps p {
    font-size: 0.92rem;
    line-height: 1.5;
  }
  .industry-card h3 { padding-top: 16px; }
  .industry-card .btn { margin-bottom: 16px; }
  .project-case-visual, .prefab-visual { max-height: 220px; }
  .flow-visual, .evidence-main, .review-visual { max-height: 200px; }
  .vertical-video { max-height: 280px; }
  .short-video-copy { padding: 14px; }
  .review-checklist, .review-form-card, .scope-panel { padding: 16px; }
  details { padding: 14px 16px; }
}

/* Gondola shelving dimensions guide */
.gondola-dimensions-guide {
  background: linear-gradient(180deg, #fbfaf7 0%, #ffffff 28%, #f4f8fb 100%);
}

.gondola-dimensions-guide__hero .container {
  padding-bottom: 58px;
}

.gondola-dimensions-guide__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.gondola-dimensions-guide__toc {
  position: sticky;
  top: 108px;
}

.gondola-dimensions-guide__toc h3 {
  margin-bottom: 14px;
}

.gondola-dimensions-guide__toc a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
}

.gondola-dimensions-guide__toc a:last-child {
  border-bottom: 0;
}

.gondola-dimensions-guide__section .container {
  padding-top: 42px;
  padding-bottom: 42px;
}

.gondola-dimensions-guide__section--soft {
  background: rgba(223, 238, 248, 0.32);
}

.gondola-dimensions-guide__two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 28px;
  align-items: start;
}

.gondola-dimensions-guide__table-wrap {
  overflow-x: auto;
  margin-top: 20px;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(11, 31, 54, 0.06);
}

.gondola-dimensions-guide__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid var(--line);
}

.gondola-dimensions-guide__table th,
.gondola-dimensions-guide__table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.gondola-dimensions-guide__table th {
  background: #eef4f7;
  color: var(--navy);
  font-size: 0.92rem;
}

.gondola-dimensions-guide__table tr:last-child td {
  border-bottom: 0;
}

.gondola-dimensions-guide__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gondola-dimensions-guide__mini-card,
.gondola-dimensions-guide__info-card {
  height: 100%;
}

.gondola-dimensions-guide__mini-card h3,
.gondola-dimensions-guide__info-card h3 {
  margin-bottom: 12px;
}

.gondola-dimensions-guide__bullets {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-left: 1.1rem;
}

.gondola-dimensions-guide__note {
  margin-top: 14px;
  font-size: 0.94rem;
  color: var(--muted);
}

.gondola-dimensions-guide__cta .container {
  padding-top: 42px;
  padding-bottom: 72px;
}

.gondola-dimensions-guide__cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-radius: 28px;
}

@media (max-width: 980px) {
  .gondola-dimensions-guide__intro,
  .gondola-dimensions-guide__two-col,
  .gondola-dimensions-guide__cta-card,
  .gondola-dimensions-guide__cards {
    grid-template-columns: 1fr;
  }

  .gondola-dimensions-guide__toc {
    position: static;
  }
}

@media (max-width: 640px) {
  .gondola-dimensions-guide__section .container,
  .gondola-dimensions-guide__cta .container {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .gondola-dimensions-guide__table {
    min-width: 640px;
  }

  .gondola-dimensions-guide__table th,
  .gondola-dimensions-guide__table td {
    padding: 13px 14px;
    font-size: 0.92rem;
  }
}

/* Reusable SEO resource guide */
.resource-guide {
  --resource-guide-width: 900px;
  background: linear-gradient(180deg, #fbfaf7 0%, #ffffff 34%, #f4f8fb 100%);
}

.resource-guide__container {
  width: min(100% - 44px, var(--max));
  margin-inline: auto;
}

.resource-guide__hero {
  padding: 72px 0 68px;
  background: linear-gradient(135deg, var(--navy), #123a61);
  color: var(--white);
}

.resource-guide__hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.resource-guide__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 700;
}

.resource-guide__breadcrumb a {
  color: rgba(255, 255, 255, 0.82);
}

.resource-guide__intro {
  max-width: 780px;
  margin-top: 20px;
}

.resource-guide__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.resource-guide__layout {
  padding-top: 64px;
  padding-bottom: 64px;
}

.resource-guide__content {
  max-width: var(--resource-guide-width);
  margin-inline: auto;
}

.resource-guide__content > :first-child {
  margin-top: 0;
}

.resource-guide__content h2,
.resource-guide__content h3 {
  scroll-margin-top: 110px;
  overflow-wrap: anywhere;
}

.resource-guide__content h2 {
  margin-top: 56px;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.12;
}

.resource-guide__content h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.18;
}

.resource-guide__content p,
.resource-guide__content li {
  font-size: 1rem;
  line-height: 1.75;
}

.resource-guide__content ul,
.resource-guide__content ol {
  display: grid;
  gap: 7px;
  margin: 18px 0 24px;
}

.resource-guide__content blockquote {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: #f3f7fa;
}

.resource-guide__content blockquote p:last-child {
  margin-bottom: 0;
}

.resource-guide__content figure,
.resource-guide__content .wp-block-table {
  max-width: 100%;
  margin: 26px 0;
  overflow-x: auto;
}

.resource-guide__content table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
}

.resource-guide__content th,
.resource-guide__content td {
  padding: 14px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.resource-guide__content th {
  background: #eef4f7;
  color: var(--navy);
}

.resource-guide__content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.resource-guide__cta {
  padding: 0 0 72px;
}

.resource-guide__cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.resource-guide__cta-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.1;
}

.resource-guide__cta-panel p:last-child {
  margin-bottom: 0;
}

.resource-guide__eyebrow {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.resource-guide__cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

@media (max-width: 760px) {
  .resource-guide__container {
    width: min(100% - 28px, var(--max));
  }

  .resource-guide__hero {
    padding: 42px 0 44px;
  }

  .resource-guide__hero h1 {
    font-size: clamp(1.72rem, 8vw, 2.2rem);
    line-height: 1.08;
  }

  .resource-guide__intro p {
    font-size: 0.96rem;
  }

  .resource-guide__layout {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .resource-guide__content h2 {
    margin-top: 42px;
    font-size: 1.7rem;
  }

  .resource-guide__content h3 {
    margin-top: 28px;
    font-size: 1.2rem;
  }

  .resource-guide__content table {
    min-width: 620px;
  }

  .resource-guide__cta {
    padding-bottom: 44px;
  }

  .resource-guide__cta-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .resource-guide__cta-link {
    width: 100%;
  }
}
