:root {
  --ink: #141414;
  --muted: #5f5c56;
  --gold: #b69201;
  --gold-dark: #8f7300;
  --paper: #f3efe6;
  --white: #fff;
  --line: #e6e1d4;
  --danger: #9b2c2c;
  --ok: #1f6b3a;
  --shadow: 0 18px 44px rgba(20, 20, 20, 0.08);
  --shadow-hover: 0 22px 50px rgba(20, 20, 20, 0.14);
  --radius: 28px;
  --radius-sm: 18px;
  --radius-pill: 999px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Outfit, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }
h1, h2, h3 {
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; color: var(--muted); }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: transparent; border: 0; padding: .7rem 0 .35rem;
  transition: padding .28s ease, background .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.header-bar {
  display: flex; align-items: center; gap: .65rem; min-height: 76px;
  background: #222;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-pill);
  padding: 0 .55rem 0 1.05rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  transition: background .28s ease, border-radius .28s ease, box-shadow .28s ease, min-height .28s ease;
}
.logo { display: flex; align-items: center; flex-shrink: 0; line-height: 0; }
.logo img { height: 64px; width: auto; }
.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: .2rem; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  color: #ece8df; text-decoration: none; font-weight: 500; font-size: .86rem;
  display: inline-flex; padding: .48rem .72rem; border-radius: var(--radius-pill);
}
.site-nav a:hover { background: rgba(255,255,255,.1); color: #fff; }
.site-nav a[aria-current="page"] { background: var(--gold); color: #111; }
.header-phone {
  background: var(--gold); color: #111; text-decoration: none; border-radius: var(--radius-pill);
  padding: .62rem 1rem; font-weight: 700; white-space: nowrap; font-size: .9rem;
}
.header-phone:hover { background: #d4ad1a; color: #111; }
.nav-toggle {
  display: none; margin-left: auto; background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius-pill);
  padding: .5rem .9rem; font-weight: 600; cursor: pointer; font-family: inherit;
}

.site-header.is-scrolled {
  padding: .45rem 0 .35rem;
  background: transparent;
  box-shadow: none;
  border-bottom: 0;
}
.site-header.is-scrolled .header-bar {
  background: #222;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 40px rgba(0,0,0,.38);
  backdrop-filter: blur(18px);
  min-height: 70px;
  padding: 0 .55rem 0 1.05rem;
}
.site-header.is-scrolled .logo img { height: 56px; }
body.is-desking .logo img { height: 64px; }
body.is-desking .site-header.is-scrolled .logo img { height: 56px; }

.hero-wrap { padding: 0 1rem 1rem; }
.hero {
  position: relative; min-height: 74vh; display: grid; align-items: end;
  color: #fff; background: #111;
  width: min(var(--max), 100%); margin: 0 auto;
  border-radius: 36px; overflow: hidden; box-shadow: var(--shadow);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.76));
}
.hero__media {
  position: absolute; inset: -18% 0; z-index: 0;
  will-change: transform;
}
.hero__bg {
  position: absolute; inset: 0;
  background: #111 center/cover no-repeat;
}
.hero__inner { position: relative; z-index: 2; padding: 5.2rem 2rem 3.2rem; }
.hero p, .hero h1 { color: #fff; max-width: 820px; }
.hero p { color: rgba(255,255,255,.9); }
.kicker {
  display: inline-flex; letter-spacing: .14em; text-transform: uppercase;
  font-size: .74rem; font-weight: 600; color: #111; background: #f3d56a;
  border-radius: var(--radius-pill); padding: .35rem .8rem; margin-bottom: .9rem;
}
.hero-page { min-height: 46vh; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: var(--radius-pill); padding: .9rem 1.3rem; font-weight: 600;
  text-decoration: none; cursor: pointer; font-family: inherit; transition: transform .2s, background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--gold); color: #111; }
.btn-primary:hover { background: #d4ad1a; color: #111; }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.45); }
.btn-ghost:hover { background: #fff; color: #111; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5d; color: #fff; }

.section { padding: 4.4rem 0; }
.section--white { background: #fff; }
.section--paper { background: transparent; }
.section-head { max-width: 720px; margin-bottom: 1.8rem; }
.lead { font-size: 1.08rem; max-width: 70ch; }
.crumbs { font-size: .9rem; margin-bottom: 1rem; }
.crumbs a { color: rgba(255,255,255,.8); text-decoration: none; }
.split { display: grid; grid-template-columns: 1.35fr .85fr; gap: 2rem; align-items: start; }
.card-grid, .gallery, .stat-grid, .faq, .step-grid, .chip-row { display: grid; gap: 1.1rem; }
.card-grid { grid-template-columns: repeat(2, 1fr); }
.stat-grid { grid-template-columns: repeat(4, 1fr); }
.step-grid { grid-template-columns: repeat(4, 1fr); }
.gallery { grid-template-columns: repeat(3, 1fr); }
.card, .panel, .stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.card { box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card__media { display: block; overflow: hidden; height: 240px; }
.card__media img, .gallery__item img {
  width: 100%; height: 240px; object-fit: cover; transition: transform .45s ease;
}
.card:hover .card__media img, .gallery__item:hover img { transform: scale(1.05); }
.gallery__item {
  display: block; border-radius: 24px; overflow: hidden; background: #ddd;
  box-shadow: 0 10px 24px rgba(20,20,20,.06);
}
.card__body, .panel, .stat { padding: 1.35rem 1.4rem 1.55rem; }
.card h3 a, .text-link { text-decoration: none; color: var(--ink); }
.text-link { font-weight: 600; color: var(--gold-dark); }
.list { padding-left: 1.15rem; color: var(--muted); }
.list li { margin-bottom: .45rem; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 1.05rem 1.2rem;
}
.faq summary { cursor: pointer; font-weight: 600; }
.stat strong, .step-no {
  display: inline-flex; align-items: center; border-radius: var(--radius-pill);
}
.step-no {
  width: 2rem; height: 2rem; justify-content: center; background: #111; color: #fff;
  font-size: .85rem; margin-bottom: .7rem;
}
.chip-row { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: .7rem 1rem; text-align: center; font-weight: 600; color: var(--ink);
  box-shadow: 0 8px 20px rgba(20,20,20,.04);
}
.seo-tags-wrap { padding-top: 1.5rem; }
.seo-tags {
  display: flex; flex-wrap: wrap; gap: .55rem;
}
.seo-tags a {
  display: inline-flex; text-decoration: none; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: .45rem .9rem; font-weight: 600; font-size: .9rem;
}
.seo-tags a:hover { background: #111; color: #fff; }

.media-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
.media-split--rev { direction: rtl; }
.media-split--rev > * { direction: ltr; }
.media-split img, .media-video, .media-split .parallax-frame {
  width: 100%; height: 420px; border-radius: 28px; box-shadow: var(--shadow); object-fit: cover;
}
.media-video { max-height: 420px; background: #111; }
.figure-card { margin: 0; }
.figure-card figcaption { color: var(--muted); font-size: .92rem; margin-top: .7rem; }
.figure-card--badges {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.6rem 1.4rem 1.2rem;
  box-shadow: var(--shadow);
}
.media-split .figure-card--badges img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.option-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.contact-cards article {
  background: #fff; border-radius: 24px; padding: 1.35rem 1.4rem 1.5rem;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.contact-cards article::before {
  content: ""; display: block; width: 42px; height: 4px;
  background: var(--gold); border-radius: 99px; margin-bottom: .95rem;
}
.contact-cards article:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.contact-cards h3 { font-size: 1.05rem; margin: 0 0 .35rem; }
.contact-cards a { font-weight: 700; font-size: 1.05rem; }
.whatsapp-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 12;
  background: #25d366; color: #fff; text-decoration: none; font-weight: 700;
  border-radius: 999px; padding: .9rem 1.15rem; box-shadow: var(--shadow-hover);
}
.whatsapp-float:hover { color: #fff; background: #1ebe5d; }

@media (max-width: 900px) {
  .media-split, .media-split--rev, .option-grid, .contact-cards { grid-template-columns: 1fr; }
}

.contact-form { display: grid; gap: .85rem; }
.contact-form label { display: grid; gap: .35rem; font-weight: 600; font-size: .92rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border: 1px solid #d8d2c4; border-radius: 16px; padding: .8rem .9rem;
  font: inherit; background: #fff;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid #b69201; border-color: #b69201;
}
.form-note { font-size: .85rem; }
.full { grid-column: 1 / -1; }
.contact-form .btn:disabled {
  opacity: .65;
  cursor: wait;
  pointer-events: none;
}
.submit-modal {
  position: fixed; inset: 0; z-index: 40;
  display: grid; place-items: center;
  background: rgba(10, 10, 10, .72);
  padding: 1.5rem;
}
.submit-modal[hidden] { display: none; }
.submit-modal__card {
  background: #171717; color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  padding: 2rem 2.2rem;
  min-width: min(320px, 92vw);
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.submit-modal__card p {
  margin: 1rem 0 0;
  font-weight: 600;
  color: #fff;
}
.submit-modal__spinner {
  width: 42px; height: 42px; margin: 0 auto;
  border: 3px solid rgba(255,255,255,.22);
  border-top-color: #b69201;
  border-radius: 50%;
  animation: submit-spin .8s linear infinite;
}
body.is-submitting { overflow: hidden; }
@keyframes submit-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .submit-modal__spinner { animation: none; border-top-color: #b69201; }
}
.hp-wrap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.notice {
  width: min(var(--max), calc(100% - 2rem)); margin: .4rem auto .6rem;
  padding: .95rem 1.1rem; text-align: center; font-weight: 600; border-radius: 18px;
}
.notice--ok { background: #e8f6ec; color: var(--ok); }
.notice--err { background: #fdecec; color: var(--danger); }

.map { width: 100%; min-height: 380px; border: 0; border-radius: 28px; box-shadow: var(--shadow); }

.site-footer {
  background: #111; color: #d7d3c8; padding: 2rem 1rem 1.4rem; margin: 0 1rem 1rem;
  border-radius: 32px;
}
.site-footer h2 { color: #fff; font-size: 1.05rem; font-family: Outfit, sans-serif; }
.site-footer a { color: #f0e6b8; text-decoration: none; }
.site-footer p, .site-footer li { color: #c9c4b8; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand { color: #fff; font-weight: 700; font-size: 1.1rem; }
.footer-base { border-top: 1px solid #2a2a2a; margin-top: 2rem; padding-top: 1rem; display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; align-items: center; justify-content: space-between; }
.footer-legal { display: flex; flex-wrap: wrap; gap: .35rem 1rem; margin: 0; padding: 0; list-style: none; }
.footer-legal a { font-size: .9rem; }

.policy-hero {
  width: min(var(--max), calc(100% - 2rem)); margin: 0 auto 1rem;
  background: #111; color: #fff; border-radius: 32px; padding: 3.2rem 2rem 2.2rem;
  box-shadow: var(--shadow);
}
.policy-hero h1, .policy-hero p { color: #fff; max-width: 720px; }
.policy-hero .crumbs a { color: rgba(255,255,255,.75); }
.policy-meta { font-size: .88rem; color: rgba(255,255,255,.7) !important; }
.policy-layout { display: grid; grid-template-columns: 220px 1fr; gap: 2rem; align-items: start; }
.policy-nav { position: sticky; top: 88px; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 1rem 1.1rem; box-shadow: var(--shadow); }
.policy-nav h2 { font-size: 1rem; font-family: Outfit, sans-serif; }
.policy-nav ul { list-style: none; margin: 0; padding: 0; }
.policy-nav a { display: block; padding: .4rem 0; text-decoration: none; font-weight: 600; color: var(--ink); }
.policy-nav a[aria-current="page"] { color: var(--gold-dark); }
.policy-copy { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 1.8rem 1.7rem 2rem; box-shadow: var(--shadow); }
.policy-copy h2 { font-size: 1.35rem; margin-top: 1.6rem; }
.policy-copy h2:first-child { margin-top: 0; }
.policy-copy h3 { font-size: 1.05rem; margin-top: 1.1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }

/* Per-page layouts */
.hero--cinema { min-height: 82vh; }
.hero--cinema::after { background: linear-gradient(180deg, rgba(8,8,8,.22) 0%, rgba(8,8,8,.78) 100%); }
.hero--church::after { background: linear-gradient(90deg, rgba(12,12,12,.72) 0%, rgba(12,12,12,.18) 68%); }
.hero--church .hero__inner { max-width: 680px; }
.hero--auditorium { min-height: 68vh; }
.hero--contact { min-height: 56vh; }
.hero--contact::after { background: linear-gradient(90deg, rgba(10,10,10,.78) 0%, rgba(10,10,10,.28) 62%, rgba(10,10,10,.55) 100%); }
.hero--contact .hero__inner { max-width: 720px; }
.hero--desking { min-height: 58vh; }
.hero--desking::after { background: linear-gradient(180deg, rgba(10,10,10,.18) 0%, rgba(10,10,10,.78) 100%); }

.page-church .crumbs, .page-cinema .crumbs, .page-auditorium .crumbs, .page-contact .crumbs { margin-bottom: .4rem; }

.photo-pair { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1rem; }
.photo-pair > * { width: 100%; height: 420px; }
.photo-pair img { width: 100%; height: 420px; object-fit: cover; border-radius: 28px; box-shadow: var(--shadow); }
.photo-pair > :last-child { margin-top: 2.5rem; }
.narrow-copy { max-width: 720px; margin: 0 auto; text-align: center; }
.narrow-copy h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.lede { font-size: 1.15rem; }

.quote-band {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: 32px;
  padding: 1.8rem; box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
}
.quote-band--stack { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; text-align: center; }
.quote-band--stack .contact-form { text-align: left; }
.quote-band--form .contact-form { grid-template-columns: 1fr 1fr; }
.quote-band--dark { background: #171717; color: #ece8df; border: 0; border-top-color: var(--gold); }
.quote-band--dark h2, .quote-band--dark p { color: #fff; }
.quote-band--dark label { color: #ece8df; }
.quote-band--dark input, .quote-band--dark textarea, .quote-band--dark select {
  background: #111; color: #fff; border-color: #3a3a3a;
}

.quote-stage { background: #161616; scroll-margin-top: 96px; }
.quote-stage__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.4rem; align-items: start;
}
.quote-stage__copy h2 { color: #fff; }
.quote-stage__copy > p:not(.kicker) { color: rgba(255,255,255,.82); max-width: 54ch; }
.quote-stage__photos {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: .85rem;
  margin: 1.5rem 0 1.6rem;
}
.quote-stage__photos img,
.quote-stage__photos .parallax-frame {
  width: 100%; height: 230px; object-fit: cover; border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.quote-stage__photos > :last-child { margin-top: 2.2rem; }
.quote-checks {
  list-style: none; margin: 0 0 1.4rem; padding: 0;
  display: grid; gap: .65rem;
}
.quote-checks li {
  display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: .7rem .95rem; color: #ece8df; margin: 0;
}
.quote-checks span {
  width: 2rem; height: 2rem; display: grid; place-items: center;
  background: var(--gold); color: #111; border-radius: 999px;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
}
.quote-stage__form {
  background: #f7f3ea; color: var(--ink);
  border-radius: 28px; padding: 1.6rem 1.5rem 1.7rem;
  box-shadow: 0 24px 56px rgba(0,0,0,.28);
  border-top: 5px solid var(--gold);
}
.quote-stage__form h2 { color: var(--ink); font-size: clamp(1.45rem, 2.4vw, 1.9rem); }
.quote-stage__form > p { color: var(--muted); }
.quote-stage__form .kicker { margin-bottom: .7rem; }
.panel:has(.contact-form) {
  background: #f7f3ea; border: 0; border-top: 5px solid var(--gold);
  box-shadow: 0 22px 50px rgba(20,20,20,.12);
}
.map-block {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 2rem; align-items: center;
}

.cinema-bleed { width: min(1400px, calc(100% - 2rem)); margin: 1rem auto; }
.cinema-bleed img, .cinema-bleed .parallax-frame { width: 100%; height: min(70vh, 620px); object-fit: cover; border-radius: 36px; box-shadow: var(--shadow); }
.two-up { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.two-up img, .two-up video, .two-up .parallax-frame { width: 100%; height: 340px; object-fit: cover; border-radius: 28px; }

.spec-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.spec-trio article { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 1.2rem; box-shadow: var(--shadow); }
.spec-trio h3 { font-size: 1.15rem; }

.gallery--wide { grid-template-columns: 2fr 1fr 1fr; }
.gallery--wide .gallery__item:first-child { grid-row: span 2; height: 100%; }
.gallery--wide .gallery__item:first-child .parallax-frame { height: 100%; min-height: 420px; }

.video-wrap video { width: 100%; height: 340px; object-fit: cover; border-radius: 28px; display: block; }

.parallax-frame {
  position: relative;
  overflow: hidden;
  display: block;
}
.parallax-shift {
  position: absolute;
  inset: -16% 0;
  will-change: transform;
}
.parallax-shift img {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: cover;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
}
.gallery__item .parallax-frame,
.card__media .parallax-frame {
  height: 240px;
  border-radius: 0;
  box-shadow: none;
}
.photo-pair .parallax-frame {
  height: 420px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.figure-card:not(.figure-card--badges) .parallax-frame {
  height: 420px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
@media (prefers-reduced-motion: reduce) {
  .hero__media, .parallax-shift { transform: none !important; will-change: auto; }
}
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.92); display: grid; place-items: center;
  z-index: 30; padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 78vh; max-width: min(1100px, 92vw); border-radius: 24px; }
.lightbox p { color: #fff; }
.lightbox__close, .lightbox__nav button {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35);
  border-radius: var(--radius-pill); padding: .5rem 1rem; cursor: pointer;
}
.lightbox__close { position: absolute; top: 1rem; right: 1rem; }

@media (max-width: 900px) {
  .site-header.is-scrolled .header-bar { border-radius: 24px; }
  .nav-toggle { display: inline-flex; }
  .header-phone { display: none; }
  .site-header { position: sticky; }
  .site-nav {
    display: none; position: absolute; left: 1rem; right: 1rem; top: calc(100% - .15rem);
    background: #222; border: 1px solid #3a3a3a; border-radius: 22px;
    padding: 1rem; box-shadow: 0 18px 40px rgba(0,0,0,.35);
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; }
  .site-nav a { color: #ece8df; }
  .site-nav a:hover { background: rgba(255,255,255,.08); color: #fff; }
  .hero { border-radius: 24px; min-height: 62vh; }
  .hero__inner { padding: 4rem 1.25rem 2.2rem; }
  .split, .card-grid, .stat-grid, .step-grid, .gallery, .footer-grid,
  .photo-pair, .two-up, .spec-trio, .contact-cards, .gallery--wide, .quote-band,
  .quote-stage__grid, .quote-stage__photos, .map-block, .policy-layout { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .photo-pair > :last-child { margin-top: 0; height: 280px; }
  .quote-stage__photos > :last-child { margin-top: 0; height: 200px; }
  .gallery--wide .gallery__item:first-child { grid-row: auto; }
  .quote-band--form .contact-form { grid-template-columns: 1fr; }
  .site-footer { margin: 0 .75rem .75rem; border-radius: 24px; }
}
