@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  --red: #960316;
  --red-dark: #760111;
  --blue: #0078d0;
  --navy: #001f33;
  --ink: #050505;
  --muted: #4f4f4f;
  --line: #d8d8d8;
  --soft: #f3f3f3;
  --white: #fff;
  --font: "Sora", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  font-size: 14px;
  line-height: 1.45;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, iframe, video, svg { display: block; max-width: 100%; height: auto; }
iframe { width: 100%; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
}

.topline {
  height: 24px;
  background: #000;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 500;
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}

.nav-shell {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 170px;
}
.brand-block { line-height: .9; letter-spacing: -.02em; }
.brand-main {
  display: block;
  color: var(--red);
  font-weight: 800;
  font-size: 23px;
}
.brand-main::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 10px solid var(--red);
  border-top: 14px solid transparent;
}
.brand-sub {
  display: block;
  color: #262626;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 3px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex: 1;
  height: 100%;
}
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.desktop-nav a {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.nav-item > a:hover { color: var(--red); }
.nav-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 250px;
  padding: 16px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.nav-item:hover .nav-panel,
.nav-item.is-hovered .nav-panel {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-panel a {
  display: block;
  padding: 7px 0;
  text-transform: none;
  font-size: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.pill-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.pill-cta:hover { background: var(--red-dark); }

.mobile-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #000;
  padding: 0;
  cursor: pointer;
}
.mobile-button span,
.mobile-button::before,
.mobile-button::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
  margin: 6px auto;
  border-radius: 2px;
}

/* Off-canvas drawer + overlay (mobile hamburger) */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
  z-index: 90;
}
.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 340px);
  max-width: 100%;
  background: #fff;
  box-shadow: -18px 0 50px rgba(0, 0, 0, .28);
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #ececec;
}
.mobile-nav-brand { line-height: .9; letter-spacing: -.02em; }
.mobile-nav-brand .brand-main { font-size: 20px; }
.mobile-nav-brand .brand-main::after { display: none; }
.mobile-close {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--red);
  padding: 0;
  cursor: pointer;
  flex: none;
}
.mobile-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.mobile-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 8px 20px 4px;
}
.mobile-nav-links a {
  display: block;
  padding: 15px 0;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  border-bottom: 1px solid #ececec;
}
.mobile-nav-links a:active { color: var(--red); }
.mobile-nav-cta {
  display: block;
  margin: 16px 20px 24px;
  padding: 15px 18px;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  min-height: 660px;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 18%, rgba(0,0,0,.22) 52%, rgba(0,0,0,.86) 100%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding: 0 0 88px;
}
.hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.055em;
  margin: 0 0 18px;
}
.hero p {
  max-width: 580px;
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 400;
}
.red-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--red);
  color: #fff;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.red-link::after, .white-link::after, .arrow::after {
  content: "↘";
  font-size: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.white-outline {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 2px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumbs {
  margin-bottom: 22px;
  color: rgba(255,255,255,.88);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.breadcrumbs li + li::before {
  content: "/";
  opacity: .55;
}
.breadcrumbs a {
  border-bottom: 1px solid rgba(255,255,255,.45);
}

.spacious {
  padding: 132px 0;
  background: #fff;
}
.center-kicker {
  color: var(--red);
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 76px;
}
.split-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: end;
}
.split-text-with-visual {
  align-items: center;
}
.split-text h2 {
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.055em;
  margin: 0;
}
.split-text p {
  margin: 0;
  max-width: 520px;
  color: #222;
}

.planning-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
}
.planning-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.planning-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.72));
}
.planning-card {
  position: relative;
  z-index: 1;
  margin: 24px;
  padding: 24px;
  max-width: 360px;
  background: #fff;
  border-radius: 12px;
}
.planning-card strong,
.planning-card span {
  display: block;
}
.planning-card strong {
  margin-bottom: 8px;
  font-size: 18px;
}
.planning-card span {
  color: #444;
}
.planning-links {
  position: absolute;
  z-index: 2;
  right: 24px;
  top: 24px;
  display: grid;
  gap: 8px;
}
.planning-links a {
  padding: 9px 12px;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-stack {
  padding: 10px 0 120px;
  background: #fff;
}
.stack-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 90px;
}
.stack-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 34px;
}
.image-stack {
  display: grid;
  gap: 72px;
}
.image-stack img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
}
.image-stack-linked {
  gap: 18px;
}
.service-row {
  display: grid;
  gap: 12px;
}
.service-row img {
  margin: 0;
}
.service-row span {
  display: block;
}
.service-row strong {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
}
.service-row em {
  display: block;
  margin-top: 4px;
  color: #555;
  font-style: normal;
  font-size: 12px;
}
.line-list {
  display: grid;
  align-content: start;
  gap: 124px;
  padding-top: 86px;
}
.line-list a {
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 28px;
  align-items: center;
  font-size: 23px;
  font-weight: 600;
}
.line-list a::after {
  content: "";
  height: 1px;
  background: #9f9f9f;
}

.copy-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  padding-top: 56px;
}

.metric-strip {
  background: #f0f0f0;
  padding: 34px 0;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.metric-grid a {
  display: grid;
  gap: 6px;
  min-height: 132px;
  align-content: center;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.metric-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,.08);
}
.metric-grid strong {
  display: block;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -.04em;
}
.metric-grid span {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.red-panel-section {
  padding: 120px 0 86px;
  background: #fff;
}
.red-panel {
  background: var(--red);
  min-height: 270px;
  border-radius: 8px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 58px;
}
.red-panel-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.red-panel-icons span {
  min-height: 180px;
  padding: 22px;
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 14px;
}
.red-panel-icons svg {
  width: 44px;
  height: 44px;
}
.red-panel-icons strong,
.red-panel-icons em {
  display: block;
}
.red-panel-icons strong {
  font-size: 15px;
  text-transform: uppercase;
}
.red-panel-icons em {
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-style: normal;
}
.red-panel h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.blue-band {
  background: var(--blue);
  color: #fff;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 68px;
}
.blue-band h2 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 500;
  margin: 0 0 18px;
}

.dark-cta {
  min-height: 340px;
  background: #000;
  display: grid;
  place-items: center;
}

.location-carousel-section {
  padding: 112px 0;
  background: #090909;
  color: #fff;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 40px;
  align-items: end;
  margin-bottom: 34px;
}
.section-head span {
  grid-column: 1 / -1;
  color: #ffb4be;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.section-head h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.055em;
}
.carousel-frame {
  position: relative;
}
.location-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 34%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.location-carousel::-webkit-scrollbar { display: none; }
.location-slide {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 18px;
  scroll-snap-align: start;
  background: #222;
}
.location-slide img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transition: transform .35s ease;
}
.location-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.78));
}
.location-slide:hover img { transform: scale(1.04); }
.location-slide span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -.035em;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #000;
  font-size: 24px;
  cursor: pointer;
  transform: translateY(-50%);
}
.carousel-btn:hover { background: var(--red); color: #fff; }
[data-carousel-prev] { left: -21px; }
[data-carousel-next] { right: -21px; }
.white-link {
  display: inline-flex;
  gap: 10px;
  padding: 12px 20px;
  background: #fff;
  color: #000;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.newslike {
  padding: 118px 0;
  background: #fff;
}
.card-grid, .mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mini-card, .taxonomy-card {
  display: block;
  color: #000;
}
.mini-card img, .taxonomy-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 9px;
  margin-bottom: 18px;
}
.mini-card h3, .taxonomy-card h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.mini-card p, .taxonomy-card p {
  margin: 0;
  color: #555;
  font-size: 13px;
}

.interior-hero {
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #000;
  overflow: hidden;
}
.interior-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interior-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.12) 45%, rgba(0,0,0,.9));
}
.interior-hero .container {
  position: relative;
  z-index: 1;
  padding-bottom: 78px;
}
.interior-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.055em;
}
.intro-block {
  padding: 86px 0;
  background: #f4f4f4;
}
.intro-layout {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 76px;
  align-items: center;
}
.intro-layout h2 {
  margin: 0 0 22px;
  max-width: 460px;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.03em;
}
.intro-layout h2 span { color: var(--red); }
.intro-layout p {
  margin: 0;
  max-width: 590px;
}
.image-pair {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 16px;
  align-items: center;
}
.image-pair img {
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
}
.image-pair img:first-child { height: 140px; }

.index-section {
  padding: 88px 0 112px;
  background: #fff;
}
.index-kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.taxonomy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.taxonomy-card {
  border: 1px solid #e2e2e2;
  border-radius: 14px;
  padding: 20px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.taxonomy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0,0,0,.08);
}
.taxonomy-card img {
  height: 155px;
}
.arrow {
  display: inline-flex;
  gap: 8px;
  margin-top: 16px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.belief-section {
  padding: 110px 0;
  background: #fff;
}
.belief-grid {
  display: grid;
  grid-template-columns: 340px 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.belief-images {
  display: grid;
  gap: 18px;
}
.belief-images img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.belief-card {
  position: relative;
  padding: 0 0 34px 34px;
}
.belief-card::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 4px;
  background: var(--red);
  transform: rotate(45deg);
}
.belief-card h3 {
  margin: 0 0 12px;
  font-size: 17px;
  text-transform: uppercase;
}
.belief-card p { margin: 0; color: #444; }

.detail-section {
  padding: 88px 0;
  background: #fff;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 72px;
  align-items: start;
}
.detail-copy h2 {
  margin: 0 0 22px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -.035em;
}
.detail-copy p {
  margin: 0 0 22px;
  font-size: 16px;
  color: #333;
}
.side-panel {
  padding: 26px;
  background: #f2f2f2;
  border-radius: 14px;
  position: sticky;
  top: 96px;
}
.side-panel h2,
.side-panel h3 {
  margin: 0 0 14px;
  font-size: 18px;
}
.side-panel p { margin: 0 0 18px; }
.side-panel a:not(.red-link) {
  display: block;
  border-top: 1px solid #d7d7d7;
  padding: 11px 0;
  font-weight: 700;
}
.detail-layout-wide {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 58px;
}
.detail-copy-rich {
  max-width: 780px;
}
.detail-lead {
  padding: 24px;
  background: #f5f5f5;
  border-left: 6px solid var(--red);
  border-radius: 12px;
}
.related-card-list {
  display: grid;
  gap: 8px;
}
.related-card-list a {
  border: 1px solid #ddd;
  border-radius: 9px;
  padding: 12px !important;
  background: #fff;
}
.qa-section {
  margin-top: 46px;
  padding-top: 38px;
  border-top: 1px solid #ddd;
}
.qa-section h2 {
  margin: 0 0 18px;
}
.qa-grid {
  display: grid;
  gap: 12px;
}
.qa-grid details {
  border: 1px solid #dedede;
  border-radius: 12px;
  padding: 16px 18px;
  background: #fafafa;
}
.qa-grid summary {
  cursor: pointer;
  font-weight: 800;
}
.qa-grid p {
  margin: 12px 0 0;
}

.contact-section {
  padding: 78px 0 98px;
  background: #fff;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: start;
}
.contact-title {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 500;
  margin: 0 0 26px;
}
.contact-lead {
  font-size: 19px;
  margin: 0 0 32px;
  max-width: 500px;
}
.roof-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 26px;
}
.roof-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.roof-form input,
.roof-form textarea,
.roof-form select {
  width: 100%;
  border: 0;
  border-bottom: 2px solid #777;
  padding: 12px 0;
  outline: 0;
  background: transparent;
}
.roof-form select {
  color: #111;
  border-radius: 0;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--red) 50%), linear-gradient(135deg, var(--red) 50%, transparent 50%);
  background-position: calc(100% - 16px) 54%, calc(100% - 10px) 54%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.roof-form .full { grid-column: 1 / -1; }
.form-button {
  grid-column: 1 / -1;
  height: 46px;
  border: 0;
  color: #fff;
  background: #000;
  font-weight: 700;
  letter-spacing: .02em;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.contact-points a {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.contact-image {
  border-radius: 16px;
  overflow: hidden;
}
.contact-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.footer {
  background: #f0f0f0;
  padding: 70px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 54px;
}
.footer h3 {
  margin: 0 0 18px;
  font-size: 13px;
  text-transform: uppercase;
}
.footer p, .footer a {
  display: block;
  margin: 0 0 9px;
  font-size: 13px;
  color: #111;
}
.footer-bottom {
  margin-top: 74px;
  text-align: center;
  font-size: 12px;
  color: #555;
}
.footer .brand { margin-bottom: 32px; }
.footer-cta {
  width: max-content;
  text-align: center;
  margin-top: 16px !important;
}

.about-depth {
  padding: 104px 0;
  background: #fff;
}
.about-depth .split-text {
  margin-bottom: 54px;
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.about-cards a {
  min-height: 180px;
  padding: 24px;
  border-radius: 14px;
  background: #f4f4f4;
  border: 1px solid #e1e1e1;
}
.about-cards strong {
  display: block;
  margin-bottom: 12px;
  font-size: 17px;
  text-transform: uppercase;
}
.about-cards span {
  color: #444;
}

.nav-panel .view-all {
  margin-top: 8px;
  padding: 10px 12px;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  text-align: center;
}

.phone-link {
  color: var(--red);
  white-space: nowrap;
}

.mobile-phone-sticky {
  display: none;
}

.not-found {
  min-height: 72vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 24px;
}
.not-found h1 {
  margin: 0 0 16px;
  font-size: 62px;
  letter-spacing: -.05em;
}

@media (max-width: 900px) {
  body { font-size: 16px; }
  .container { width: min(100% - 34px, 640px); }
  .topline {
    height: auto;
    padding: 7px 18px;
    text-align: center;
    line-height: 1.25;
  }
  .nav-shell {
    height: 64px;
  }
  .desktop-nav { display: none; }
  .mobile-button { display: block; }
  .brand-main { font-size: 25px; }
  .hero {
    min-height: 560px;
    align-items: flex-end;
  }
  .hero .container { padding-bottom: 42px; }
  .hero h1 { font-size: 44px; }
  .hero p { font-size: 15px; }
  .spacious { padding: 72px 0; }
  .center-kicker {
    margin-bottom: 36px;
    text-align: left;
  }
  .split-text,
  .stack-grid,
  .copy-row,
  .red-panel,
  .red-panel-icons,
  .intro-layout,
  .belief-grid,
  .detail-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .split-text h2 { font-size: 38px; }
  .planning-visual {
    min-height: 360px;
  }
  .planning-links {
    position: relative;
    top: auto;
    right: auto;
    margin: 0 24px 24px;
    align-self: end;
  }
  .service-stack { padding-bottom: 68px; }
  .image-stack { gap: 28px; }
  .service-row {
    grid-template-columns: 120px 1fr;
    align-items: center;
  }
  .service-row img {
    height: 92px;
  }
  .line-list {
    gap: 28px;
    padding-top: 0;
  }
  .line-list a {
    grid-template-columns: 1fr;
    font-size: 18px;
    gap: 10px;
  }
  .metric-grid,
  .card-grid,
  .mini-card-grid,
  .taxonomy-grid {
    grid-template-columns: 1fr;
  }
  .red-panel-section { padding: 64px 0; }
  .red-panel { padding: 34px; }
  .red-panel-icons span {
    min-height: auto;
  }
  .blue-band { min-height: 300px; }
  .dark-cta { min-height: 260px; }
  .location-carousel-section { padding: 70px 0; }
  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .location-carousel {
    grid-auto-columns: minmax(250px, 82%);
  }
  .carousel-btn {
    display: none;
  }
  .newslike { padding: 72px 0; }
  .interior-hero {
    min-height: 400px;
  }
  .intro-block,
  .belief-section,
  .detail-section,
  .contact-section {
    padding: 56px 0;
  }
  .image-pair { grid-template-columns: 1fr; }
  .roof-form { grid-template-columns: 1fr; }
  .contact-image img { height: 360px; }
  .side-panel { position: static; }
  .about-cards { grid-template-columns: 1fr; }
  .mobile-phone-sticky {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    color: #fff;
    box-shadow: 0 14px 34px rgba(0,0,0,.26);
    font-size: 22px;
  }
}

/* ---- Mobile readability + tap targets + dense-grid handling (<=768px) ---- */
@media (max-width: 768px) {
  body { font-size: 16px; line-height: 1.55; }
  .container { width: min(100% - 32px, 640px); }
  h1 { line-height: 1.08; }
  /* keep dense card decks at 1 col, comfortable spacing */
  .metric-grid,
  .card-grid,
  .mini-card-grid,
  .taxonomy-grid,
  .about-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  /* tap targets */
  .pill-cta,
  .red-link,
  .white-link,
  .form-button,
  .btn {
    min-height: 46px;
  }
  .footer p, .footer a { font-size: 15px; }
  .roof-form input,
  .roof-form select,
  .roof-form textarea,
  .rzlxz-h-contact-form input,
  .rzlxz-h-contact-form select,
  .rzlxz-h-contact-form textarea {
    min-height: 46px;
    font-size: 16px; /* prevents iOS zoom on focus */
  }
  .rzlxz-h-contact-form textarea { min-height: 120px; }
  .contact-title { font-size: clamp(34px, 9vw, 50px); }
  .contact-lead { font-size: 17px; }
}

/* ---- Legacy -ar location stub shell (was unstyled; render on-theme) ---- */
.site-shell { width: 100%; }
.site-shell .hero-small {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #111;
  overflow: hidden;
}
.site-shell .hero-small img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-shell .hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 20%, rgba(0,0,0,.78) 100%);
}
.site-shell .hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 0 0 44px;
}
.site-shell .hero-content h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -.04em;
}
.site-shell .hero-subtitle { font-size: 18px; max-width: 560px; }
.site-shell .hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.site-shell .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  background: #111;
  color: #fff;
}
.site-shell .btn.red { background: var(--red); color: #fff; }
.site-shell .btn.red:hover { background: var(--red-dark); }
.site-shell .btn.outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.7); }
.site-shell .btn.full { display: flex; justify-content: center; width: 100%; }
.site-shell .red-rule {
  width: min(1180px, calc(100% - 64px));
  height: 3px;
  margin: 0 auto;
  background: var(--red);
}
.site-shell main {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}
.site-shell .detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 56px;
  align-items: start;
  padding: 48px 0 8px;
}
.site-shell .detail-layout > * { min-width: 0; }
.site-shell .detail-copy { min-width: 0; overflow-wrap: break-word; word-wrap: break-word; }
.site-shell .detail-copy p { margin: 0 0 18px; font-size: 16px; color: #2a2a2a; overflow-wrap: break-word; }
.site-shell .detail-copy h2 { font-size: 28px; letter-spacing: -.02em; margin: 28px 0 14px; }
.site-shell .faq { margin-top: 18px; }
.site-shell .faq details {
  border-top: 1px solid #e2e2e2;
  padding: 14px 0;
}
.site-shell .faq summary { cursor: pointer; font-weight: 700; }
.site-shell .faq details p { margin: 10px 0 0; }
.site-shell .detail-sidebar {
  padding: 26px;
  background: #f2f2f2;
  border-radius: 14px;
}
.site-shell .detail-sidebar h2 { margin: 0 0 12px; font-size: 18px; }
.site-shell .detail-sidebar h3 { margin: 22px 0 10px; font-size: 14px; text-transform: uppercase; }
.site-shell .detail-sidebar a:not(.btn) {
  display: block;
  border-top: 1px solid #d7d7d7;
  padding: 10px 0;
  font-weight: 700;
}
.site-shell .contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  width: min(1180px, calc(100% - 64px));
  margin: 56px auto;
  padding: 40px;
  background: #f4f4f4;
  border-radius: 16px;
}
.site-shell .contact-band > * { min-width: 0; }
.site-shell .contact-band h2 { margin: 0 0 14px; font-size: 28px; letter-spacing: -.02em; }
.site-shell .contact-copy { min-width: 0; }
.site-shell .contact-line { overflow-wrap: anywhere; word-break: break-word; }
.site-shell .contact-line a { color: var(--red); font-weight: 700; overflow-wrap: anywhere; }
@media (max-width: 900px) {
  .site-shell .hero-content,
  .site-shell .red-rule,
  .site-shell main,
  .site-shell .contact-band { width: min(100% - 34px, 640px); }
  .site-shell .detail-layout { grid-template-columns: 1fr; gap: 34px; }
  .site-shell .contact-band { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
}

/* brand-logo-img */
.brand,.mobile-nav-brand{display:flex;align-items:center}
.brand-logo{height:40px;width:auto;display:block;max-width:300px}
.mobile-nav-brand .brand-logo{height:34px}
@media (max-width:600px){.brand-logo{height:34px;max-width:62vw}}
