
:root {
  --bg: #07111f;
  --bg-soft: #0d1a2f;
  --panel: rgba(10, 22, 40, 0.72);
  --panel-solid: #0d1830;
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.18);
  --text: #f3f6fb;
  --muted: #a9b5c9;
  --accent: #395eb6;
  --accent-2: #86a8ff;
  --surface: #f5f7fb;
  --surface-text: #101828;
  --surface-muted: #4b5565;
  --surface-line: rgba(16,24,40,.08);
  --shadow: 0 24px 60px rgba(0,0,0,.25);
  --radius: 24px;
  --maxw: 1360px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(57,94,182,.22), transparent 28%),
    radial-gradient(circle at 80% 18%, rgba(134,168,255,.08), transparent 20%),
    linear-gradient(180deg, #07111f 0%, #09172a 50%, #06101d 100%);
  overflow-x: hidden;
}
body.page-light {
  color: var(--surface-text);
  background:
    radial-gradient(circle at top left, rgba(57,94,182,.08), transparent 20%),
    linear-gradient(180deg, #eef3fb 0%, #f9fbff 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { line-height: 1.65; }

.page-transition {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #07111f, #13274f);
  z-index: 120;
  transform: translateY(100%);
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.page-transition.is-active { transform: translateY(0%); }
.page-transition.is-loaded { transform: translateY(-100%); }

.grid-bg,
.grid-bg-light {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
.grid-bg::before,
.grid-bg-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(255,255,255,.7), transparent 85%);
}
.grid-bg-light::before {
  background-image:
    linear-gradient(rgba(16,24,40,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,24,40,.05) 1px, transparent 1px);
}

.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), var(--maxw));
  z-index: 80;
}
.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7,17,31,.66);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0,0,0,.16);
}
body.page-light .header-shell {
  background: rgba(255,255,255,.82);
  border-color: rgba(16,24,40,.08);
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
}
.brand img {
  display: block;
  width: auto;
  height: clamp(60px, 6.8vw, 86px);
  max-width: min(42vw, 190px);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  padding: 10px 13px;
  color: var(--muted);
  border-radius: 999px;
  font-size: .92rem;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
body.page-light .site-nav a { color: #526075; }
.site-nav a:hover,
.site-nav a.is-current {
  color: var(--text);
  background: rgba(255,255,255,.08);
}
body.page-light .site-nav a:hover,
body.page-light .site-nav a.is-current {
  color: var(--surface-text);
  background: rgba(16,24,40,.06);
}
.nav-cta {
  color: var(--text) !important;
  background: linear-gradient(135deg, var(--accent), #1e366a) !important;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: inherit;
  padding: 0;
}
.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
  transition: transform .25s ease, opacity .25s ease;
}
.mobile-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent-2);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}
body.page-light .eyebrow { color: var(--accent); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--text);
  background: linear-gradient(135deg, #3e66c8, #223e7a);
  box-shadow: 0 12px 32px rgba(57,94,182,.3);
}
.btn-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.04);
}
body.page-light .btn-secondary {
  border-color: rgba(16,24,40,.12);
  background: rgba(255,255,255,.8);
}

.section-shell {
  width: min(calc(100% - 48px), var(--maxw));
  margin: 0 auto;
}

.horizontal-page {
  min-height: 100vh;
  padding: 152px 0 28px;
}
.horizontal-intro {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  width: min(calc(100% - 48px), var(--maxw));
  margin: 0 auto 18px;
  padding-inline: 8px;
  position: relative;
  z-index: 6;
}

.rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  padding: 4px 24px 14px;
}
.rail::-webkit-scrollbar { height: 10px; }
.rail::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.14);
  border-radius: 999px;
}
body.page-light .rail::-webkit-scrollbar-thumb { background: rgba(16,24,40,.18); }
.panel {
  flex: 0 0 calc(100vw - 96px);
  min-height: calc(100vh - 180px);
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(11,24,48,.94), rgba(8,19,35,.92));
  box-shadow: var(--shadow);
}
body.page-light .panel {
  border-color: rgba(16,24,40,.08);
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(245,248,255,.95));
}
.panel-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  padding: clamp(28px, 4vw, 56px);
}
.panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}
.panel-copy h1,
.panel-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.95rem, 3vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.panel-copy h2 {
  max-width: 15ch;
}
.cover-hero .panel-copy h1 {
  max-width: 13ch;
  font-size: clamp(1.8rem, 2.9vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.cover-hero .panel-copy .lead {
  max-width: 640px;
}
body.page-light .panel-copy h1,
body.page-light .panel-copy h2,
body.page-light .panel-copy h3,
body.page-light .panel-copy strong,
body.page-light .panel-copy li,
body.page-light .title-dark { color: var(--surface-text); }
.panel-copy .lead {
  max-width: 760px;
  font-size: clamp(1.02rem, 1.55vw, 1.18rem);
  color: var(--muted);
}
body.page-light .panel-copy .lead,
body.page-light .meta-strip,
body.page-light .panel-list,
body.page-light .panel-note,
body.page-light .service-compact p,
body.page-light .service-block p,
body.page-light .contact-block p,
body.page-light .contact-block a,
body.page-light .section-intro p,
body.page-light .stack-card p,
body.page-light .values-list p,
body.page-light .foot-note,
body.page-light .text-muted {
  color: var(--surface-muted);
}
.kicker-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
}
.kicker-line span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
}
body.page-light .kicker-line span {
  border-color: rgba(16,24,40,.1);
  background: rgba(16,24,40,.03);
}
.side-card,
.stack-card,
.info-box,
.contact-card,
.service-compact,
.service-block,
.process-step,
.value-chip,
.contact-block {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
}
body.page-light .side-card,
body.page-light .stack-card,
body.page-light .info-box,
body.page-light .contact-card,
body.page-light .service-compact,
body.page-light .service-block,
body.page-light .process-step,
body.page-light .value-chip,
body.page-light .contact-block {
  border-color: rgba(16,24,40,.08);
  background: rgba(255,255,255,.86);
}
.side-card {
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.logo-stage {
  min-height: 320px;
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at top, rgba(57,94,182,.16), transparent 36%), rgba(255,255,255,.03);
}
body.page-light .logo-stage {
  border-color: rgba(16,24,40,.06);
  background: radial-gradient(circle at top, rgba(57,94,182,.08), transparent 38%), #f7f9fc;
}
.logo-stage img.logo-main {
  width: min(88%, 440px);
  position: relative;
  z-index: 2;
}
.logo-stage img.logo-mark {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 280px;
  opacity: .95;
}
.meta-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.meta-strip strong {
  display: block;
  color: var(--text);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.meta-strip span {
  display: block;
  font-size: .95rem;
}
.panel-note {
  max-width: 700px;
  font-size: .95rem;
}
.panel-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.panel-list li {
  padding-left: 18px;
  position: relative;
}
.panel-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  position: absolute;
  top: .7em;
  left: 0;
}
body.page-light .panel-list li::before { background: var(--accent); }

.panel-quote {
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  line-height: 1.16;
  margin: 0;
  max-width: 820px;
}
.framed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.stack-card {
  padding: 20px;
  min-height: 150px;
}
.stack-card strong,
.info-box strong,
.contact-card strong,
.service-block h3,
.service-compact h3,
.contact-block h3,
.process-step h3,
.value-chip strong { display: block; margin-bottom: 10px; }
.index-map {
  display: grid;
  gap: 14px;
}
.info-box { padding: 20px; }
.info-box span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-bottom: 14px;
  background: rgba(57,94,182,.14);
  color: var(--accent-2);
  font-weight: 800;
}
body.page-light .info-box span {
  background: rgba(57,94,182,.1);
  color: var(--accent);
}
.service-compact-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.service-compact { padding: 20px; }
.service-compact p,
.service-block p,
.contact-block p,
.stack-card p,
.values-list p,
.contact-card p { margin: 0; }

.page-hero {
  padding: 150px 0 42px;
}
.page-hero .hero-grid {
  width: min(calc(100% - 48px), var(--maxw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}
.hero-card-large {
  padding: clamp(28px, 4vw, 52px);
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(11,24,48,.93), rgba(8,19,35,.9));
  box-shadow: var(--shadow);
}
body.page-light .hero-card-large {
  background: rgba(255,255,255,.92);
  border-color: rgba(16,24,40,.08);
}
.hero-card-large h1 {
  margin: 0 0 16px;
  font-size: clamp(1.95rem, 3.2vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.hero-side {
  display: grid;
  gap: 18px;
}
.contact-card { padding: 22px; }
.contact-card a { color: inherit; }

.section {
  padding: 24px 0 72px;
}
.section-grid,
.split-grid,
.services-grid,
.contact-grid,
.values-layout {
  width: min(calc(100% - 48px), var(--maxw));
  margin: 0 auto;
}
.section-grid {
  display: grid;
  gap: 24px;
}
.section-intro {
  max-width: 820px;
}
.section-intro h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -.028em;
}
.split-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: start;
}
.surface-card {
  padding: clamp(24px, 3.4vw, 40px);
  border-radius: 30px;
  border: 1px solid rgba(16,24,40,.08);
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 40px rgba(16,24,40,.06);
}
.surface-card h3 { margin: 0 0 14px; font-size: 1.6rem; }
.surface-card p { color: var(--surface-muted); }
.values-list {
  display: grid;
  gap: 12px;
}
.value-chip {
  padding: 18px 20px;
  background: rgba(245,247,251,.95);
  border-color: rgba(16,24,40,.08);
}
.value-chip small {
  display: block;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-blocks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.service-block {
  padding: 24px;
  background: rgba(255,255,255,.92);
  border-color: rgba(16,24,40,.08);
}
.service-block span.badge,
.process-step span.badge {
  display: inline-flex;
  padding: 6px 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(57,94,182,.1);
  color: var(--accent);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.process-step {
  padding: 22px;
  background: rgba(255,255,255,.92);
  border-color: rgba(16,24,40,.08);
}
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
}
.contact-block {
  padding: 26px;
  background: rgba(255,255,255,.92);
  border-color: rgba(16,24,40,.08);
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.contact-list li {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(16,24,40,.08);
}
.contact-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-list strong { display: block; margin-bottom: 6px; }
.note-box {
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: rgba(57,94,182,.06);
  border-radius: 0 18px 18px 0;
}
.site-footer {
  width: min(calc(100% - 48px), var(--maxw));
  margin: 0 auto;
  padding: 16px 0 34px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}
body.page-light .site-footer {
  color: #64748b;
  border-top-color: rgba(16,24,40,.08);
}
.foot-note { font-size: .95rem; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1100px) {
  .panel-inner,
  .page-hero .hero-grid,
  .split-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .panel { flex-basis: calc(100vw - 48px); }
  .meta-strip,
  .framed-grid,
  .service-compact-wrap,
  .service-blocks,
  .process-rail { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 860px) {
  .site-header { top: 12px; width: calc(100% - 20px); }
  .header-shell { padding: 10px 12px; border-radius: 28px; align-items: center; }
  .mobile-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 24px;
    background: rgba(7,17,31,.94);
    border: 1px solid var(--line);
  }
  body.page-light .site-nav {
    background: rgba(255,255,255,.97);
    border-color: rgba(16,24,40,.08);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { text-align: center; }
  .brand img { height: 58px; max-width: min(56vw, 150px); }
  .horizontal-page { padding-top: 122px; }
  .horizontal-intro { width: calc(100% - 20px); margin-bottom: 12px; padding-inline: 4px; }
  .rail { padding: 4px 10px 12px; gap: 12px; }
  .panel {
    flex-basis: calc(100vw - 20px);
    min-height: auto;
  }
  .meta-strip,
  .framed-grid,
  .service-compact-wrap,
  .service-blocks,
  .process-rail { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; align-items: flex-start; width: calc(100% - 20px); }
}

@media (max-width: 700px) {
  .panel-inner { padding: 22px; }
  .panel-copy h1,
  .panel-copy h2,
  .hero-card-large h1,
  .section-intro h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); line-height: 1.08; }
  .panel-copy h2 { max-width: 100%; }
  .cover-hero .panel-copy h1 { font-size: clamp(1.6rem, 6vw, 2.1rem); max-width: 14ch; line-height: 1.1; }
  .brand img { height: 52px; max-width: min(60vw, 138px); }
  .page-hero { padding-top: 118px; }
  .page-hero .hero-grid,
  .section-grid,
  .split-grid,
  .services-grid,
  .contact-grid,
  .values-layout,
  .site-footer { width: calc(100% - 20px); }
  .surface-card,
  .service-block,
  .contact-block,
  .hero-card-large,
  .contact-card { padding: 22px; border-radius: 24px; }
  .logo-stage { min-height: 230px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .page-transition,
  .btn,
  .site-nav a,
  .mobile-toggle span { transition: none !important; }
}



.panel-inner,
.page-hero .hero-grid,
.section-grid,
.split-grid,
.contact-grid,
.values-layout,
.hero-card-large,
.hero-side,
.side-card,
.surface-card,
.service-block,
.contact-block {
  position: relative;
  z-index: 1;
}

.panel-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--panel-image);
  background-size: cover;
  background-position: center;
  opacity: .24;
  transform: scale(1.03);
}
.panel-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(6,12,24,.92) 0%, rgba(6,12,24,.72) 45%, rgba(6,12,24,.84) 100%),
    linear-gradient(180deg, rgba(57,94,182,.12), transparent 35%);
}
.panel-cover.cover-hero { --panel-image: url("../img/site-hero.webp"); }
.panel-cover.cover-blueprint { --panel-image: url("../img/site-blueprint.webp"); }
.panel-cover.cover-plans { --panel-image: url("../img/site-plans.webp"); }
.panel-cover.cover-cranes { --panel-image: url("../img/site-cranes.webp"); }

.photo-stage,
.hero-photo,
.image-tile {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  min-height: 260px;
}
body.page-light .photo-stage,
body.page-light .hero-photo,
body.page-light .image-tile {
  border-color: rgba(16,24,40,.08);
  background: rgba(255,255,255,.9);
}
.photo-stage::after,
.hero-photo::after,
.image-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,17,31,.04) 0%, rgba(7,17,31,.36) 100%);
  pointer-events: none;
}
.photo-stage img,
.hero-photo img,
.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-stage.tall { min-height: 340px; }
.hero-photo { min-height: 380px; }
.image-strip {
  width: min(calc(100% - 48px), var(--maxw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.image-tile {
  min-height: 250px;
  box-shadow: 0 18px 38px rgba(16,24,40,.08);
}
.image-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
}
.image-caption strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.image-caption span {
  display: block;
  font-size: .92rem;
  color: rgba(255,255,255,.84);
}
.photo-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(7,17,31,.52);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.photo-stack {
  display: grid;
  gap: 14px;
}
.photo-stack .photo-stage { min-height: 180px; }

.hero-side-combo {
  display: grid;
  gap: 18px;
}
.hero-side-cards {
  display: grid;
  gap: 18px;
}
.visual-split {
  width: min(calc(100% - 48px), var(--maxw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}
.visual-copy {
  padding: clamp(24px, 3.4vw, 40px);
  border-radius: 30px;
  border: 1px solid rgba(16,24,40,.08);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 40px rgba(16,24,40,.06);
}
.visual-copy h3 {
  margin: 0 0 14px;
  font-size: 1.65rem;
  color: var(--surface-text);
}
.visual-copy p { color: var(--surface-muted); margin: 0 0 14px; }
.visual-copy ul {
  margin: 0;
  padding-left: 18px;
  color: var(--surface-muted);
  display: grid;
  gap: 10px;
}
.hero-card-large.has-image {
  overflow: hidden;
}
.hero-card-large.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: .12;
}
body.page-light .hero-card-large.has-image::before {
  opacity: .16;
}
.showcase-grid {
  width: min(calc(100% - 48px), var(--maxw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.showcase-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(16,24,40,.08);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 40px rgba(16,24,40,.06);
}
.showcase-card .photo-stage {
  border: 0;
  border-radius: 0;
  min-height: 220px;
}
.showcase-copy {
  padding: 22px;
}
.showcase-copy h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: var(--surface-text);
}
.showcase-copy p { margin: 0; color: var(--surface-muted); }

@media (max-width: 1100px) {
  .image-strip,
  .visual-split,
  .showcase-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .image-strip,
  .visual-split,
  .showcase-grid { width: calc(100% - 20px); }
  .photo-stage.tall,
  .hero-photo { min-height: 260px; }
}
