:root {
  --ink: #07192c;
  --navy: #0b2744;
  --blue: #1c4e7a;
  --steel: #3a7ca5;
  --mist: #d5e2ee;
  --frost: #dfe8f1;
  --paper: #eadfcd;
  --foam: #f3eadc;
  --wash: #ebe1d0;
  --oak: #c4a36a;
  --oak-deep: #9a7a45;
  --wa: #146c5e;
  --wa-hover: #0f574c;
  --line: rgba(11, 39, 68, 0.12);
  --shadow: 0 22px 44px rgba(7, 25, 44, 0.16);
  --display: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  --text: "Figtree", "Segoe UI", sans-serif;
  --wrap: 1180px;
  --pad: clamp(1.25rem, 4.5vw, 5.5rem);
  --head: 7.4rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--head);
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  font-family: var(--text);
  font-size: 1.06rem;
  line-height: 1.62;
  color: var(--ink);
  background: var(--foam);
}

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

#main,
.foot,
.dock {
  max-width: 100%;
}
#main { overflow-x: hidden; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--navy); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 0.7rem;
}
h1 { font-size: clamp(2.2rem, 5.2vw, 4.25rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1rem; }

.wrap {
  width: min(var(--wrap), calc(100% - (var(--pad) * 2)));
  max-width: 100%;
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--oak);
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  z-index: 80;
}
.skip:focus { top: 0.6rem; }

.kicker {
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin: 0 0 0.85rem;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 1.55rem;
  height: 2px;
  background: var(--oak);
  margin-right: 0.55rem;
  vertical-align: middle;
}

.badge {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.38rem 0.7rem;
  border: 1px solid var(--oak);
  color: var(--oak);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-shout {
  display: block;
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(2.35rem, 8.2vw, 5.1rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--oak);
  max-width: 14ch;
  text-shadow: 0 10px 28px rgba(7, 25, 44, 0.35);
}

/* Header */
.mast {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--foam);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.mast.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(7, 25, 44, 0.06);
}

.rail {
  background: var(--oak);
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  overflow-x: clip;
  max-width: 100%;
}
.rail a { color: var(--navy); }
.rail a.rail-cta { color: var(--ink); }
.rail-inner {
  display: flex;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  padding: 0.55rem 0;
  align-items: center;
  min-width: 0;
  flex-wrap: wrap;
}
.rail-cta {
  font-family: var(--display);
  font-size: clamp(0.64rem, 1.28vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 0.12rem 0;
  min-width: 0;
  line-height: 1.3;
  max-width: 52rem;
}
.rail a.rail-cta:hover,
.rail a.rail-cta:focus-visible {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.rail-right {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin: 0;
  flex-wrap: wrap;
  font-weight: 600;
}
.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--oak);
}

.bar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  min-height: 5.2rem;
  padding: 0.4rem 0;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--navy);
  min-width: 0;
}
.brand-logo {
  display: block;
  height: auto;
  width: auto;
  max-height: 4.35rem;
  max-width: min(17.5rem, 100%);
  object-fit: contain;
}

.nav > ul {
  display: flex;
  justify-content: center;
  gap: 0.1rem 0.95rem;
  flex-wrap: wrap;
  align-items: center;
}
.nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.3rem 0;
  position: relative;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--oak);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after,
.has-sub.is-current > .nav-parent::after { transform: scaleX(1); }

.has-sub {
  position: relative;
}
.has-sub > .nav-parent { padding-right: 0.9rem; }
.has-sub > .nav-parent::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--navy);
  border-bottom: 1.5px solid var(--navy);
  transform: translateY(-70%) rotate(45deg);
}
.has-sub .sub {
  position: absolute;
  top: 100%;
  left: 0;
  transform: none;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  min-width: 15.2rem;
  background: var(--wash);
  border: 1px solid var(--line);
  border-top: 2px solid var(--oak);
  box-shadow: var(--shadow);
  padding: 0.35rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 50;
}
.has-sub:hover .sub,
.has-sub:focus-within .sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.has-sub .sub li { width: 100%; }
.has-sub .sub a {
  display: block;
  width: 100%;
  padding: 0.62rem 1.05rem;
  font-size: 0.88rem;
  white-space: nowrap;
}
.has-sub .sub a::after { display: none; }
.has-sub .sub a:hover,
.has-sub .sub a:focus-visible {
  background: var(--frost);
  color: var(--navy);
}

.bar-cta { display: flex; gap: 0.45rem; align-items: center; }
.bar-cta .btn-quote {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.68rem 0.8rem;
  line-height: 1.2;
  text-align: center;
  max-width: 11.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn svg { flex-shrink: 0; }
.btn-lg { padding: 0.95rem 1.35rem; font-size: 0.88rem; }
.btn-wa {
  background: var(--wa);
  color: #fff;
}
.btn-wa:hover { background: var(--wa-hover); color: #fff; }
.btn-call {
  background: var(--navy);
  color: #fff;
}
.btn-call:hover { background: var(--blue); color: #fff; }
.btn-quote {
  background: var(--oak);
  color: var(--ink);
}
.btn-quote:hover { background: var(--oak-deep); color: #fff; }

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: var(--wash);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 90;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.text-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--oak);
  padding-bottom: 0.15rem;
}
.text-link:hover { color: var(--blue); }

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 52rem);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.hero-page {
  min-height: min(70vh, 40rem);
  align-items: end;
}
.hero-group {
  min-height: min(84vh, 46rem);
  align-items: center;
  background:
    radial-gradient(ellipse at 78% 42%, rgba(196, 163, 106, 0.16), transparent 42%),
    linear-gradient(180deg, #0b2744 0%, #07192c 100%);
}
.hero-home {
  min-height: min(92vh, 54rem);
  align-items: end;
}
.hero-trio {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3px;
  background: var(--navy);
}
.hero-quad {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.hero-trio figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.hero-trio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-trio figure:nth-child(1) img { object-position: 50% 80%; }
.hero-trio figure:nth-child(2) img { object-position: 50% 58%; }
.hero-trio figure:nth-child(3) img { object-position: 50% 42%; }
.hero-quad figure:nth-child(1) img { object-position: 50% 80%; }
.hero-quad figure:nth-child(2) img { object-position: 50% 48%; }
.hero-quad figure:nth-child(3) img { object-position: 50% 42%; }
.hero-quad figure:nth-child(4) img { object-position: 50% 58%; }
.hero-trio figcaption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  padding: 1.05rem 0.75rem 2.1rem;
  background: linear-gradient(rgba(7, 25, 44, 0.82), transparent);
  color: #fff;
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-home .hero-veil {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 25, 44, 0.88) 0%, rgba(7, 25, 44, 0.62) 28%, rgba(7, 25, 44, 0.18) 52%, rgba(7, 25, 44, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 25, 44, 0.12) 0%, transparent 36%, rgba(7, 25, 44, 0.28) 100%);
}
.hero-home .hero-inner { z-index: 2; }
.hero-home .hero-panel {
  max-width: 40rem;
  padding-top: 1.2rem;
}
.hero-giant {
  font-size: clamp(2.7rem, 8.4vw, 6.1rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 0.85rem;
  max-width: 14ch;
}
.page-home .hero-giant { max-width: 18ch; }
.page-home .hero-home .hero-panel { max-width: 44rem; }
.page-home .lede { max-width: 38rem; }
.page-flooring .hero-giant { max-width: 12ch; }
.price-line {
  font-family: var(--display);
  font-size: clamp(1.12rem, 2.2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--oak);
  margin: 0 0 0.7rem;
  line-height: 1.25;
}
.price-line.dark { color: var(--oak-deep); }
.hero-watermark {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(42%, 32rem);
  max-width: 100%;
  opacity: 0.2;
  pointer-events: none;
}
.hero-watermark img {
  width: 100%;
  height: auto;
}
.hero-photo {
  position: absolute;
  inset: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 78%;
}
.page-print .hero-photo img { object-position: 50% 42%; }
.page-print .hero-veil {
  background:
    linear-gradient(90deg, rgba(7, 25, 44, 0.84) 0%, rgba(7, 25, 44, 0.5) 34%, rgba(7, 25, 44, 0.16) 62%, transparent 84%),
    linear-gradient(180deg, rgba(7, 25, 44, 0.22) 0%, transparent 32%, rgba(7, 25, 44, 0.46) 100%);
}
.page-windows .hero-photo img { object-position: 50% 48%; }
.page-flooring .hero-photo img { object-position: 48% 78%; }
.page-blinds .hero-photo img { object-position: 50% 42%; }
.page-flooring .hero-page { min-height: min(78vh, 42rem); }
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 25, 44, 0.78) 0%, rgba(7, 25, 44, 0.38) 34%, rgba(7, 25, 44, 0.08) 62%, transparent 82%),
    linear-gradient(180deg, rgba(7, 25, 44, 0.22) 0%, transparent 32%, rgba(7, 25, 44, 0.42) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 7.5rem 0 4.5rem;
}
.hero-page .hero-inner { padding: 5.2rem 0 3.2rem; }
.hero-page h1 {
  font-size: clamp(1.55rem, 3.4vw, 2.55rem);
  max-width: 18ch;
  margin-bottom: 0.75rem;
}
.hero-group .hero-inner { padding: 5.4rem 0 4.2rem; }
.hero-panel {
  max-width: 38rem;
  padding: 2.1rem 0 0.4rem;
  border-left: 6px solid var(--oak);
  padding-left: 1.5rem;
}
.hero .kicker { color: var(--oak); }
.hero .badge { color: var(--oak); border-color: var(--oak); }
.hero h1 { color: #fff; }
.hero .price-shout { color: var(--oak); }
.lede {
  font-size: 1.14rem;
  color: var(--mist);
  max-width: 34rem;
}
.lede-caps {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.02rem, 2.05vw, 1.32rem);
  line-height: 1.4;
  color: #fff;
  max-width: 28rem;
}
.lede-caps-ink {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.4;
  color: var(--navy);
  max-width: 28rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.4rem 0 0.9rem;
}
.hero-note {
  color: var(--mist);
  font-size: 0.9rem;
  margin: 0;
}

.hero-nums {
  display: grid;
  gap: 0.15rem;
  margin: 1.45rem 0 0.4rem;
  max-width: 28rem;
}
.hero-nums a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 163, 106, 0.32);
  padding: 0.55rem 0;
}
.hero-nums a:hover { color: var(--oak); }
.hero-nums span {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oak);
}
.hero-nums strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.jump {
  background: var(--oak);
  border: 0;
  position: relative;
  z-index: 2;
}
.jump-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 2.6rem;
  padding: 1.05rem 0;
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.jump a {
  color: var(--ink);
  text-decoration: none;
}
.jump a:hover { color: var(--navy); }

/* About */
.about {
  padding: 5.8rem 0 4.4rem;
  background:
    linear-gradient(105deg, var(--frost) 0 46%, var(--foam) 46% 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 2.2rem 3.2rem;
  align-items: stretch;
}
.about-copy { padding-top: 0; }
.about-copy p { max-width: 40rem; }
.about-shout {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.1vw, 1.42rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--navy);
  max-width: 28rem;
  margin: 0 0 1.15rem;
}

.co-jump {
  margin-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.co-jump a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--navy);
}
.co-jump a:hover { color: var(--blue); }
.co-jump-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  min-width: 0;
}
.co-jump-go {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oak-deep);
  white-space: nowrap;
}

.about-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.45rem;
  min-height: 100%;
}
.about-mosaic figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.about-mosaic figure:first-child {
  grid-row: 1 / span 2;
}
.about-mosaic-four {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.about-mosaic-four figure:first-child {
  grid-row: auto;
}
.about-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 11rem;
}
.about-mosaic figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1.4rem 0.7rem 0.55rem;
  width: 100%;
  background: linear-gradient(transparent, rgba(7, 25, 44, 0.9));
  color: #fff;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-aside {
  margin-top: 0;
  background: var(--navy);
  color: var(--frost);
  padding: 2.1rem 1.8rem 2rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.8rem;
  position: relative;
  overflow: hidden;
}
.about-aside-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 24rem);
  height: auto;
  margin: 0.4rem 0 0;
}
.about-aside::before {
  content: "G";
  position: absolute;
  right: -0.4rem;
  top: -1.2rem;
  font-family: var(--display);
  font-size: 14rem;
  font-weight: 700;
  color: rgba(196, 163, 106, 0.12);
  line-height: 1;
  pointer-events: none;
}
.about-mark-copy {
  max-width: 18rem;
  color: var(--mist);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Companies / work */
.companies {
  padding: 5rem 0 4.4rem;
  background: var(--foam);
}
.sec-head { max-width: 38rem; margin-bottom: 2.4rem; }
.sec-head.light .kicker { color: var(--oak); }
.sec-head.light h2 { color: #fff; }

.work {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 0;
  margin-bottom: 1.35rem;
  background: var(--wash);
  border: 1px solid var(--line);
}
.work-flip {
  grid-template-columns: 0.82fr 1.18fr;
}
.work-flip { direction: rtl; }
.work-flip > * { direction: ltr; }
.work-shot { margin: 0; overflow: hidden; }
.work-shot img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  transition: filter 0.45s ease, transform 0.7s ease;
}
.work:hover .work-shot img {
  filter: saturate(1.06);
  transform: scale(1.03);
}
.work-body {
  padding: 2.1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.work-body-dark {
  background: var(--navy);
  color: var(--frost);
}
.work-body-dark h3 { color: #fff; }
.work-body-dark .svc-no { color: var(--oak); }
.work-body-dark .text-link { color: #fff; }
.work-phone {
  margin: 0.2rem 0 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.work-phone a { color: inherit; text-decoration: none; }
.work-phone a:hover { color: var(--oak-deep); }
.work-body-dark .work-phone a:hover { color: var(--oak); }
.work-offer {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--oak-deep);
  line-height: 1.3;
}
.work-body .btn { align-self: flex-start; margin: 0.85rem 0 0.15rem; }

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  margin: -0.55rem 0 2.4rem;
}
.thumb-row-three {
  grid-template-columns: repeat(3, 1fr);
}
.thumb-row figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.thumb-row img {
  width: 100%;
  height: 11.5rem;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.thumb-row figure:hover img { transform: scale(1.04); }
.thumb-row figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 0.65rem 0.5rem;
  background: linear-gradient(transparent, rgba(7, 25, 44, 0.92));
  color: #fff;
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.statement {
  padding: 0;
  background: var(--navy);
  color: var(--frost);
}
.statement-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  align-items: stretch;
}
.statement-shot { margin: 0; overflow: hidden; }
.statement-shot img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  object-position: 50% 70%;
}
.statement-copy {
  padding: 3.4rem 2.4rem 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.statement .kicker { color: var(--oak); }
.statement h2 { color: #fff; }
.statement p { color: var(--mist); max-width: 34rem; }
.statement .text-link { color: #fff; align-self: flex-start; }

.statement-group {
  padding: 3.2rem 0 3.8rem;
  text-align: center;
}
.statement-band {
  max-width: 48rem;
  margin: 0 auto 2rem;
}
.statement-group p { max-width: none; }
.statement-group .statement-band p:not(.kicker):not(.statement-links) {
  text-align: left;
  margin: 0.85rem auto 0;
}
.statement-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.7rem;
  margin: 1.35rem 0 0;
}
.statement-links a {
  color: #fff;
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--oak);
  padding-bottom: 0.12rem;
}
.statement-links a:hover { color: var(--oak); }
.statement-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.45rem;
}
.statement-strip-four {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.statement-strip figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.statement-strip img {
  width: 100%;
  height: 16.5rem;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.statement-strip figure:nth-child(1) img { object-position: 50% 78%; }
.statement-strip figure:nth-child(2) img { object-position: 48% 50%; }
.statement-strip figure:nth-child(3) img { object-position: 50% 38%; }
.statement-strip figure:hover img { transform: scale(1.04); }
.statement-strip figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.8rem 0.75rem 0.6rem;
  background: linear-gradient(transparent, rgba(7, 25, 44, 0.92));
  color: #fff;
  font-family: var(--display);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rooms {
  padding: 4.6rem 0 4.2rem;
  background: var(--paper);
}
.rooms-print, .rooms-windows, .rooms-blinds { background: var(--foam); }
.room-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.room-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.room-grid img {
  width: 100%;
  height: 16.5rem;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.4s ease;
}
.room-grid figure:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}
.room-wide { grid-column: span 2; }
.room-wide img { height: 22rem; }
.room-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.8rem 0.75rem 0.6rem;
  background: linear-gradient(transparent, rgba(7, 25, 44, 0.92));
  color: #fff;
  font-family: var(--display);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.svc-no {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--oak-deep);
  margin: 0 0 0.6rem;
}

/* Services on company pages */
.services {
  padding: 5rem 0 4.2rem;
  background: var(--foam);
}
.svc {
  display: grid;
  gap: 0;
  margin-bottom: 1.35rem;
  background: var(--wash);
  border: 1px solid var(--line);
}
.svc-a { grid-template-columns: 1.18fr 0.82fr; }
.svc-b { grid-template-columns: 0.78fr 1.22fr; }
.svc-shot { margin: 0; overflow: hidden; }
.svc-shot img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  object-position: 50% 50%;
  transition: object-position 0.7s ease, filter 0.45s ease;
}
.svc:hover .svc-shot img {
  filter: saturate(1.05);
}
.svc-body {
  padding: 2.1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-b .svc-body {
  background: var(--navy);
  color: var(--frost);
}
.svc-b h3 { color: #fff; }
.svc-b .svc-no { color: var(--oak); }

/* Products */
.products {
  padding: 4.6rem 0 2.6rem;
  background: var(--paper);
}
.prod-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
}
.prod-strip figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.prod-strip img {
  width: 100%;
  height: 17.5rem;
  object-fit: cover;
  transition: filter 0.4s ease, transform 0.6s ease;
}
.prod-strip figure:nth-child(2) img { object-position: 50% 50%; }
.prod-strip figure:nth-child(3) img { object-position: 50% 50%; }
.prod-strip figure:nth-child(4) img { object-position: 50% 50%; }
.prod-strip figure:nth-child(5) img { object-position: 50% 50%; }
.prod-strip figure:hover img {
  filter: brightness(1.06);
  transform: scale(1.04);
}
.prod-strip figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.7rem 0.75rem 0.7rem;
  background: linear-gradient(transparent, rgba(7, 25, 44, 0.92));
  color: #fff;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker {
  margin: 0;
  padding: 0.85rem 0;
  background: var(--navy);
  color: var(--oak);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
}
.ticker span {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 22s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* Why / USPs */
.why {
  padding: 4.8rem 0 4.2rem;
  background: var(--foam);
}
.usp-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.usp-list li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 0.9rem;
  padding: 1.25rem 0 1.15rem;
  border-bottom: 1px solid var(--line);
}
.usp-list span {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--oak-deep);
  padding-top: 0.28rem;
}
.usp-list h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.usp-list p { margin: 0; }
.small-print {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  color: var(--steel);
}

.why-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.4rem 3rem;
  align-items: start;
}
.usp-list-single {
  grid-template-columns: 1fr;
  gap: 0;
}
.close-line {
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-top: 1.4rem;
}

.clients {
  padding: 3.4rem 0 4.4rem;
  background: var(--paper);
}
.clients p { max-width: 42rem; }
.client-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}
.client-row li {
  border: 1px solid var(--line);
  background: var(--wash);
  padding: 0.55rem 0.9rem;
  font-size: 0.92rem;
}

.assure {
  background: var(--navy);
  color: var(--frost);
  padding: 1.55rem 0 1.45rem;
  border-top: 3px solid var(--oak);
}
.assure-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem 1.8rem;
}
.assure h3 {
  color: var(--oak);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.28rem;
}
.assure p {
  margin: 0;
  color: var(--mist);
  font-size: 0.9rem;
  line-height: 1.4;
}
.assure-note {
  margin: 1rem 0 0;
  color: rgba(213, 226, 238, 0.72);
}

.steps {
  padding: 4.6rem 0 4.2rem;
  background: var(--wash);
  border-top: 1px solid var(--line);
}
.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.step-row li {
  padding: 1.6rem 1.7rem 0.4rem 0;
  border-right: 1px solid var(--line);
}
.step-row li:last-child {
  border-right: 0;
  padding-right: 0;
}
.step-row span {
  display: block;
  font-family: var(--display);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oak-deep);
  margin-bottom: 0.7rem;
}
.step-row h3 {
  font-size: 1.28rem;
  margin-bottom: 0.45rem;
}
.step-row p {
  max-width: 28rem;
  margin: 0;
  color: var(--blue);
}

.readout {
  padding: 4.8rem 0 4.6rem;
  background: var(--paper);
}
.readout-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2.4rem 3.2rem;
  align-items: start;
}
.readout-copy p { max-width: 40rem; }
.readout-copy h2 { max-width: 18ch; }
.readout-shot {
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}
.readout-shot img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
}

.cta-band {
  background: var(--navy);
  color: var(--frost);
  padding: 3.4rem 0;
}
.cta-band h2 { color: #fff; }
.cta-band .kicker { color: var(--oak); }
.cta-band-inner {
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 1.6rem 2rem;
  align-items: center;
}
.cta-band .hero-actions { margin: 0; }

.offer {
  background: var(--oak);
  color: var(--ink);
  padding: 1.7rem 0 1.55rem;
  border-top: 4px solid var(--navy);
  border-bottom: 1px solid rgba(7, 25, 44, 0.12);
  text-align: center;
}
.offer-inner { max-width: 46rem; }
.offer-flag {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
  color: var(--navy);
}
.offer-headline {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3.6vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 0.45rem;
}
.offer-applies {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  font-weight: 600;
}
.offer-note {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: rgba(7, 25, 44, 0.7);
}
.offer .btn { margin-top: 0.15rem; }

/* Contact */
.contact {
  padding: 5rem 0 6.6rem;
  background: var(--frost);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.6rem;
  align-items: start;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.3rem 0 1.8rem;
}
.contact-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.4rem;
  margin: 0;
}
.contact-facts dt {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.2rem;
}
.contact-facts dd { margin: 0; font-weight: 500; }
.contact-facts a { color: var(--navy); text-decoration: none; }
.contact-facts a:hover { color: var(--blue); }

.contact-cos {
  display: grid;
  gap: 0;
  margin: 0 0 1.6rem;
  border-top: 1px solid var(--line);
}
.contact-cos article {
  display: grid;
  grid-template-columns: 11.5rem 1fr;
  gap: 0.55rem 1.2rem;
  align-items: baseline;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-cos h3 {
  font-size: 0.95rem;
  margin: 0;
}
.contact-cos p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
}
.contact-cos a { color: var(--navy); text-decoration: none; }
.contact-cos a:hover { color: var(--blue); }
.contact-cos a[href^="tel:"] { white-space: nowrap; }

.contact-logo {
  margin: 1.4rem 0 0;
  background: transparent;
  display: grid;
  place-items: center;
  min-height: 22rem;
  padding: 2.4rem 1.6rem;
}
.contact-logo img {
  width: min(100%, 34rem);
  height: auto;
}

.page-side-shot {
  margin: 1.6rem 0 0;
  position: relative;
  overflow: hidden;
}
.page-side-shot img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.page-flooring .page-side-shot img {
  height: 32rem;
  object-position: 50% 50%;
}
.page-side-shot figcaption {
  position: absolute;
  left: 0;
  bottom: 1.4rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 0.95rem;
}

.back-group { margin-top: 1.6rem; }

/* Footer */
.foot {
  background: var(--ink);
  color: var(--mist);
  padding: 3rem 0 2.2rem;
}
.foot a { color: var(--oak); }
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-name {
  font-family: var(--display);
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.foot-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oak);
  margin-bottom: 0.7rem;
}
.foot-col li { margin-bottom: 0.35rem; }
.foot-col a { color: var(--mist); text-decoration: none; }
.foot-col a:hover { color: #fff; }
.foot-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  font-size: 0.88rem;
}
.foot-base p { margin: 0; }

.dock { display: none; }

/* Privacy */
.legal {
  padding: 5.5rem 0 5rem;
  background: var(--foam);
}
.legal-inner { max-width: 46rem; }
.legal h1 { margin-bottom: 0.8rem; }
.legal-lead { font-size: 1.12rem; }
.legal-meta { color: var(--steel); font-size: 0.9rem; margin-bottom: 2rem; }
.legal h2 { margin-top: 2.1rem; font-size: 1.35rem; }
.legal ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0 0 1rem;
}
.legal li { margin-bottom: 0.35rem; }

:focus-visible {
  outline: 2px solid var(--oak);
  outline-offset: 3px;
}

@media (max-width: 1240px) {
  .mast { z-index: 90; }
  .bar-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .bar-inner > .brand {
    grid-column: 1;
    grid-row: 1;
  }
  .nav-toggle {
    display: flex;
    grid-column: 2;
    grid-row: 1;
  }
  .bar-cta { display: none; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    max-width: none;
    height: auto;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: calc(var(--head) + 0.6rem) 1.35rem 7.5rem;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 80;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav > ul {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.15rem;
    padding: 0;
    width: min(22rem, 100%);
    margin: 0 auto;
  }
  .nav > ul > li { width: 100%; }
  .nav a {
    color: #fff;
    font-family: var(--display);
    font-size: 1.4rem;
    display: block;
    padding: 0.7rem 0;
    white-space: normal;
  }
  .nav a::after { background: var(--oak); }
  body.nav-open { overflow: hidden; }
  body.nav-open .dock { visibility: hidden; pointer-events: none; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 1100px) {
  .contact-cos article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  :root { --head: 6.1rem; }
  .mast { z-index: 90; }
  .rail-right span { display: none; }
  .rail-cta { letter-spacing: 0.05em; font-size: 0.68rem; }
  .bar-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .bar-inner > .brand {
    grid-column: 1;
    grid-row: 1;
  }
  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
  }
  .brand-logo {
    height: 3.2rem;
    max-width: min(14.5rem, 100%);
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    max-width: none;
    height: auto;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: calc(var(--head) + 0.6rem) 1.35rem 7.5rem;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 80;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .nav > ul {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.15rem;
    padding: 0;
    width: min(22rem, 100%);
    margin: 0 auto;
  }
  .nav > ul > li { width: 100%; }
  .nav a {
    color: #fff;
    font-family: var(--display);
    font-size: 1.4rem;
    display: block;
    padding: 0.7rem 0;
  }
  .nav a::after { background: var(--oak); }
  .has-sub { width: 100%; }
  .has-sub > .nav-parent {
    padding-right: 0;
    color: var(--oak);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding-bottom: 0.35rem;
  }
  .has-sub > .nav-parent::before { display: none; }
  .has-sub .sub {
    position: static;
    left: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    min-width: 0;
    width: 100%;
    padding: 0 0 0.35rem;
    text-align: left;
    align-items: stretch;
    gap: 0;
  }
  .has-sub .sub a {
    color: #fff;
    font-size: 1.4rem;
    padding: 0.7rem 0;
    white-space: normal;
    width: 100%;
    letter-spacing: -0.03em;
    text-transform: none;
  }
  .bar-cta { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open { overflow: hidden; }
  body.nav-open .dock { visibility: hidden; pointer-events: none; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .about { background: var(--foam); }
  .about-aside {
    min-height: 18rem;
    margin-top: 0.2rem;
  }
  .about-mosaic,
  .thumb-row,
  .room-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid,
  .work,
  .work-flip,
  .svc-a,
  .svc-b,
  .usp-list,
  .why-split,
  .contact-grid,
  .cta-band-inner,
  .foot-grid,
  .prod-strip,
  .statement-grid,
  .readout-grid,
  .step-row,
  .assure-row {
    grid-template-columns: 1fr;
  }
  .step-row li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 1.25rem 0 1.15rem;
  }
  .step-row li:last-child { border-bottom: 0; }
  .assure-row {
    grid-template-columns: 1fr 1fr;
  }
  .about-mosaic figure:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
  }
  .room-wide { grid-column: span 2; }
  .room-wide img { height: 16.5rem; }
  .statement-copy { padding: 2.2rem 0 2.6rem; }
  .statement-shot img { min-height: 16rem; }
  .work-flip { direction: ltr; }
  .svc-b { display: flex; flex-direction: column-reverse; }
  .hero { min-height: 36rem; align-items: end; }
  .hero-home,
  .page-home .hero.hero-home {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .hero-trio {
    position: relative;
    height: 42vw;
    min-height: 11.5rem;
    max-height: 16.5rem;
  }
  .hero-quad {
    height: auto;
    min-height: 18rem;
    max-height: none;
    grid-template-columns: 1fr 1fr;
  }
  .hero-quad figure { min-height: 9.5rem; }
  .hero-quad img { height: 28vw; min-height: 9.5rem; max-height: 12.5rem; }
  .statement-strip-four {
    grid-template-columns: 1fr 1fr;
  }
  .about-mosaic-four figure:first-child {
    grid-row: auto;
    grid-column: auto;
  }
  .hero-home .hero-veil,
  .page-home .hero-home .hero-veil {
    display: none;
    height: 0;
    margin: 0;
    padding: 0;
  }
  .hero-home .hero-inner,
  .page-home .hero-home .hero-inner {
    background: var(--navy);
    margin: 0;
    padding: 0.7rem 0 1.7rem;
  }
  .page-home .hero-home .hero-panel {
    padding-top: 0.25rem;
  }
  .page-home .hero-home .kicker {
    margin-bottom: 0.4rem;
  }
  .page-home .hero-home .hero-quad {
    margin: 0;
    flex: 0 0 auto;
  }
  .thumb-row-three {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-group {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .hero-inner { padding: 5.5rem 0 2.4rem; }
  .hero-group .hero-inner { padding: 0.85rem 0 2.6rem; }
  .hero-giant { font-size: clamp(2.35rem, 11vw, 3.6rem); }
  .hero-watermark {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: min(82%, 21rem);
    margin: 1.5rem auto 0.2rem;
    opacity: 0.32;
  }
  .prod-strip img,
  .page-side-shot img { height: 16.5rem; }
  .contact-logo { margin-top: 0; min-height: 14rem; padding: 1.6rem; }
  .contact-map { margin-top: 0; }
  .dock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
  }
  .dock a {
    text-align: center;
    padding: 0.95rem 0.4rem;
    color: #fff;
    text-decoration: none;
    font-family: var(--display);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .dock-wa { background: var(--wa); }
  .dock-call { background: var(--navy); }
  .foot { padding-bottom: 6.5rem; }
}

@media (max-width: 640px) {
  .assure-row { grid-template-columns: 1fr; }
  .price-shout {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(1.85rem, 11vw, 3.4rem);
  }
  .contact-facts { grid-template-columns: 1fr; }
  .contact-cos article { grid-template-columns: 1fr; }
  .contact-cos a[href^="tel:"] { white-space: normal; }
  .foot-base { flex-direction: column; }
  .hero-panel { padding-left: 1rem; }
  .jump-row { gap: 0.35rem 1.35rem; font-size: 0.76rem; justify-content: center; }
  .statement-strip img { height: 11rem; }
  .statement-strip-four img { height: 10rem; }
  .hero .kicker { letter-spacing: 0.1em; font-size: 0.66rem; }
  .hero-nums a { grid-template-columns: 1fr; gap: 0.15rem; }
  .hero-watermark {
    width: min(88%, 18.5rem);
    margin-top: 1.15rem;
    margin-bottom: 0.1rem;
  }
  .prod-strip,
  .thumb-row,
  .room-grid,
  .about-mosaic {
    grid-template-columns: 1fr 1fr;
  }
  .prod-strip figure:last-child { grid-column: 1 / -1; }
  .room-wide { grid-column: 1 / -1; }
  .thumb-row img,
  .room-grid img { height: 10.5rem; }
  .thumb-row-three {
    grid-template-columns: repeat(3, 1fr);
  }
  .thumb-row-three img { height: 8.6rem; }
  .hero-giant { max-width: none; }
  .rail-inner { justify-content: center; }
  .rail-right { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
