:root {
  --ink: #0d1117;
  --text: #202632;
  --muted: #667085;
  --line: #dce3ea;
  --paper: #ffffff;
  --soft: #f4f8fd;
  --charcoal: #050505;
  --brand-blue: #66aef9;
  --brand-blue-light: #b8d3f3;
  --brand-blue-dark: #1e6fc7;
  --brand-gradient: linear-gradient(135deg, #b8d3f3 0%, #83bcf8 48%, #62aaf6 100%);
  --teal: var(--brand-blue-dark);
  --rust: var(--brand-blue-dark);
  --blue: #2563eb;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 40;
  padding: 0.7rem 1rem;
  color: #ffffff;
  background: var(--ink);
  border-radius: 6px;
}

.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 227, 234, 0.7);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(13, 17, 23, 0.08);
}

.topline,
.nav-row,
.header-shell {
  width: min(var(--max), calc(100% - 9vw));
  margin: 0 auto;
}

.topline {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  color: #4b5563;
  font-size: 0.9rem;
}

.topline a,
.utility-nav a,
.site-nav a,
.site-footer a {
  text-decoration: none;
}

.phone-link {
  color: var(--ink);
  font-weight: 700;
}

.header-shell {
  min-height: 108px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.4rem;
  align-items: center;
}

.header-brand {
  align-self: center;
}

.header-nav-area {
  display: grid;
  gap: 0.65rem;
  justify-items: end;
}

.utility-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.1rem;
  color: #414853;
  font-size: 0.9rem;
  line-height: 1.2;
}

.utility-nav a:hover,
.utility-nav a:focus,
.site-nav a:hover,
.site-nav a:focus {
  color: var(--brand-blue-dark);
}

.site-header.mv-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: none;
}

.site-header.mv-header .brand-logo {
  max-width: 104px !important;
  height: 62px !important;
  box-shadow: 0 8px 22px rgba(30, 111, 199, 0.14);
}

.site-header.mv-header .site-nav {
  gap: 2rem;
  color: #151922;
  font-size: 1.06rem;
}

.site-header.mv-header .site-nav a {
  padding: 0.45rem 0 0.7rem;
}

.site-header.mv-header .site-nav a::after {
  bottom: 0.2rem;
  height: 2px;
}

.dark-header-page .site-header.mv-header {
  background: #080808;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.dark-header-page .site-header.mv-header .site-nav,
.dark-header-page .utility-nav,
.dark-header-page .phone-link {
  color: #ffffff;
}

.dark-header-page .utility-nav a:hover,
.dark-header-page .utility-nav a:focus,
.dark-header-page .site-nav a:hover,
.dark-header-page .site-nav a:focus {
  color: var(--brand-blue-light);
}

.nav-row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-header.compact .nav-row {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: auto !important;
  max-width: 120px !important;
  height: 58px !important;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(30, 111, 199, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: #222936;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding: 0.7rem 0;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.28rem;
  width: 0;
  height: 3px;
  background: var(--brand-gradient);
  transition: width 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus::after,
.site-nav a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--brand-blue);
  color: #ffffff;
  padding: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.consultation-hero {
  width: min(var(--max), calc(100% - 9vw));
  margin: 0 auto;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1fr);
  gap: 4rem;
  align-items: center;
  padding: 5.5rem 0 4rem;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--brand-blue-dark);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: 3.5rem;
  line-height: 1.04;
  font-weight: 600;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.12;
  font-weight: 600;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
}

p {
  font-size: 1.02rem;
  line-height: 1.7;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.page-title p,
.service-card p,
.store-grid p,
.design-grid p,
.feature-list p,
.contact-panel p,
.site-footer p {
  color: var(--muted);
}

.consult-form {
  padding: 2.5rem;
  color: #ffffff;
  background: var(--charcoal);
  border: 1px solid rgba(102, 174, 249, 0.7);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(30, 111, 199, 0.18);
}

.consult-form h2 {
  color: #ffffff;
  font-size: 2rem;
}

.consult-form p {
  color: rgba(255, 255, 255, 0.78);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.6rem 0 1rem;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label span {
  display: none;
}

input,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #b8d3f3;
  border-radius: 0;
  padding: 0 1rem;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(102, 174, 249, 0.38);
  border-color: var(--brand-blue);
}

textarea {
  min-height: 150px;
  padding-top: 1rem;
  resize: vertical;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 0;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(30, 111, 199, 0.2);
}

.button-light {
  width: 100%;
  color: var(--ink) !important;
  border-color: #86bef8 !important;
  background: var(--brand-gradient) !important;
}

.button-dark {
  color: var(--ink) !important;
  border-color: #74b5f8 !important;
  background: var(--brand-gradient) !important;
}

.form-note {
  margin: 1.3rem 0 0;
  font-style: italic;
}

.full-image-band {
  height: 390px;
  overflow: hidden;
}

.full-image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  width: min(var(--max), calc(100% - 9vw));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-section .button {
  margin-top: 1rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list article,
.service-card,
.store-grid article,
.design-grid article {
  padding: 1.25rem;
  border: 1px solid #c9def5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(30, 111, 199, 0.06);
}

.feature-list span,
.service-card span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--rust);
  font-weight: 900;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  box-shadow: 0 18px 34px rgba(30, 111, 199, 0.1);
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  width: 5.7rem;
  height: 5.7rem;
  opacity: 0.09;
  background: var(--watermark-icon) center / contain no-repeat;
  filter: drop-shadow(0 12px 15px rgba(30, 111, 199, 0.32));
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card h2 {
  max-width: calc(100% - 4.5rem);
}

.service-card[data-icon="planning"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='22' y='22' width='76' height='76' rx='8'/%3E%3Cpath d='M38 82V58l22-18 22 18v24'/%3E%3Cpath d='M48 82V66h24v16'/%3E%3Cpath d='M34 40h18M34 52h10M78 34h8M78 46h8'/%3E%3C/svg%3E");
}

.service-card[data-icon="pricing"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='24' y='28' width='72' height='64' rx='9'/%3E%3Cpath d='M40 48h40'/%3E%3Cpath d='M42 68h18'/%3E%3Cpath d='M72 68h8'/%3E%3C/svg%3E");
}

.service-card[data-icon="consultation"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M25 34h70v44H56L38 94V78H25V34Z'/%3E%3Cpath d='M42 50h36M42 64h24'/%3E%3C/svg%3E");
}

.service-card[data-icon="build"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 58 60 24l40 34'/%3E%3Cpath d='M30 54v42h60V54'/%3E%3Cpath d='M48 96V70h24v26'/%3E%3C/svg%3E");
}

.service-card[data-icon="repair"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M76 24 96 44 44 96H24V76L76 24Z'/%3E%3Cpath d='M66 34 86 54'/%3E%3Cpath d='M22 28l18 18'/%3E%3Cpath d='M31 19l-9 9 18 18 9-9'/%3E%3C/svg%3E");
}

.service-card[data-icon="commercial"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M28 98V24h46v74'/%3E%3Cpath d='M74 48h20v50'/%3E%3Cpath d='M42 40h8M42 56h8M42 72h8M60 40h8M60 56h8M60 72h8'/%3E%3C/svg%3E");
}

.service-card[data-icon="inspection"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='52' cy='52' r='25'/%3E%3Cpath d='M70 70l24 24'/%3E%3Cpath d='M42 52l8 8 16-18'/%3E%3C/svg%3E");
}

.service-card[data-icon="design"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M76 24 96 44 46 94 24 98l4-22 48-52Z'/%3E%3Cpath d='M66 34 86 54'/%3E%3Cpath d='M24 32h28'/%3E%3Cpath d='M24 48h18'/%3E%3C/svg%3E");
}

.service-card[data-icon="finishing"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M28 36h50v24H28z'/%3E%3Cpath d='M78 44h14v10H78'/%3E%3Cpath d='M54 60v16'/%3E%3Cpath d='M42 98h24l-4-22H46l-4 22Z'/%3E%3C/svg%3E");
}

.muted-section {
  width: 100%;
  max-width: none;
  padding: 5.5rem 4.5vw;
  background: var(--soft);
}

.muted-section > * {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 2rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-grid div {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  color: #ffffff;
  background: var(--ink);
  border-top: 4px solid var(--brand-blue);
  border-radius: 8px;
}

.process-grid strong {
  color: #b8d3f3;
  font-size: 1.7rem;
}

.home-service-overview {
  padding-top: 4.5rem;
}

.home-service-overview .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.home-service-grid article {
  position: relative;
  overflow: hidden;
  min-height: 295px;
  padding: 1.45rem;
  border: 1px solid #c9def5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(30, 111, 199, 0.06);
}

.home-service-grid article::after {
  content: "";
  position: absolute;
  right: -1.2rem;
  bottom: -1.4rem;
  width: 8.5rem;
  height: 8.5rem;
  opacity: 0.08;
  background: var(--watermark-icon) center / contain no-repeat;
  pointer-events: none;
}

.home-service-grid article > * {
  position: relative;
  z-index: 1;
}

.home-service-grid article[data-icon="build"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 58 60 24l40 34'/%3E%3Cpath d='M30 54v42h60V54'/%3E%3Cpath d='M48 96V70h24v26'/%3E%3C/svg%3E");
}

.home-service-grid article[data-icon="repair"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M76 24 96 44 44 96H24V76L76 24Z'/%3E%3Cpath d='M66 34 86 54'/%3E%3Cpath d='M22 28l18 18'/%3E%3Cpath d='M31 19l-9 9 18 18 9-9'/%3E%3C/svg%3E");
}

.home-service-grid article[data-icon="quality"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M60 18 72 45l29 3-22 20 6 30-25-16-25 16 6-30-22-20 29-3 12-27Z'/%3E%3C/svg%3E");
}

.home-service-grid article[data-icon="pricing"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='24' y='28' width='72' height='64' rx='9'/%3E%3Cpath d='M40 48h40'/%3E%3Cpath d='M42 68h18'/%3E%3Cpath d='M72 68h8'/%3E%3C/svg%3E");
}

.home-service-grid article[data-icon="team"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='45' cy='42' r='14'/%3E%3Ccircle cx='78' cy='45' r='12'/%3E%3Cpath d='M24 92c4-18 16-28 32-28s28 10 32 28'/%3E%3Cpath d='M69 66c13 2 22 10 27 26'/%3E%3C/svg%3E");
}

.home-service-grid article[data-icon="commercial"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M28 98V24h46v74'/%3E%3Cpath d='M74 48h20v50'/%3E%3Cpath d='M42 40h8M42 56h8M42 72h8M60 40h8M60 56h8M60 72h8'/%3E%3C/svg%3E");
}

.home-service-grid article[data-icon="technology"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='26' y='28' width='68' height='54' rx='7'/%3E%3Cpath d='M44 98h32'/%3E%3Cpath d='M60 82v16'/%3E%3Cpath d='M43 55h10l7-12 9 24 7-12h10'/%3E%3C/svg%3E");
}

.home-service-grid article[data-icon="machines"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 82h72'/%3E%3Cpath d='M38 82V48l20-18h24v52'/%3E%3Cpath d='M44 48h22'/%3E%3Ccircle cx='42' cy='88' r='10'/%3E%3Ccircle cx='84' cy='88' r='10'/%3E%3Cpath d='M82 30l14 20'/%3E%3C/svg%3E");
}

.home-service-grid article[data-icon="financing"] {
  --watermark-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%231e6fc7' stroke-width='7' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='22' y='34' width='76' height='54' rx='9'/%3E%3Cpath d='M22 50h76'/%3E%3Cpath d='M43 70h24'/%3E%3Cpath d='M76 70h8'/%3E%3C/svg%3E");
}

.home-service-grid span {
  display: inline-flex;
  margin-bottom: 0.85rem;
  color: var(--brand-blue-dark);
  font-weight: 900;
}

.home-service-grid h3 {
  font-size: 1.25rem;
  line-height: 1.22;
}

.home-service-grid p {
  color: var(--muted);
}

.emergency-band {
  width: 100%;
  max-width: none;
  padding: 5.2rem 4.5vw;
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: 3rem;
  align-items: center;
  color: #ffffff;
  background: var(--ink);
}

.emergency-band > * {
  width: min(var(--max), 100%);
}

.emergency-band h2 {
  color: #ffffff;
}

.emergency-band p {
  color: #d8e3ef;
}

.repair-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.repair-list li {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(184, 211, 243, 0.36);
  border-radius: 8px;
  color: #eef6ff;
  background: rgba(255, 255, 255, 0.06);
}

.home-cta {
  width: 100%;
  max-width: none;
  padding: 5.5rem 4.5vw;
  color: #ffffff;
  background: var(--ink);
}

.home-cta > * {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.home-cta h2 {
  max-width: 850px;
  color: #ffffff;
}

.home-cta p:not(.eyebrow) {
  max-width: 700px;
  color: #d8e3ef;
}

.home-cta .button {
  width: auto;
  margin-top: 1rem;
}

.visual-hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 82vh;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 900ms ease, transform 6200ms ease;
}

.hero-slide.is-active {
  opacity: 0.78;
  transform: scale(1);
}

.hero-carousel-controls {
  position: absolute;
  right: 7vw;
  bottom: 7.5vh;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.carousel-arrow {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(13, 17, 23, 0.46);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 160ms ease, transform 160ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus {
  background: rgba(30, 111, 199, 0.86);
  transform: translateY(-1px);
}

.hero-carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(13, 17, 23, 0.42);
  backdrop-filter: blur(8px);
}

.hero-carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
}

.hero-carousel-dots button.is-active {
  width: 26px;
  border-radius: 999px;
  background: #ffffff;
}

.visual-hero-card {
  position: absolute;
  left: 7vw;
  bottom: 8vh;
  z-index: 2;
  width: min(620px, calc(100% - 14vw));
  color: #ffffff;
}

.visual-hero-card h1 {
  color: #ffffff;
}

.hero-motto {
  max-width: 520px;
  margin: 1rem 0 0;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.45;
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.visual-hero-card .button {
  margin-top: 1.2rem;
  width: auto;
}

.how-page {
  min-height: 100vh;
  color: #ffffff;
  background: #080808;
}

.how-intro {
  width: min(var(--max), calc(100% - 9vw));
  margin: 0 auto;
  padding: 5rem 0 1.5rem;
}

.how-intro h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 400;
}

.how-intro p:not(.eyebrow) {
  max-width: 650px;
  color: #f1f5f9;
}

.how-page .eyebrow {
  color: var(--brand-blue-light);
}

.how-steps {
  width: min(var(--max), calc(100% - 9vw));
  margin: 0 auto;
  padding: 3rem 0 7rem;
  display: grid;
  gap: 8rem;
}

.how-step {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(520px, 1.15fr);
  gap: 4.5rem;
  align-items: center;
}

.how-step-copy,
.how-step-media {
  min-width: 0;
}

.how-step span {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--brand-blue-light);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-step h2 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 400;
}

.how-step p {
  max-width: 560px;
  margin: 1rem 0 0;
  color: #d8dee8;
}

.how-step .button {
  width: auto;
  margin-top: 1.5rem;
}

.how-step-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #151515;
}

.how-step-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
}

.how-step:nth-child(even) {
  grid-template-columns: minmax(520px, 1.15fr) minmax(300px, 0.85fr);
}

.how-step:nth-child(even) .how-step-media {
  order: -1;
}

.page-title {
  width: min(var(--max), calc(100% - 9vw));
  margin: 0 auto;
  padding: 5rem 0 2rem;
}

.services-page-title {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 2.5rem;
  min-height: 390px;
  overflow: hidden;
}

.services-title-copy {
  position: relative;
  z-index: 2;
}

.services-title-photo {
  position: relative;
  align-self: stretch;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.services-title-photo::before,
.services-title-photo::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.services-title-photo::before {
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.34) 20%, rgba(255, 255, 255, 0.02) 58%, rgba(255, 255, 255, 0.38) 100%);
}

.services-title-photo::after {
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 28%;
  background: linear-gradient(0deg, #ffffff 8%, rgba(255, 255, 255, 0));
}

.services-title-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.82;
  filter: saturate(0.92) contrast(0.98) drop-shadow(0 20px 30px rgba(30, 111, 199, 0.14));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000000 16%, #000000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000000 16%, #000000 86%, transparent 100%);
}

.about-page-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  align-items: center;
  gap: 3rem;
}

.about-logo-panel {
  display: grid;
  place-items: center;
  gap: 1rem;
  min-height: 250px;
  margin: 0;
  padding: 2rem;
  border: 1px solid #c9def5;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffffff 0%, #edf5ff 100%);
  box-shadow: 0 18px 38px rgba(30, 111, 199, 0.12);
}

.about-logo-panel img {
  width: min(190px, 70%);
  height: auto;
  filter: drop-shadow(0 14px 20px rgba(30, 111, 199, 0.18));
}

.about-logo-panel figcaption {
  max-width: 240px;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: 3rem;
  align-items: start;
}

.about-copy {
  max-width: 900px;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.about-motto {
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  color: var(--ink) !important;
  border-left: 5px solid var(--brand-blue);
  background: #edf5ff;
  font-weight: 900;
}

.about-stats {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 120px;
}

.about-stats article {
  padding: 1.4rem;
  border: 1px solid #c9def5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(30, 111, 199, 0.08);
}

.about-stats span {
  display: block;
  color: var(--brand-blue-dark);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.about-stats p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.page-title h1 {
  max-width: 820px;
}

.page-title p:not(.eyebrow) {
  max-width: 760px;
}

.card-grid,
.store-grid,
.design-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 230px;
}

.store-image {
  min-height: 170px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: #ffffff;
  background: var(--brand-gradient);
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 800;
}

.store-grid a {
  color: var(--blue);
  font-weight: 800;
}

.gallery-grid {
  width: min(var(--max), calc(100% - 9vw));
  margin: 0 auto;
  padding: 2rem 0 5.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-showcase {
  width: min(var(--max), calc(100% - 9vw));
  margin: 0 auto;
  padding: 2rem 0 6rem;
  columns: 3 300px;
  column-gap: 1rem;
}

.gallery-title {
  padding-bottom: 0;
}

.gallery-item {
  break-inside: avoid;
  margin: 0 0 1rem;
  overflow: hidden;
  border-radius: 8px;
  background: #eef4fb;
  box-shadow: 0 10px 24px rgba(30, 111, 199, 0.08);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-item:hover img {
  transform: scale(1.018);
}

.project-notice {
  width: min(var(--max), calc(100% - 9vw));
  margin: -3.5rem auto 5.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid #c9def5;
  border-radius: 8px;
  background: #f4f8fd;
}

.project-notice p {
  margin: 0;
  color: #42526a;
  font-size: 0.95rem;
}

.gallery-grid img,
.design-grid img,
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-grid img {
  aspect-ratio: 16 / 10;
}

.image-card {
  min-height: 390px;
  border-radius: 8px;
  overflow: hidden;
}

.clean-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0 0;
  padding-left: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.55;
}

.design-grid article {
  padding: 0;
  overflow: hidden;
}

.design-grid img {
  height: 230px;
  border-radius: 8px 8px 0 0;
}

.design-grid h2,
.design-grid p {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.design-grid h2 {
  margin-top: 1.15rem;
  font-size: 1.35rem;
}

.design-grid p {
  padding-bottom: 1.25rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.55fr);
  gap: 2rem;
  align-items: start;
}

.contact-form {
  width: 100%;
}

.contact-panel {
  padding: 2rem;
  border: 1px solid #c9def5;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(30, 111, 199, 0.08);
}

.site-footer {
  padding: 3.3rem 4.5vw 1.6rem;
  color: #000000;
  background: #ebe8e2;
  border-top: 1px solid #d8d3ca;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(170px, 0.6fr) minmax(230px, 0.75fr);
  gap: 4rem;
  align-items: start;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-contact {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 0.8rem;
}

.footer-brand .brand-logo {
  max-width: 180px !important;
  height: 82px !important;
  object-fit: contain;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  color: #000000;
  font-size: 1.08rem;
}

.footer-contact-link span {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  padding: 0.25rem 0.45rem;
  border: 1px solid #bcb7ae;
  color: #202020;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-menu {
  display: grid;
  gap: 1.2rem;
  justify-items: center;
  text-align: center;
  font-size: 1.08rem;
}

.footer-menu a {
  color: #000000;
}

.footer-bottom {
  width: min(var(--max), 100%);
  margin: 3rem auto 0;
  padding-top: 1.7rem;
  border-top: 1px solid #6f7480;
  text-align: center;
}

.footer-policy-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.4rem;
  color: #59616e;
  font-size: 1rem;
}

.footer-policy-row a {
  color: #59616e;
}

.footer-address {
  margin: 1.5rem 0 0;
  color: #59616e !important;
}

.legal-content {
  max-width: 920px;
}

.legal-content h2 {
  margin-top: 2.4rem;
  font-size: 1.7rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-content ul {
  display: grid;
  gap: 0.6rem;
  padding-left: 1.3rem;
}

.legal-note {
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--brand-blue);
  background: #edf5ff;
}

.designs-hero {
  width: min(var(--max), calc(100% - 9vw));
  margin: 0 auto;
  padding: 5.5rem 0 4.5rem;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 0.7fr);
  gap: 3.5rem;
  align-items: center;
}

.designs-hero-copy {
  max-width: 780px;
  min-width: 0;
}

.designs-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 1.35rem;
  font-weight: 400;
}

.designs-hero-copy p:not(.eyebrow) {
  color: var(--muted);
}

.designs-hero-image {
  overflow: hidden;
  border: 1px solid #c9def5;
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(30, 111, 199, 0.13);
}

.designs-hero-image img {
  width: 100%;
  min-height: 520px;
  height: 100%;
  object-fit: cover;
}

.designs-hero-image .floor-plan-image {
  background: #f4efe7;
}

.house-catalogue {
  border-top: 1px solid var(--line);
}

.house-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.house-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 100%;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border: 1px solid #c9def5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(30, 111, 199, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.house-card:hover,
.house-card:focus {
  transform: translateY(-3px);
  border-color: #86bef8;
  box-shadow: 0 18px 38px rgba(30, 111, 199, 0.14);
}

.house-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.house-card span {
  width: fit-content;
  margin: 1rem 1rem 0;
  padding: 0.26rem 0.55rem;
  color: var(--ink);
  background: var(--brand-gradient);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

.house-card h3 {
  margin: 0.9rem 1rem 0;
}

.house-card p {
  margin: 0.55rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.design-detail-list {
  display: grid;
  gap: 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.design-detail {
  display: grid;
  grid-template-columns: minmax(4.5vw, 1fr) minmax(280px, 520px) minmax(360px, 640px) minmax(4.5vw, 1fr);
  gap: 2.3rem 4rem;
  align-items: start;
  padding: 0 0 6rem;
  background: #ffffff;
  scroll-margin-top: 110px;
}

.design-detail:nth-child(even) {
  background: #ffffff;
}

.design-detail:nth-child(even) .design-detail-image {
  order: 0;
}

.design-detail-image {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  height: clamp(540px, 82vh, 820px);
  background: #050505;
}

.design-detail-image.floor-plan-frame {
  background: #f4efe7;
}

.design-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: default;
}

.design-detail-image .floor-plan-image {
  object-fit: contain;
}

.design-summary-grid {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.design-summary-card {
  min-height: 118px;
  padding: 1rem;
  border: 1px solid #c9def5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(30, 111, 199, 0.08);
}

.design-summary-card span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--brand-blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.design-summary-card strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 600;
}

.design-photo-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.design-photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: default;
}

.design-photo-grid img:nth-child(2) {
  object-position: 65% center;
}

.design-photo-grid img:nth-child(3) {
  object-position: center bottom;
}

.design-photo-grid img:nth-child(4) {
  object-position: 80% center;
}

.design-detail-copy {
  grid-column: 3;
  max-width: 760px;
  min-width: 0;
}

.design-detail-copy h2 {
  margin-bottom: 1.25rem;
}

.design-detail-copy p {
  color: #42526a;
}

.designs-cta {
  width: min(var(--max), calc(100% - 9vw));
  margin: 0 auto;
  padding: 5.5rem 0;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.designs-cta p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.designs-cta .button {
  width: auto;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 0.8rem;
    font-size: 0.88rem;
  }

  .site-header.mv-header .site-nav {
    gap: 1.15rem;
    font-size: 0.96rem;
  }

  .utility-nav {
    gap: 1.25rem;
    font-size: 0.84rem;
  }

  .brand-logo {
    max-width: 105px !important;
    height: 50px !important;
  }
}

@media (max-width: 920px) {
  .topline,
  .utility-nav {
    display: none;
  }

  .nav-row,
  .header-shell {
    min-height: 70px;
  }

  .header-shell {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }

  .header-nav-area {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 4.5vw;
    right: 4.5vw;
    top: calc(100% + 0.5rem);
    display: none;
    padding: 0.5rem;
    background: #ffffff;
    border: 1px solid #c9def5;
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(13, 17, 23, 0.14);
  }

  .site-header.mv-header .site-nav {
    gap: 0;
    font-size: 0.96rem;
  }

  .dark-header-page .site-header.mv-header .site-nav {
    color: #151922;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 0.85rem;
  }

  .consultation-hero,
  .services-page-title,
  .about-page-title,
  .about-story,
  .split-section,
  .contact-layout,
  .how-step,
  .emergency-band,
  .designs-hero,
  .design-detail {
    grid-template-columns: 1fr;
  }

  .consultation-hero {
    min-height: 0;
    padding-top: 4rem;
    gap: 2rem;
  }

  .services-page-title {
    min-height: 0;
    gap: 1.5rem;
  }

  .services-title-photo {
    min-height: 240px;
  }

  .about-logo-panel {
    min-height: 210px;
  }

  .about-stats {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.6rem;
  }

  .footer-contact {
    grid-column: 1 / -1;
    justify-items: center;
    text-align: center;
  }

  .footer-contact-link {
    width: auto;
  }

  .how-step {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .how-step:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .how-step:nth-child(even) .how-step-media {
    order: 0;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .process-grid,
  .card-grid,
  .home-service-grid,
  .store-grid,
  .design-grid,
  .gallery-grid,
  .house-card-grid,
  .design-summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .designs-hero-image img {
    min-height: 360px;
  }

  .design-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 4.5rem;
  }

  .design-detail:nth-child(even) .design-detail-image {
    order: 0;
  }

  .design-detail-image {
    grid-column: 1;
    position: static;
    height: clamp(430px, 72vh, 680px);
  }

  .design-summary-grid,
  .design-photo-grid,
  .design-detail-copy {
    grid-column: 1;
    width: min(var(--max), calc(100% - 9vw));
    margin: 0 auto;
  }
}

@media (max-width: 620px) {
  .topline,
  .nav-row,
  .header-shell,
  .consultation-hero,
  .section,
  .page-title,
  .gallery-grid,
  .gallery-showcase,
  .project-notice,
  .how-intro,
  .how-steps,
  .designs-hero,
  .designs-cta {
    width: min(100% - 2rem, var(--max));
  }

  h1 {
    max-width: 100%;
    font-size: 1.95rem;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 1.72rem;
  }

  .consult-form {
    padding: 1.35rem;
  }

  .brand-logo {
    max-width: 92px !important;
    height: 44px !important;
  }

  .site-header.mv-header .brand-logo {
    max-width: 84px !important;
    height: 50px !important;
  }

  .footer-brand .brand-logo {
    max-width: 120px !important;
    height: 56px !important;
  }

  .form-grid,
  .process-grid,
  .card-grid,
  .home-service-grid,
  .store-grid,
  .design-grid,
  .gallery-grid,
  .house-card-grid,
  .design-summary-grid,
  .designs-cta {
    grid-template-columns: 1fr;
  }

  .services-title-photo {
    min-height: 190px;
  }

  .about-logo-panel {
    min-height: 180px;
    padding: 1.5rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .full-image-band {
    height: 260px;
  }

  .visual-hero,
  .hero-slide {
    min-height: 640px;
    height: 640px;
  }

  .visual-hero-card {
    left: 1rem;
    bottom: 6.2rem;
    width: calc(100% - 2rem);
  }

  .visual-hero-card .eyebrow {
    margin-bottom: 0.45rem;
    font-size: 0.76rem;
  }

  .section .eyebrow {
    max-width: 18.5rem;
  }

  .visual-hero-card h1 {
    max-width: 100%;
    font-size: 1.78rem;
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero-motto {
    max-width: 17rem;
    margin-top: 0.75rem;
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .hero-carousel-controls {
    left: 1rem;
    right: 1rem;
    bottom: 1.35rem;
    justify-content: space-between;
  }

  .hero-carousel-dots {
    max-width: calc(100% - 104px);
    overflow: hidden;
  }

  .emergency-band,
  .home-cta {
    width: 100%;
  }

  .how-intro {
    padding-top: 3.6rem;
  }

  .how-intro h1 {
    font-size: 2.15rem;
  }

  .how-step {
    gap: 1.25rem;
  }

  .how-step h2 {
    font-size: 1.45rem;
  }

  .how-step-media img {
    height: 100%;
  }

  .site-footer {
    padding: 2.7rem 1rem 1.4rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.1rem;
  }

  .footer-menu {
    gap: 0.95rem;
  }

  .footer-policy-row {
    gap: 0.7rem 1rem;
    font-size: 0.92rem;
  }

  .designs-hero {
    padding-top: 3rem;
    gap: 2rem;
  }

  .designs-hero-copy p,
  .design-detail-copy p {
    overflow-wrap: break-word;
  }

  .designs-hero-image img {
    min-height: 280px;
  }

  .design-detail {
    padding-bottom: 3.4rem;
    gap: 1.55rem;
  }

  .design-detail-image {
    height: min(68vh, 520px);
    min-height: 390px;
  }

  .design-summary-grid,
  .design-photo-grid,
  .design-detail-copy {
    width: calc(100% - 2rem);
  }

  .design-photo-grid {
    gap: 0.75rem;
  }

  .design-summary-card {
    min-height: auto;
    padding: 0.95rem;
  }

  .design-detail-copy p {
    font-size: 0.98rem;
  }

  .designs-cta .button {
    width: 100%;
  }
}
