:root {
  --bg: #f3f4f6;
  --bg-soft: #fcfcfd;
  --panel: rgba(255, 255, 255, 0.94);
  --glass-panel: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.86);
  --ink: #101114;
  --ink-soft: #2f343c;
  --ink-muted: #656d79;
  --line: rgba(16, 17, 20, 0.1);
  --line-strong: rgba(16, 17, 20, 0.16);
  --glass-line: rgba(255, 255, 255, 0.72);
  --accent: #ef3124;
  --accent-deep: #c81f15;
  --accent-soft: #ffd3cf;
  --shadow: 0 24px 80px rgba(16, 17, 20, 0.12);
  --shadow-tight: 0 18px 44px rgba(16, 17, 20, 0.1);
  --focus-ring: 0 0 0 4px rgba(239, 49, 36, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
  --transition: 220ms ease;
  --type-display: clamp(3.35rem, 5.2vw, 4.95rem);
  --type-headline: clamp(2.2rem, 4vw, 3.35rem);
  --type-title-large: clamp(1.35rem, 1.8vw, 1.75rem);
  --type-title-medium: 1.18rem;
  --type-body-large: 1.08rem;
  --type-body-medium: 1rem;
  --type-body-small: 0.92rem;
  --type-label-large: 0.96rem;
  --type-label-medium: 0.84rem;
  --type-label-small: 0.74rem;
  --leading-display: 0.94;
  --leading-headline: 1.02;
  --leading-title: 1.2;
  --leading-body: 1.65;
  --tracking-tight: -0.04em;
  --tracking-label: 0.18em;
  --measure-body: 38rem;
  --measure-supporting: 34rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: #ffffff;
  scroll-padding-top: 72px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0f1218;
  --bg-soft: #161b24;
  --panel: rgba(20, 24, 32, 0.92);
  --ink: #f3f6fb;
  --ink-soft: #d4dbe6;
  --ink-muted: #97a1b3;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent-soft: #ffc9c3;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --shadow-tight: 0 18px 44px rgba(0, 0, 0, 0.28);
}

body {
  margin: 0;
  font-family: "Archivo", sans-serif;
  font-size: var(--type-body-medium);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(239, 49, 36, 0.055), transparent 28%, rgba(116, 91, 68, 0.045) 68%, transparent),
    linear-gradient(180deg, #ffffff 0%, #f7f4f1 45%, #eef2f5 100%);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.material-modal-open {
  overflow: hidden;
}

body.menu-open::before {
  content: "";
  position: fixed;
  inset: 72px 0 0;
  z-index: 19;
  background: rgba(16, 17, 20, 0.18);
}

@supports ((-webkit-backdrop-filter: blur(18px)) or (backdrop-filter: blur(18px))) {
  body.menu-open::before {
    background: rgba(255, 255, 255, 0.32);
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
    backdrop-filter: blur(14px) saturate(1.12);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.proof-lane-window:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

.responsive-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--placeholder, #e8e5e1);
}

.responsive-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 42%),
    var(--placeholder, #e8e5e1);
  filter: blur(18px);
  transform: scale(1.06);
  transition: opacity 320ms ease;
  pointer-events: none;
  z-index: 0;
}

.responsive-media.is-loaded::before {
  opacity: 0;
}

.responsive-media img {
  position: relative;
  z-index: 1;
}

p,
h1,
h2,
h3,
h4,
ul,
dl,
dd,
dt,
figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-shell {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 17, 20, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 20, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 55%);
  opacity: 0.45;
}

.announcement-bar {
  display: none;
}

.announcement-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement-inner a {
  font-weight: 700;
  color: #ffffff;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(16, 17, 20, 0.06);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

@supports ((-webkit-backdrop-filter: blur(18px)) or (backdrop-filter: blur(18px))) {
  .site-header {
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    backdrop-filter: blur(18px) saturate(1.12);
  }
}

main {
  padding-top: 92px;
}

.site-header.header-scrolled {
  border-color: rgba(16, 17, 20, 0.1);
  box-shadow: 0 14px 42px rgba(16, 17, 20, 0.11);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  min-height: 72px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex: 0 0 auto;
  min-height: 0;
  padding: 2px 0;
}

.brand-media {
  flex: 0 0 auto;
  background: transparent;
}

.brand-media::before {
  display: none;
}

.brand-logo {
  width: clamp(190px, 15.3vw, 220px);
  max-width: min(100%, 220px);
  max-height: none;
  height: auto;
  display: block;
  margin: 0;
}

.brand-logo-footer {
  width: auto;
  max-width: min(100%, 320px);
  max-height: 62px;
  min-width: 0;
}

html[data-theme="dark"] .brand-media {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

html[data-theme="dark"] .brand-logo {
  content: url("assets/optimized/branding/logo-dark-320.png");
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.46));
}

.brand-mark {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(239, 49, 36, 0.24);
  background: linear-gradient(145deg, rgba(239, 49, 36, 0.08), rgba(255, 255, 255, 0.98));
  color: var(--accent-deep);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  gap: 4px;
  line-height: 1;
}

.brand-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.brand-name {
  font-family: "Oswald", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 48px;
}

.nav-link {
  position: relative;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
}

.nav-dropdown-summary::marker,
.nav-dropdown-summary::-webkit-details-marker {
  display: none;
  content: "";
}

.nav-dropdown-arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--transition);
}

.nav-dropdown[open] .nav-dropdown-arrow {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 40;
  width: 236px;
  padding: 10px;
  border: 1px solid rgba(16, 17, 20, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 56px rgba(16, 17, 20, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity var(--transition), transform var(--transition);
}

@supports ((-webkit-backdrop-filter: blur(18px)) or (backdrop-filter: blur(18px))) {
  .nav-dropdown-menu {
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    backdrop-filter: blur(18px) saturate(1.12);
  }
}

.nav-dropdown[open] .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--accent-deep);
  background: rgba(239, 49, 36, 0.08);
  outline: none;
}

html[data-theme="dark"] .nav-dropdown-menu {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(17, 21, 29, 0.96);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .nav-dropdown-menu a {
  color: #f3f6fb;
}

html[data-theme="dark"] .nav-dropdown-menu a:hover,
html[data-theme="dark"] .nav-dropdown-menu a:focus-visible {
  color: #ff8a80;
  background: rgba(239, 49, 36, 0.16);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 10px;
}

.header-button {
  min-height: 0;
  padding: 18px 34px;
  font-size: var(--type-label-large);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.theme-toggle:hover {
  transform: translateY(-1px);
}

.theme-toggle-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #111111 100%);
  box-shadow: 0 0 0 4px rgba(239, 49, 36, 0.12);
}

.theme-toggle-label {
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: var(--type-label-medium);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.button-primary {
  background: var(--accent);
  color: #fff8f3;
  box-shadow:
    0 18px 32px rgba(239, 49, 36, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.button-primary:hover {
  background: var(--accent-deep);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(16, 17, 20, 0.1);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 12px 30px rgba(16, 17, 20, 0.06);
}

.button-secondary:hover {
  background: #ffffff;
  border-color: rgba(16, 17, 20, 0.16);
}

.button-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button-ghost:hover {
  background: rgba(239, 49, 36, 0.06);
}

.button-light {
  background: #ffffff;
  color: var(--ink);
}

.button-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.66);
}

.button-large {
  padding: 16px 28px;
  font-size: var(--type-label-large);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 14px 30px rgba(16, 17, 20, 0.08);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-label {
  display: inline-block;
  margin-bottom: 16px;
  font-size: var(--type-label-small);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--accent);
}

.section-label-light {
  color: var(--accent-soft);
}

.hero-section {
  position: relative;
  padding: clamp(34px, 5vw, 64px) 0 clamp(24px, 4vw, 44px);
  min-height: min(820px, calc(100vh - 72px));
  display: flex;
  flex-direction: column;
}

.hero-section .container {
  width: min(var(--container), calc(100% - 48px));
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(239, 49, 36, 0.1), transparent 26%),
    linear-gradient(300deg, rgba(116, 91, 68, 0.08), transparent 32%),
    repeating-linear-gradient(90deg, rgba(16, 17, 20, 0.025) 0 1px, transparent 1px 84px);
  opacity: 0.82;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: center;
  flex: 1;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 0;
  margin-top: 0;
  max-width: 42rem;
}

.hero-copy h1,
.section-heading h2,
.showroom-copy h2,
.contact-panel h2,
.estimate-layout h2 {
  font-family: "Archivo", sans-serif;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-headline);
  font-weight: 800;
}

.hero-copy h1 {
  font-size: clamp(3rem, 4.4vw, 4.35rem);
  max-width: 14.6ch;
  letter-spacing: -0.046em;
  line-height: 0.96;
}

.hero-headline-line {
  white-space: nowrap;
}

.hero-intro {
  margin-bottom: 16px;
  max-width: 40ch;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink-muted);
}

.hero-lead {
  max-width: 35rem;
  margin: 22px 0 24px;
  font-size: clamp(1.04rem, 1.15vw, 1.16rem);
  line-height: 1.7;
  color: var(--ink-soft);
}

.hero-lead-mobile,
.hero-mobile-service-line {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: var(--type-body-small);
  font-weight: 700;
  line-height: 1.35;
}

.hero-trust-line span {
  color: #f5b301;
  letter-spacing: 0.04em;
  line-height: 1;
}

.hero-trust-line strong {
  color: var(--ink);
  font-weight: 800;
}

.hero-trust-line em,
.hero-trust-line small {
  color: var(--ink-soft);
  font: inherit;
}

.hero-trust-line em::before {
  content: "·";
  margin-right: 10px;
  color: rgba(16, 17, 20, 0.34);
  font-weight: 800;
}

.hero-trust-line small {
  flex-basis: 100%;
}

.hero-hours-card {
  max-width: 360px;
  margin-top: 20px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 17, 20, 0.12);
}

.hero-facts div {
  flex: 1 1 150px;
  min-width: 0;
  padding: 0 18px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-facts div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(16, 17, 20, 0.12);
}

.hero-facts dt {
  margin-bottom: 6px;
  font-size: var(--type-label-small);
  letter-spacing: var(--tracking-label);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero-facts dd {
  font-size: var(--type-body-small);
  font-weight: 700;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  height: 100%;
  padding: 0;
  margin-right: calc((100vw - min(var(--container), 100% - 48px)) / -3.4);
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.hero-benefits li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-benefits strong {
  font-size: var(--type-label-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-benefits span {
  font-size: var(--type-body-medium);
  color: var(--ink-soft);
  max-width: 38ch;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 42px 18px 18px 42px;
  overflow: hidden;
  background: #e8e5e1;
  box-shadow:
    0 34px 90px rgba(16, 17, 20, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 17, 20, 0.02), rgba(16, 17, 20, 0.08));
  z-index: 2;
  pointer-events: none;
}

.hero-slideshow > .responsive-media {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  z-index: 1;
}

.hero-slideshow > .responsive-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: none;
  transform-origin: center center;
}

.hero-slideshow > .responsive-media:first-child img {
  object-position: 66% 48%;
}

.hero-slideshow > .responsive-media.active {
  opacity: 1;
  z-index: 2;
}

.section {
  position: relative;
  padding: 72px 0;
}

.section[id] {
  scroll-margin-top: 72px;
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(239, 49, 36, 0.14), transparent 34%),
    linear-gradient(180deg, #101114 0%, #1d2027 100%);
  color: #f8f1ea;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 32px;
}

.section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 42px;
  align-items: start;
}

.section-heading h2,
.showroom-copy h2,
.contact-panel h2,
.estimate-layout h2 {
  font-size: var(--type-headline);
  margin-bottom: 14px;
}

.section-heading p,
.showroom-copy > p,
.contact-panel > p,
.visit-card p,
.gallery-caption p,
.trust-card p {
  color: var(--ink-soft);
  font-size: var(--type-body-large);
  line-height: 1.68;
  max-width: var(--measure-supporting);
}

.showroom-copy,
.contact-panel > p,
.section-heading > p,
.section-heading-split > p {
  max-width: 32rem;
}

.section-dark .section-heading p,
.section-dark .timeline p {
  color: rgba(248, 241, 234, 0.74);
}

.materials-section {
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 48px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 246, 243, 0.76)),
    linear-gradient(90deg, rgba(239, 49, 36, 0.035), transparent 24%, rgba(116, 91, 68, 0.035) 78%, transparent);
}

.materials-bento-wall {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(12px, 1.8vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: clamp(28px, 3.5vw, 46px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(255, 247, 239, 0.44)),
    linear-gradient(90deg, rgba(239, 49, 36, 0.08), transparent 36%, rgba(116, 91, 68, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 28px 80px rgba(53, 39, 27, 0.12);
}

@supports ((-webkit-backdrop-filter: blur(22px)) or (backdrop-filter: blur(22px))) {
  .materials-bento-wall,
  .material-bento-copy,
  .material-modal-dialog,
  .material-modal-close,
  .material-modal-stage,
  .material-modal-thumb,
  .showroom-proof-strip,
  .contact-panel,
  .visit-card,
  .review-card {
    -webkit-backdrop-filter: blur(22px) saturate(1.24);
    backdrop-filter: blur(22px) saturate(1.24);
  }
}

.materials-bento-wall::before,
.materials-bento-wall::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}

.materials-bento-wall::before {
  inset: -22% auto auto -12%;
  width: 44%;
  height: 44%;
  background: rgba(239, 49, 36, 0.12);
  filter: blur(48px);
}

.materials-bento-wall::after {
  right: -12%;
  bottom: -24%;
  width: 48%;
  height: 48%;
  background: rgba(156, 116, 78, 0.16);
  filter: blur(56px);
}

.materials-bento-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(192px, 1fr);
  gap: clamp(10px, 1.3vw, 16px);
}

.material-bento-tile {
  position: relative;
  appearance: none;
  isolation: isolate;
  display: block;
  overflow: hidden;
  min-height: 192px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: clamp(20px, 2.1vw, 30px);
  background: rgba(36, 30, 25, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 18px 44px rgba(38, 30, 23, 0.12);
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.material-bento-tile-featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: clamp(390px, 36vw, 492px);
}

.material-bento-tile .responsive-media,
.material-bento-tile img {
  width: 100%;
  height: 100%;
}

.material-bento-tile img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 700ms ease;
}

.material-bento-tile-featured img {
  object-position: center;
}

.material-bento-tile-vinyl img {
  object-position: center 58%;
}

.material-bento-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0.24), transparent 38%, rgba(16, 17, 20, 0.16) 100%),
    linear-gradient(90deg, rgba(16, 17, 20, 0.2), transparent 48%);
  pointer-events: none;
}

.material-bento-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.2), transparent 28%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.22), transparent 26%);
  opacity: 0.72;
  pointer-events: none;
}

.material-bento-copy {
  position: absolute;
  top: clamp(10px, 1.2vw, 15px);
  left: clamp(10px, 1.2vw, 15px);
  z-index: 3;
  display: grid;
  width: min(72%, 260px);
  gap: 4px;
  padding: clamp(8px, 1vw, 12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: clamp(12px, 1.2vw, 16px);
  background:
    linear-gradient(145deg, rgba(20, 18, 16, 0.42), rgba(20, 18, 16, 0.22)),
    rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 12px 30px rgba(0, 0, 0, 0.16);
}

.material-bento-copy .material-card-label {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
}

.material-bento-copy strong {
  color: #ffffff;
  font-size: clamp(1.02rem, 1.55vw, 1.48rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.material-bento-description {
  display: none;
  max-width: 24rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--type-body-small);
  font-weight: 700;
  line-height: 1.35;
}

.material-bento-action {
  width: max-content;
  margin-top: 3px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}

.material-bento-tile:hover,
.material-bento-tile:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(239, 49, 36, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 22px 54px rgba(38, 30, 23, 0.18),
    0 0 0 4px rgba(239, 49, 36, 0.12);
}

.material-bento-tile:hover img,
.material-bento-tile:focus-visible img {
  transform: scale(1.035);
}

.material-card-label {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: var(--type-label-small);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.materials-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(101, 78, 58, 0.16);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
}

.materials-footer p {
  font-size: var(--type-title-medium);
  font-weight: 700;
  line-height: var(--leading-title);
}

@media (min-width: 1181px) and (max-height: 980px) {
  .materials-section {
    padding-top: 32px;
    padding-bottom: 36px;
  }

  .materials-section .section-heading {
    margin-bottom: 24px;
  }

  .materials-bento-wall {
    padding: 12px;
    border-radius: 34px;
  }

  .materials-bento-grid {
    grid-auto-rows: minmax(172px, auto);
    gap: 12px;
  }

  .material-bento-tile {
    min-height: 172px;
  }

  .material-bento-tile-featured {
    min-height: clamp(344px, 32vw, 428px);
  }

  .material-bento-copy {
    width: min(68%, 220px);
    padding: 9px 10px;
  }

  .materials-footer {
    padding-top: 16px;
    gap: 12px;
  }
}

@media (min-width: 1181px) and (max-height: 860px) {
  .materials-section {
    padding-top: 24px;
    padding-bottom: 28px;
  }

  .materials-section .section-heading {
    margin-bottom: 18px;
  }

  .materials-bento-wall {
    padding: 10px;
    border-radius: 30px;
  }

  .materials-bento-grid {
    grid-auto-rows: minmax(156px, auto);
    gap: 10px;
  }

  .material-bento-tile {
    min-height: 156px;
    border-radius: 22px;
  }

  .material-bento-tile-featured {
    min-height: clamp(312px, 28vw, 372px);
  }

  .material-bento-copy {
    top: 8px;
    left: 8px;
    width: min(66%, 190px);
    padding: 8px 9px;
    gap: 3px;
  }

  .material-bento-copy strong {
    font-size: clamp(0.98rem, 1.15vw, 1.24rem);
  }

  .material-bento-action {
    margin-top: 1px;
  }

  .materials-footer {
    padding-top: 14px;
  }
}

.material-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 36px);
}

.material-modal[hidden] {
  display: none;
}

.material-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 10%, rgba(239, 49, 36, 0.2), transparent 34%),
    radial-gradient(circle at 78% 86%, rgba(136, 96, 62, 0.24), transparent 38%),
    rgba(6, 7, 9, 0.64);
}

@supports ((-webkit-backdrop-filter: blur(16px)) or (backdrop-filter: blur(16px))) {
  .material-modal-backdrop {
    -webkit-backdrop-filter: blur(18px) saturate(1.16);
    backdrop-filter: blur(18px) saturate(1.16);
  }
}

.material-modal-dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(860px, calc(100dvh - 32px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: clamp(26px, 3vw, 42px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 30%),
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(circle at 92% 88%, rgba(126, 82, 48, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(24, 21, 19, 0.84), rgba(12, 12, 14, 0.74));
  color: #f8f1ea;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 36px 120px rgba(0, 0, 0, 0.48);
}

.material-modal-dialog::before,
.material-modal-dialog::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.material-modal-dialog::before {
  inset: 1px 1px auto;
  height: 38%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent);
  opacity: 0.72;
}

.material-modal-dialog::after {
  right: 8%;
  bottom: -16%;
  width: 34%;
  height: 40%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(42px);
}

.material-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(248, 241, 234, 0.9);
  cursor: pointer;
  font-size: var(--type-label-small);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 12px 28px rgba(0, 0, 0, 0.22);
}

.material-modal-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
}

.material-modal-copy {
  display: grid;
  gap: 16px;
  align-content: center;
  max-width: 34rem;
  padding-right: 18px;
}

.material-modal-copy .material-card-label {
  margin-bottom: 0;
  color: rgba(255, 198, 171, 0.86);
}

.material-modal-copy h3 {
  font-size: clamp(2.3rem, 4.8vw, 5.1rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.material-modal-copy > p {
  color: rgba(248, 241, 234, 0.76);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.68;
}

.material-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  color: rgba(248, 241, 234, 0.66);
}

.material-modal-tags span {
  display: inline;
  color: currentColor;
  font-size: var(--type-label-small);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.material-modal-tags span + span::before {
  content: "/";
  display: inline-block;
  margin: 0 9px;
  color: rgba(248, 241, 234, 0.34);
  font-weight: 700;
}

.material-modal-gallery {
  min-width: 0;
}

.material-modal-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(20px, 2.4vw, 30px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(8, 9, 11, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 22px 56px rgba(0, 0, 0, 0.26);
}

.material-modal-stage .responsive-media,
.material-modal-stage img {
  width: 100%;
  height: 100%;
}

.material-modal-stage img {
  padding: clamp(8px, 1vw, 14px);
  object-fit: contain;
  object-position: center;
}

.material-modal-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(78px, 100px);
  gap: 10px;
  margin-top: 14px;
  padding-bottom: 5px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.material-modal-thumbs.is-single-image {
  display: none;
}

.material-modal-thumb {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  opacity: 0.74;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.material-modal-thumb:hover,
.material-modal-thumb:focus-visible,
.material-modal-thumb.is-active {
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(255, 188, 158, 0.64);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.material-modal-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  object-fit: cover;
}

.process-heading {
  max-width: 680px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  padding: 24px 22px;
  border-radius: 24px;
  background: rgba(255, 249, 243, 0.05);
  border: 1px solid rgba(255, 244, 237, 0.08);
}

.timeline span {
  display: inline-block;
  margin-bottom: 14px;
  font-size: var(--type-label-small);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.timeline h3 {
  font-size: var(--type-title-medium);
  margin-bottom: 8px;
  line-height: var(--leading-title);
  letter-spacing: -0.01em;
}

.timeline p {
  font-size: var(--type-body-medium);
  line-height: 1.6;
}

.showroom-section {
  background:
    radial-gradient(circle at top left, rgba(239, 49, 36, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 246, 248, 0.96));
}

.showroom-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: start;
}

.showroom-copy > p {
  margin-bottom: 16px;
  font-size: var(--type-body-large);
  line-height: 1.64;
  color: var(--ink-soft);
  max-width: 42rem;
}

.showroom-copy > p:first-of-type {
  font-size: clamp(1.08rem, 1.3vw, 1.18rem);
  font-weight: 600;
  color: var(--ink);
}

.showroom-copy > p:last-of-type {
  margin-bottom: 0;
}

.showroom-signature {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 2px solid var(--accent);
  font-size: var(--type-body-medium);
  font-weight: 700;
  font-style: italic;
  color: var(--ink);
}

.showroom-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  padding: 10px;
  border: 1px solid rgba(16, 17, 20, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 241, 0.5)),
    linear-gradient(90deg, rgba(239, 49, 36, 0.06), transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 42px rgba(16, 17, 20, 0.08);
}

.showroom-proof-strip div {
  min-width: 0;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
}

.showroom-proof-strip span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: var(--type-label-small);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.showroom-proof-strip strong {
  display: block;
  color: var(--ink);
  font-size: var(--type-body-small);
  line-height: 1.35;
}

.showroom-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.showroom-photo-grid figure {
  overflow: hidden;
  border-radius: 22px;
  box-shadow:
    0 18px 44px rgba(16, 17, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.showroom-photo-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  min-height: 200px;
  transform: scale(1.01);
  transition: transform 700ms ease, object-position 700ms ease;
}

.showroom-photo-grid figure .responsive-media {
  height: 100%;
}

.showroom-photo-grid figure:hover img {
  transform: scale(1.02) translateX(-1.5%);
}

.showroom-photo-grid figure:first-child {
  grid-column: span 2;
  min-height: 340px;
}

.showroom-photo-grid figure:first-child img {
  object-position: center 42%;
}

.showroom-photo-grid figure:nth-child(2) img {
  object-position: 30% center;
}

.showroom-photo-grid figure:nth-child(2):hover img {
  transform: scale(1.015) translateX(-3%);
}

.showroom-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: var(--type-title-medium);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.showroom-points span {
  color: var(--ink-soft);
  font-size: var(--type-body-small);
  line-height: 1.6;
}

.showroom-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.showroom-photo {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-tight);
}

.showroom-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showroom-photo-large {
  grid-row: span 2;
  min-height: 620px;
}

.showroom-photo-small {
  min-height: 220px;
}

.showroom-photo-vertical {
  min-height: 382px;
}

.proof-section {
  background:
    radial-gradient(circle at top right, rgba(239, 49, 36, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
}

.reviews-section .section-heading {
  display: block;
  max-width: 760px;
  margin-bottom: 22px;
}

.reviews-section .section-heading > p:last-child {
  max-width: 39rem;
  margin-top: 6px;
}

.proof-showcase {
  display: grid;
  gap: clamp(26px, 3vw, 38px);
  margin-top: clamp(26px, 4vw, 44px);
}

.proof-showcase.is-pending {
  min-height: 520px;
}

.proof-lane {
  display: grid;
  grid-template-columns: minmax(170px, 0.2fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  padding-top: clamp(18px, 2vw, 28px);
  border-top: 1px solid rgba(16, 17, 20, 0.1);
}

.proof-lane:first-child {
  padding-top: 0;
  border-top: 0;
}

.proof-lane-head {
  display: grid;
  align-content: center;
  gap: 8px;
  min-width: 0;
  color: var(--ink);
}

.proof-lane-head p {
  display: block;
  color: var(--accent-deep);
  font-size: var(--type-label-small);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.proof-lane-head h3 {
  font-size: clamp(1.08rem, 1.35vw, 1.45rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.proof-lane-window {
  overflow: hidden;
  min-width: 0;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.proof-lane-window:focus-visible {
  outline-offset: 5px;
}

.proof-track {
  display: flex;
  width: max-content;
  gap: 14px;
  will-change: transform;
  animation: proof-scroll-left var(--lane-duration, 48s) linear infinite;
}

.proof-lane[data-direction="right"] .proof-track {
  animation-name: proof-scroll-right;
}

.proof-lane:hover .proof-track,
.proof-lane:focus-within .proof-track {
  animation-play-state: paused;
}

.proof-set {
  display: flex;
  gap: 14px;
}

.proof-card {
  width: clamp(156px, 15vw, 210px);
  aspect-ratio: 3 / 4;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 18px;
  background: var(--bg-soft);
  box-shadow: 0 14px 32px rgba(16, 17, 20, 0.12);
}

.proof-card .responsive-media {
  width: 100%;
  height: 100%;
}

.proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.proof-card:hover img,
.proof-card:focus-within img {
  transform: scale(1.04);
}

.proof-track-skeleton {
  display: flex;
  gap: 14px;
}

.proof-card-skeleton {
  width: clamp(156px, 15vw, 210px);
  aspect-ratio: 3 / 4;
  flex: 0 0 auto;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.42)),
    #d7dbdf;
  background-size: 220% 100%;
  animation: shimmer 1.6s linear infinite;
}

@keyframes shimmer {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -20% 0;
  }
}

@keyframes proof-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes proof-scroll-right {
  from {
    transform: translateX(calc(-50% - 8px));
  }

  to {
    transform: translateX(0);
  }
}

.google-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  margin-top: 46px;
  margin-bottom: 20px;
  padding: 0 4px;
}

.google-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: var(--type-title-medium);
  letter-spacing: -0.01em;
}

.google-link {
  font-size: 14px;
  font-weight: 600;
  color: #4285F4;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.google-link:hover {
  border-color: #4285F4;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  background: rgba(255, 255, 255, 0.94);
  padding: 26px;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(16, 17, 20, 0.09);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-stars {
  color: #FBBC05;
  font-size: 18px;
  display: flex;
  gap: 2px;
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
  font-style: italic;
}

.review-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.review-date {
  font-weight: 400;
  color: #9ca3af;
  font-size: 12px;
}

.review-summary-card {
  background:
    radial-gradient(circle at top left, rgba(239, 49, 36, 0.12), transparent 42%),
    linear-gradient(145deg, #111111, #23262d);
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  color: #fff8f3;
}

.summary-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.summary-rating {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.summary-count {
  font-size: 14px;
  color: rgba(255, 248, 243, 0.76);
  margin-bottom: 24px;
}

.review-summary-card .button,
.review-summary-card .btn {
  background: #ffffff;
  color: #111111;
  border-color: rgba(255, 255, 255, 0.2);
}

.review-fallback-note {
  margin-top: -6px;
  color: rgba(255, 248, 243, 0.72);
  font-size: var(--type-body-small);
  line-height: 1.5;
}

.estimate-band {
  scroll-margin-top: 96px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.06), transparent 22%),
    linear-gradient(135deg, #111111 0%, #23262d 54%, #76231f 100%);
  color: #fff7f0;
}

.estimate-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 48px 0;
}

.estimate-layout h2 {
  max-width: 13ch;
}

.estimate-layout > div:first-child {
  max-width: 34rem;
}

.estimate-layout .section-label {
  margin-bottom: 12px;
}

.estimate-layout > div:first-child > p:last-child {
  color: rgba(255, 247, 240, 0.78);
  font-size: var(--type-body-large);
  line-height: 1.62;
  max-width: 28rem;
}

.estimate-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.contact-section {
  padding: 68px 0 80px;
  background:
    radial-gradient(circle at bottom right, rgba(239, 49, 36, 0.08), transparent 28%),
    linear-gradient(180deg, #f8f9fb 0%, #eff2f5 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: start;
}

.contact-panel,
.hours-card,
.visit-card,
.map-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-tight);
}

.contact-panel {
  padding: 34px;
}

.hours-card {
  margin-top: 26px;
  padding: 22px 22px 18px;
  border-radius: 13px;
  background: #ffffff;
  box-shadow: var(--shadow-tight);
  overflow: hidden;
}

.hours-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.1;
}

.hours-card p {
  margin: 6px 0 16px;
  color: var(--ink-soft);
  font-weight: 700;
}

.hours-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.hours-card div {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 10px;
}

.hours-card dt,
.hours-card dd {
  margin: 0;
  line-height: 1.15;
}

.hours-card dt {
  color: var(--ink);
  font-weight: 900;
}

.hours-card dd {
  color: var(--ink-soft);
  font-weight: 700;
}

.consultation-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 18px 0 26px;
}

.consultation-strip div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(243, 244, 246, 0.92);
}

.consultation-label {
  display: block;
  margin-bottom: 8px;
  font-size: var(--type-label-small);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.consultation-strip strong,
.consultation-strip a {
  font-size: var(--type-body-small);
  line-height: 1.5;
}

.contact-address-line {
  display: block;
  color: var(--ink);
  font-size: clamp(1rem, 1.1vw, 1.12rem) !important;
  line-height: 1.25 !important;
}

.contact-address-emphasis {
  font-weight: 900;
}

.contact-address-city {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: var(--type-body-small);
  font-weight: 700;
  line-height: 1.4;
}

.contact-hours {
  display: grid;
  gap: 2px;
}

.contact-hours span {
  display: block;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-group label,
.checkbox-row {
  font-size: var(--type-label-medium);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

input,
textarea,
select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(16, 17, 20, 0.12);
  background: #ffffff;
  color: var(--ink);
  padding: 15px 16px;
  font-size: var(--type-body-medium);
  line-height: 1.5;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

input::placeholder,
textarea::placeholder {
  color: var(--ink-muted);
  font-size: var(--type-body-small);
}

textarea {
  resize: vertical;
  min-height: 144px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(239, 49, 36, 0.55);
  box-shadow: 0 0 0 4px rgba(239, 49, 36, 0.12);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  font-size: var(--type-body-small);
  line-height: 1.6;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.form-note,
.form-status {
  color: var(--ink-soft);
  font-size: var(--type-body-small);
  line-height: 1.6;
}

.form-status {
  display: none;
}

.form-status a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.form-status-pending,
.form-status-success,
.form-status-error {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid transparent;
}

.form-status-pending {
  background: rgba(16, 17, 20, 0.06);
  border-color: rgba(16, 17, 20, 0.08);
  color: var(--ink);
}

.form-status-success {
  background: rgba(32, 166, 79, 0.1);
  border-color: rgba(32, 166, 79, 0.18);
  color: var(--ink);
}

.form-status-error {
  background: rgba(239, 49, 36, 0.1);
  border-color: rgba(239, 49, 36, 0.18);
  color: var(--ink);
}

.contact-sidebar {
  display: grid;
  gap: 20px;
}

.visit-card {
  padding: 30px;
}

.visit-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.visit-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: var(--type-body-small);
  line-height: 1.6;
}

.visit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.map-card {
  position: relative;
  padding: 12px;
  overflow: hidden;
  scroll-margin-top: 96px;
}

.map-card iframe {
  display: block;
  border-radius: 24px;
}

.map-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 22px;
  color: var(--ink);
}

.map-card-link span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 17, 20, 0.12);
  box-shadow: 0 12px 30px rgba(16, 17, 20, 0.14);
  font-size: var(--type-label-small);
  font-weight: 800;
  line-height: 1;
}

.site-footer {
  background: #111111;
  color: rgba(255, 255, 255, 0.72);
  padding: 52px 0 68px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.95fr;
  gap: 32px;
}

.brand-footer {
  margin-bottom: 16px;
}

.site-footer .brand-media,
html[data-theme="dark"] .site-footer .brand-media {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-footer .brand-logo-footer {
  display: block;
  width: auto;
  max-width: min(100%, 260px);
  max-height: 72px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.42));
}

.site-footer .brand-footer {
  width: fit-content;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-note {
  max-width: 34rem;
  font-size: var(--type-body-medium);
  line-height: 1.7;
}

.site-footer h4 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: var(--type-title-medium);
  line-height: var(--leading-title);
  letter-spacing: -0.01em;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 8px;
  font-size: var(--type-body-small);
  line-height: 1.6;
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(239, 49, 36, 0.14) 0%, transparent 24%),
    linear-gradient(180deg, #0c0f14 0%, #151923 100%);
}

html[data-theme="dark"] .site-shell {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

html[data-theme="dark"] .site-header {
  background: rgba(11, 14, 20, 0.84);
}

html[data-theme="dark"] .site-header.header-scrolled {
  background: rgba(11, 14, 20, 0.94);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

html[data-theme="dark"] .hero-facts div,
html[data-theme="dark"] .materials-bento-wall,
html[data-theme="dark"] .showroom-proof-strip,
html[data-theme="dark"] .showroom-points div,
html[data-theme="dark"] .proof-card,
html[data-theme="dark"] .trust-card,
html[data-theme="dark"] .contact-panel,
html[data-theme="dark"] .hours-card,
html[data-theme="dark"] .visit-card,
html[data-theme="dark"] .map-card,
html[data-theme="dark"] .consultation-strip div,
html[data-theme="dark"] .theme-toggle {
  background: rgba(20, 24, 32, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .brand-mark,
html[data-theme="dark"] .hero-badges span,
html[data-theme="dark"] .hero-intro {
  color: #f3f6fb;
}

html[data-theme="dark"] .brand-mark {
  color: #ffffff;
  background: linear-gradient(145deg, rgba(239, 49, 36, 0.24), rgba(22, 27, 36, 0.98));
}

html[data-theme="dark"] .button-secondary,
html[data-theme="dark"] .button-ghost,
html[data-theme="dark"] .button-light {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

html[data-theme="dark"] .button-secondary:hover,
html[data-theme="dark"] .button-ghost:hover,
html[data-theme="dark"] .button-light:hover,
html[data-theme="dark"] .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}

html[data-theme="dark"] .menu-toggle {
  background: rgba(20, 24, 32, 0.96);
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .menu-toggle span {
  background: #ffffff;
}

html[data-theme="dark"] .section-dark {
  background:
    radial-gradient(circle at top left, rgba(239, 49, 36, 0.18), transparent 34%),
    linear-gradient(180deg, #0d1016 0%, #171c25 100%);
}

html[data-theme="dark"] .materials-section,
html[data-theme="dark"] .showroom-section,
html[data-theme="dark"] .proof-section,
html[data-theme="dark"] .contact-section {
  background:
    radial-gradient(circle at top left, rgba(239, 49, 36, 0.1), transparent 28%),
    linear-gradient(180deg, #10141c 0%, #171c25 100%);
}

html[data-theme="dark"] .section-heading p,
html[data-theme="dark"] .showroom-copy > p,
html[data-theme="dark"] .contact-panel > p,
html[data-theme="dark"] .hours-card p,
html[data-theme="dark"] .visit-card p,
html[data-theme="dark"] .trust-card p,
html[data-theme="dark"] .showroom-points span,
html[data-theme="dark"] .materials-footer p,
html[data-theme="dark"] .form-note,
html[data-theme="dark"] .form-status {
  color: var(--ink-soft);
}

html[data-theme="dark"] .estimate-band {
  background: linear-gradient(135deg, #090b0f 0%, #171c25 55%, #ef3124 150%);
}

html[data-theme="dark"] .estimate-layout > div:first-child > p:last-child {
  color: rgba(243, 246, 251, 0.76);
}

html[data-theme="dark"] input,
html[data-theme="dark"] textarea,
html[data-theme="dark"] select {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
  color: #97a1b3;
}

html[data-theme="dark"] .map-card iframe {
  filter: saturate(0.9) contrast(0.96) brightness(0.86);
}

html[data-theme="dark"] .form-status-pending {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .form-status-success {
  background: rgba(32, 166, 79, 0.16);
  border-color: rgba(74, 222, 128, 0.18);
}

html[data-theme="dark"] .form-status-error {
  background: rgba(239, 49, 36, 0.16);
  border-color: rgba(255, 201, 195, 0.16);
}

@media (max-width: 1180px) {
  .hero-grid,
  .showroom-layout,
  .contact-layout,
  .footer-layout,
  .section-heading-split {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 16px 0 0;
    margin-right: 0;
  }

  .hero-slideshow {
    min-height: clamp(420px, 58vw, 620px);
    border-radius: 30px;
  }

  .hero-copy {
    padding-top: 12px;
    max-width: 42rem;
  }

  .timeline,
  .showroom-points,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .estimate-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .estimate-actions {
    justify-content: flex-start;
  }

  .proof-lane {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .materials-bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(210px, auto);
  }

  .material-bento-tile-featured {
    grid-column: span 2;
    grid-row: span 1;
    min-height: clamp(320px, 52vw, 500px);
  }

  .material-modal-layout {
    grid-template-columns: 1fr;
  }

  .material-modal-copy {
    max-width: 42rem;
    padding-right: 52px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-lane-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 22px;
  }

}

@media (max-width: 920px) {
  :root {
    --type-display: clamp(2.8rem, 7.5vw, 3.8rem);
    --type-headline: clamp(2.05rem, 5.4vw, 2.85rem);
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand-logo {
    width: 188px;
    max-width: min(100%, 188px);
    max-height: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    z-index: 32;
    display: grid;
    gap: 0;
    margin-left: 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    border: 1px solid rgba(16, 17, 20, 0.1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      0 26px 70px rgba(16, 17, 20, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition);
  }

  @supports ((-webkit-backdrop-filter: blur(22px)) or (backdrop-filter: blur(22px))) {
    .site-nav {
      -webkit-backdrop-filter: blur(22px) saturate(1.22);
      backdrop-filter: blur(22px) saturate(1.22);
    }
  }

  .site-nav.nav-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  html[data-theme="dark"] .site-nav {
    background: rgba(17, 21, 29, 0.96);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 26px 70px rgba(0, 0, 0, 0.42);
  }

  html[data-theme="dark"] .nav-link {
    color: #f3f6fb;
  }

  html[data-theme="dark"] .nav-link:hover,
  html[data-theme="dark"] .nav-link:focus-visible {
    background: rgba(239, 49, 36, 0.18);
  }

  .nav-link {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-summary {
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    margin: 2px 0 8px;
    padding: 4px;
    border-radius: 14px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-dropdown[open] .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown:not([open]) .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown-menu a {
    min-height: 40px;
    padding-left: 18px;
    font-size: 0.92rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    background: rgba(239, 49, 36, 0.08);
  }

  .hero-copy h1 {
    max-width: 12.2ch;
  }

  .hero-facts,
  .consultation-strip,
  .showroom-gallery {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    gap: 0;
  }

  .showroom-photo-large,
  .showroom-photo-small,
  .showroom-photo-vertical {
    min-height: 320px;
  }

  .materials-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .showroom-photo-grid {
    grid-template-columns: 1fr;
  }

  .showroom-proof-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --type-display: clamp(2.1rem, 10vw, 2.45rem);
    --type-headline: clamp(1.7rem, 8vw, 2.1rem);
    --type-title-large: 1.25rem;
    --type-title-medium: 1.05rem;
    --type-body-large: 1rem;
    --type-body-medium: 0.96rem;
    --type-body-small: 0.88rem;
    --type-label-large: 0.9rem;
    --type-label-medium: 0.8rem;
    --type-label-small: 0.7rem;
  }

  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-inner {
    min-height: 64px;
    padding: 8px 0;
    gap: 12px;
  }

  main {
    padding-top: 80px;
  }

  body.menu-open::before {
    top: 64px;
    background: rgba(16, 17, 20, 0.12);
  }

  html[data-theme="dark"] body.menu-open::before {
    background: rgba(0, 0, 0, 0.28);
  }

  @supports ((-webkit-backdrop-filter: blur(18px)) or (backdrop-filter: blur(18px))) {
    body.menu-open::before {
      background: rgba(255, 255, 255, 0.18);
      -webkit-backdrop-filter: blur(8px) saturate(1.06);
      backdrop-filter: blur(8px) saturate(1.06);
    }

    html[data-theme="dark"] body.menu-open::before {
      background: rgba(0, 0, 0, 0.24);
    }
  }

  .brand-logo {
    width: 174px;
    max-width: min(100%, 174px);
    max-height: none;
  }

  .hero-section {
    padding: 22px 0 0;
    min-height: auto;
    max-height: none;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .hero-intro {
    max-width: 24ch;
    order: 1;
    margin-bottom: 12px;
  }

  .hero-copy h1 {
    max-width: 100%;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    order: 2;
  }

  .hero-copy {
    display: contents;
    padding-top: 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 0;
    order: 4;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-line {
    margin-top: 18px;
    font-size: 0.88rem;
    order: 6;
  }

  .hero-headline-line {
    white-space: normal;
  }

  .hero-lead {
    margin: 0 0 20px;
    order: 3;
  }

  .hero-slideshow {
    aspect-ratio: 4 / 3;
    min-height: 0;
    height: auto;
    border-radius: 24px;
  }

  .hero-slideshow > .responsive-media img {
    object-position: center 48%;
  }

  .hero-slideshow > .responsive-media:first-child img {
    object-position: center 50%;
  }

  .hero-visual {
    order: 5;
    display: none;
    padding: 0;
    min-height: auto;
    margin-right: 0;
    overflow: hidden;
    width: 100%;
  }

  .hero-hours-card {
    order: 7;
    max-width: 100%;
    margin-top: 18px;
    margin-bottom: 28px;
  }

  .section {
    padding: 60px 0;
  }

  .section-heading h2,
  .showroom-copy h2,
  .contact-panel h2,
  .estimate-layout h2 {
    margin-bottom: 10px;
  }

  .contact-panel,
  .visit-card,
  .trust-card {
    padding: 22px;
  }

  .estimate-layout {
    gap: 20px;
    padding: 40px 0;
  }

  .contact-section {
    padding: 56px 0 60px;
  }

  .hero-benefits {
    gap: 14px;
    margin-bottom: 24px;
  }

  .hero-benefits span {
    max-width: 100%;
  }

  .hero-facts {
    gap: 0;
    margin-top: 20px;
  }

  .hero-facts div {
    flex-basis: 100%;
    padding: 13px 0;
    border-radius: 0;
  }

  .hero-facts div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(16, 17, 20, 0.1);
  }

  .hero-facts dt {
    margin-bottom: 2px;
  }

  .materials-bento-wall {
    padding: 10px;
    border-radius: 28px;
  }

  .materials-bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(162px, auto);
    gap: 9px;
  }

  .material-bento-tile {
    min-height: 162px;
    border-radius: 20px;
  }

  .material-bento-tile-featured {
    grid-column: span 2;
    min-height: 282px;
  }

  .material-bento-copy {
    top: 8px;
    left: 8px;
    width: min(74%, 160px);
    padding: 8px;
    border-radius: 12px;
  }

  .material-bento-copy strong {
    font-size: clamp(0.96rem, 4.7vw, 1.18rem);
  }

  .material-bento-copy .material-card-label,
  .material-bento-action {
    font-size: 0.56rem;
  }

  .material-bento-description {
    display: none;
  }

  .material-bento-action {
    padding-bottom: 2px;
  }

  .material-modal {
    align-items: end;
    padding: 12px 10px 0;
  }

  .material-modal-dialog {
    width: 100%;
    max-height: calc(100dvh - 12px);
    border-radius: 28px 28px 0 0;
  }

  .material-modal-layout {
    gap: 18px;
    padding: 56px 14px 18px;
  }

  .material-modal-copy {
    gap: 12px;
    padding-right: 0;
  }

  .material-modal-copy h3 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .material-modal-close {
    top: 12px;
    right: 12px;
    min-height: 38px;
  }

  .material-modal-stage {
    border-radius: 20px;
  }

  .material-modal-thumbs {
    grid-auto-columns: 72px;
    gap: 8px;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }

  .review-card {
    padding: 20px;
    border-radius: 20px;
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-tight);
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .review-summary-card {
    background:
      radial-gradient(circle at top left, rgba(239, 49, 36, 0.12), transparent 42%),
      linear-gradient(145deg, #111111, #23262d);
    color: #fff8f3;
  }

  .review-summary-card p {
    color: rgba(255, 248, 243, 0.78);
  }

  .review-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .review-meta strong {
    font-size: var(--type-body-medium);
    font-weight: 700;
  }

  .review-stars {
    color: #ffb400;
    font-size: 0.9rem;
  }

  .review-card p {
    font-size: var(--type-body-small);
    line-height: 1.5;
    color: var(--ink-soft);
  }

  .review-summary-card p {
    color: rgba(255, 248, 243, 0.78);
  }

  .proof-lane-window {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  }

  .proof-card {
    width: 148px;
    border-radius: 18px;
  }

  .proof-showcase {
    padding: 0;
  }

  .proof-lane-head {
    min-height: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .proof-lane-window {
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .proof-track {
    width: auto;
  }

  .proof-set[aria-hidden="true"] {
    display: none;
  }
}

/* 2026 card-reduction pass: make the homepage feel composed as showroom/editorial sections. */
.hero-facts div {
  border-radius: 0;
  border-bottom: 0;
  background: transparent;
  box-shadow: none;
}

.hero-grid > *,
.showroom-layout > *,
.contact-layout > *,
.footer-layout > *,
.section-heading,
.hero-copy,
.hero-lead,
.hero-benefits span {
  min-width: 0;
}

.materials-section {
  padding-top: clamp(54px, 7vw, 88px);
  padding-bottom: clamp(58px, 7vw, 92px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 247, 249, 0.94)),
    linear-gradient(90deg, rgba(239, 49, 36, 0.035), transparent 28%, rgba(116, 91, 68, 0.04) 80%, transparent);
}

.materials-section .section-heading {
  max-width: 820px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.materials-bento-wall {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.materials-bento-wall::before,
.materials-bento-wall::after {
  display: none;
}

.materials-bento-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 14px;
  align-items: stretch;
}

.material-bento-tile {
  grid-column: auto;
  min-height: 260px;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 8px;
  background: #151515;
  box-shadow: none;
}

.material-bento-tile-featured {
  grid-column: auto;
  grid-row: auto;
  min-height: 260px;
}

.material-bento-tile::after {
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.68), rgba(12, 12, 12, 0.24) 46%, rgba(12, 12, 12, 0.04)),
    linear-gradient(180deg, rgba(12, 12, 12, 0.08), rgba(12, 12, 12, 0.24));
}

.material-bento-shine {
  display: none;
}

.material-bento-copy {
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  max-width: 34rem;
  gap: 6px;
  padding: clamp(18px, 2.4vw, 30px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.material-bento-tile:not(.material-bento-tile-featured) .material-bento-copy {
  max-width: 100%;
  padding: 18px 20px;
}

.material-bento-tile:not(.material-bento-tile-featured) .material-bento-copy strong {
  font-size: clamp(1.16rem, 1.55vw, 1.52rem);
}

.material-bento-tile:not(.material-bento-tile-featured) .material-bento-description {
  font-size: 0.88rem;
  line-height: 1.32;
}

.material-bento-copy .material-card-label {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.66rem;
}

.material-bento-copy strong {
  font-size: clamp(1.28rem, 2.4vw, 2.35rem);
  letter-spacing: -0.035em;
}

.material-bento-description {
  display: none;
  max-width: 26rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.material-bento-action {
  margin-top: 8px;
  border-bottom-color: rgba(255, 255, 255, 0.72);
}

.material-bento-tile:hover,
.material-bento-tile:focus-visible {
  transform: none;
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(239, 49, 36, 0.24);
}

.materials-footer {
  margin-top: clamp(22px, 3vw, 34px);
  padding: 18px 0 0;
  border-top-color: rgba(16, 17, 20, 0.14);
}

.timeline {
  gap: 0;
  border-top: 1px solid rgba(255, 244, 237, 0.2);
}

.timeline article {
  position: relative;
  padding: 28px 28px 4px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.timeline article + article {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 244, 237, 0.16);
}

.timeline span {
  margin-bottom: 18px;
}

.showroom-proof-strip {
  gap: 0;
  padding: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.showroom-proof-strip div {
  padding: 18px 18px 18px 0;
  border-radius: 0;
  background: transparent;
}

.showroom-proof-strip div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(16, 17, 20, 0.12);
}

.showroom-photo-grid {
  gap: 10px;
}

.showroom-photo-grid figure {
  border-radius: 8px;
  box-shadow: none;
}

.proof-showcase {
  gap: clamp(22px, 3vw, 34px);
}

.proof-lane {
  padding-top: clamp(16px, 2vw, 24px);
}

.proof-card,
.proof-card-skeleton {
  border-radius: 8px;
  box-shadow: none;
}

.reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 28px;
  border-top: 1px solid rgba(16, 17, 20, 0.12);
  align-items: stretch;
}

.review-card {
  min-height: 100%;
  padding: 24px 0;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(16, 17, 20, 0.1);
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.review-card:hover {
  transform: none;
}

.review-summary-card {
  grid-column: 1 / -1;
  min-height: auto;
  margin-top: 0;
  margin-bottom: 8px;
  padding: 24px 28px;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #111111 0%, #20232a 58%, #6f241f 100%);
}

.review-summary-card .summary-top {
  margin-bottom: 10px;
}

.review-summary-card .button {
  margin-top: 6px !important;
}

.review-source {
  margin-top: auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
}

.contact-section {
  background:
    linear-gradient(180deg, #f8f9fb 0%, #eef1f5 100%),
    linear-gradient(90deg, rgba(239, 49, 36, 0.04), transparent 32%);
}

.contact-panel,
.visit-card,
.map-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.contact-panel {
  padding: 0;
}

.contact-form {
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(16, 17, 20, 0.12);
}

.consultation-strip {
  gap: 0;
  padding: 20px 0 22px;
  border-top: 1px solid rgba(16, 17, 20, 0.1);
  border-bottom: 1px solid rgba(16, 17, 20, 0.1);
}

.consultation-strip div {
  padding: 0 18px 0 0;
  border-radius: 0;
  background: transparent;
}

.consultation-strip div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(16, 17, 20, 0.1);
}

.visit-card {
  padding: 0 0 26px;
  border-bottom: 1px solid rgba(16, 17, 20, 0.12);
}

.map-card {
  padding: 0;
}

.map-card iframe {
  border-radius: 8px;
}

html[data-theme="dark"] .hero-facts div,
html[data-theme="dark"] .materials-bento-wall,
html[data-theme="dark"] .showroom-proof-strip,
html[data-theme="dark"] .proof-card,
html[data-theme="dark"] .contact-panel,
html[data-theme="dark"] .visit-card,
html[data-theme="dark"] .map-card,
html[data-theme="dark"] .review-card {
  background: transparent;
  box-shadow: none;
}

html[data-theme="dark"] .reviews-grid,
html[data-theme="dark"] .review-card,
html[data-theme="dark"] .consultation-strip,
html[data-theme="dark"] .hours-card dl,
html[data-theme="dark"] .contact-form,
html[data-theme="dark"] .visit-card {
  border-color: rgba(255, 255, 255, 0.14);
}

@media (max-width: 980px) {
  .materials-bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .material-bento-tile,
  .material-bento-tile-featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 206px;
  }

  .material-bento-tile-featured {
    grid-column: auto;
    min-height: 206px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body {
    max-width: 100%;
  }

  .site-nav {
    left: 14px;
    right: 14px;
  }

  .hero-copy,
  .hero-lead,
  .hero-benefits span,
  .section-heading,
  .section-heading p {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 9.8ch;
    font-size: clamp(2.34rem, 10.5vw, 2.72rem);
    line-height: 1.02;
    overflow-wrap: normal;
  }

  .hero-lead,
  .hero-benefits span,
  .section-heading p {
    overflow-wrap: break-word;
  }

  .hero-actions .button {
    max-width: 100%;
  }

  .materials-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .materials-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
  }

  .material-bento-tile,
  .material-bento-tile-featured {
    grid-column: span 1;
    grid-row: auto;
    min-height: 218px;
  }

  .material-bento-tile-featured {
    min-height: 218px;
  }

  .material-bento-copy {
    top: auto;
    left: 0;
    bottom: 0;
    width: auto;
    max-width: 100%;
    padding: 18px;
    border-radius: 0;
  }

  .material-bento-copy strong {
    font-size: clamp(1.2rem, 8vw, 1.85rem);
  }

  .material-bento-description {
    display: block;
    font-size: 0.86rem;
  }

  .timeline {
    border-top: 0;
  }

  .timeline article,
  .timeline article + article {
    padding: 20px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 244, 237, 0.18);
  }

  .showroom-proof-strip {
    border-top: 1px solid rgba(16, 17, 20, 0.12);
    border-bottom: 1px solid rgba(16, 17, 20, 0.12);
  }

  .showroom-proof-strip div,
  .showroom-proof-strip div + div,
  .consultation-strip div,
  .consultation-strip div + div {
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid rgba(16, 17, 20, 0.1);
  }

  .showroom-proof-strip div:first-child,
  .consultation-strip div:first-child {
    border-top: 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 20px;
  }

  .review-card {
    padding: 22px 0;
  }

  .review-summary-card {
    padding: 28px 22px;
  }

  .contact-form {
    padding-top: 24px;
  }
}

/* Material image fit pass: images are the surface, not rectangles inside cards. */
.materials-bento-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: clamp(14px, 1.7vw, 20px);
}

.material-bento-tile,
.material-bento-tile-featured {
  grid-column: auto;
  grid-row: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
}

.material-bento-tile .responsive-media {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: transparent;
}

.material-bento-tile img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.material-bento-tile-vinyl img {
  object-position: center;
}

.material-bento-copy,
.material-bento-tile:not(.material-bento-tile-featured) .material-bento-copy {
  max-width: 100%;
  padding: clamp(16px, 2vw, 22px);
}

.material-bento-description {
  display: block;
  max-width: 24rem;
}

.material-modal-stage {
  border: 0;
  border-radius: clamp(18px, 2vw, 26px);
  background: transparent;
  box-shadow: none;
}

.material-modal-stage .responsive-media,
.material-modal-stage img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.material-modal-stage img {
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.material-modal-thumb {
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
}

.material-modal-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: inherit;
  object-fit: cover;
}

.material-modal-thumb.is-active,
.material-modal-thumb:hover,
.material-modal-thumb:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 188, 158, 0.78);
}

@media (max-width: 980px) {
  .materials-bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .material-bento-tile,
  .material-bento-tile-featured {
    grid-column: auto;
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .materials-bento-grid {
    grid-template-columns: 1fr;
  }
}

/* Materials thumbnails: keep each photo as a fixed, rounded surface. */
.material-bento-tile,
.material-bento-tile .responsive-media {
  overflow: hidden;
  overscroll-behavior: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: auto;
}

.material-bento-tile::-webkit-scrollbar,
.material-bento-tile .responsive-media::-webkit-scrollbar {
  display: none;
}

.material-bento-tile img {
  transform: none !important;
  transition: none;
}

.material-bento-tile:hover img,
.material-bento-tile:focus-visible img {
  transform: none !important;
}

.material-bento-tile::after {
  background: linear-gradient(180deg, rgba(16, 17, 20, 0.02), rgba(16, 17, 20, 0.16) 44%, rgba(16, 17, 20, 0.72));
}

.material-bento-description {
  display: none !important;
}

/* Match the redesign preview: the hero photos sit underneath the copy. */
.hero-section {
  position: relative;
  display: block;
  min-height: clamp(560px, 68vw, 720px);
  padding: 0;
  overflow: hidden;
  background: #2c241e;
  color: #ffffff;
}

.hero-section .container.hero-grid {
  width: min(var(--container), calc(100% - 48px));
  max-width: var(--container);
  min-height: inherit;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 630px);
  justify-content: start;
  align-items: center;
  gap: 0;
  padding: clamp(58px, 7vw, 88px) 0 clamp(76px, 8vw, 104px);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  height: auto;
  pointer-events: none;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.44) 40%, rgba(0, 0, 0, 0.14) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.46));
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.hero-slideshow {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  background: #2c241e;
  box-shadow: none;
}

.hero-slideshow::after {
  display: none;
}

.hero-slideshow > .responsive-media:first-child img,
.hero-slideshow > .responsive-media img {
  object-position: 56% 48%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  --hero-cta-stack-width: min(540px, 100%);
  width: 100%;
  max-width: 630px;
  margin: 0;
  padding: 0;
  color: #ffffff;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.32);
}

.hero-copy h1 {
  max-width: 12.5ch;
  color: #ffffff;
  letter-spacing: 0;
}

.hero-intro,
.hero-lead,
.hero-trust-line,
.hero-trust-line em {
  color: rgba(255, 255, 255, 0.88);
}

.hero-trust-line strong {
  color: #ffffff;
}

.hero-trust-line em::before {
  color: rgba(255, 255, 255, 0.48);
}

.hero-copy .hero-trust-line {
  margin: 18px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.32);
}

.hero-copy .hero-review-kicker {
  margin: 0 0 16px;
}

.hero-copy .hero-lead {
  max-width: 38rem;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.14rem, 1.4vw, 1.32rem);
  line-height: 1.52;
}

.hero-copy .hero-actions {
  width: var(--hero-cta-stack-width);
  justify-content: center;
  margin-top: 32px;
}

.hero-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hero-actions .button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.hero-hours-card {
  position: relative;
  width: var(--hero-cta-stack-width);
  max-width: none;
  margin: 38px 0 0;
  padding: 0;
  display: grid;
  justify-items: start;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  overflow: visible;
  text-align: left;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.36);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.hero-hours-card::before {
  display: none;
}

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

.hero-hours-card * {
  text-shadow: inherit;
}

.hero-hours-card .hero-info-list {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: baseline;
  gap: 10px 12px;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border-top: 0;
  border-left: 0;
}

.hero-hours-card .hero-info-row {
  display: contents;
}

.hero-info-row dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-info-row dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.42;
  text-align: left;
}

.hero-hours-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px 0;
}

.hero-hours-list span {
  white-space: nowrap;
}

.hero-hours-list span + span::before {
  content: "|";
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.44);
  font-weight: 600;
}

html[data-theme="dark"] .hero-hours-card {
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
  box-shadow: none;
}

html[data-theme="dark"] .hero-hours-card dl {
  border-top: 0;
}

@media (max-width: 700px) {
  .hero-section {
    min-height: 700px;
  }

  .hero-section .container.hero-grid {
    width: calc(100% - 44px);
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    padding: 54px 0 38px;
  }

  .hero-section::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.43) 66%, rgba(0, 0, 0, 0.14) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.48));
  }

  .hero-copy {
    display: block;
    width: 100%;
    max-width: 350px;
    min-height: 0;
    margin: 0;
    padding: 0;
  }

  .hero-copy h1 {
    max-width: 350px;
    font-size: clamp(2.22rem, 10.3vw, 3.18rem);
    line-height: 0.96;
  }

  .hero-intro {
    max-width: 260px;
    margin-bottom: 12px;
    font-size: 0.8rem;
  }

  .hero-copy .hero-lead {
    max-width: 310px;
    margin-top: 14px;
    font-size: clamp(1rem, 4.2vw, 1.12rem);
    line-height: 1.34;
    text-wrap: pretty;
  }

  .hero-lead-desktop {
    display: none;
  }

  .hero-lead-mobile {
    display: inline;
  }

  .hero-mobile-service-line {
    display: grid;
    gap: 7px;
    width: min(344px, 100%);
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.32);
  }

  .hero-mobile-service-line p {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 0;
    margin: 0;
  }

  .hero-mobile-service-line span {
    white-space: nowrap;
  }

  .hero-mobile-service-line span + span::before {
    content: "/";
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.42);
    font-weight: 700;
  }

  .hero-copy .hero-actions {
    max-width: 344px;
    gap: 8px;
    margin-top: 22px;
  }

  .hero-trust-line {
    max-width: 310px;
  }

  .hero-hours-card {
    width: min(344px, 100%);
    max-width: none;
    margin-top: 30px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    border-radius: 0;
  }

  .hero-hours-card .hero-info-list {
    gap: 8px 10px;
    margin-top: 0;
    padding: 0;
    border-left: 0;
    border-top: 0;
  }

  .hero-info-row dt {
    font-size: 0.66rem;
  }

  .hero-info-row dd {
    font-size: 0.84rem;
    line-height: 1.36;
  }

  .hero-hours-list {
    gap: 4px 14px;
  }

  .hero-hours-list span + span::before {
    display: none;
  }
}

/* Contact form sales-lead update. */
.contact-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 4vw, 54px);
}

.contact-panel > p {
  max-width: 43rem;
}

.quick-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.quick-contact-card {
  display: grid;
  gap: 7px;
  min-height: 148px;
  padding: 18px;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.quick-contact-card:hover,
.quick-contact-card:focus-visible {
  border-color: rgba(239, 49, 36, 0.34);
  box-shadow: 0 18px 40px rgba(16, 17, 20, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.quick-contact-card-primary {
  border-color: rgba(239, 49, 36, 0.28);
  background: #ffffff;
}

.quick-contact-card span {
  color: var(--accent);
  font-size: var(--type-label-small);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.quick-contact-card strong {
  color: var(--ink);
  font-size: clamp(1.12rem, 1.55vw, 1.35rem);
  line-height: 1.15;
}

.quick-contact-card small {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.45;
}

.contact-form {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.form-intro {
  display: grid;
  gap: 4px;
}

.form-intro h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.7vw, 1.46rem);
  line-height: 1.18;
}

.form-intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.45;
}

.form-row-single {
  grid-template-columns: 1fr;
}

.label-optional {
  color: var(--ink-muted);
  font-weight: 700;
}

.contact-form textarea {
  min-height: 112px;
}

.contact-form .form-note {
  max-width: 30rem;
  margin: 0;
}

.contact-sidebar {
  align-self: start;
  gap: 0;
}

.showroom-details-card {
  overflow: hidden;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.contact-sidebar .map-card {
  aspect-ratio: 16 / 11;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #e8edf2;
}

.contact-sidebar .map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  background: #e8edf2;
}

.showroom-details-body {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.showroom-details-heading {
  display: grid;
  gap: 4px;
}

.showroom-details-heading .section-label {
  margin: 0;
}

.showroom-details-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.5vw, 1.38rem);
  line-height: 1.12;
}

.showroom-action-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.showroom-action-row .button {
  min-height: 44px;
  padding: 12px 14px;
  font-size: var(--type-label-small);
  white-space: nowrap;
}

.contact-hours-panel {
  padding-top: 16px;
  border-top: 1px solid rgba(16, 17, 20, 0.12);
}

.contact-hours-panel dl {
  display: grid;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 20, 0.1);
  border-radius: 8px;
  background: rgba(248, 249, 251, 0.82);
}

.contact-hours-panel div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 11px 12px;
  border-top: 1px solid rgba(16, 17, 20, 0.08);
}

.contact-hours-panel div:first-child {
  border-top: 0;
}

.contact-hours-panel dt,
.contact-hours-panel dd {
  margin: 0;
  line-height: 1.25;
}

.contact-hours-panel dt {
  color: var(--ink);
  font-weight: 900;
}

.contact-hours-panel dd {
  color: var(--ink-soft);
  font-weight: 700;
  text-align: right;
}

html[data-theme="dark"] .quick-contact-card,
html[data-theme="dark"] .contact-form,
html[data-theme="dark"] .showroom-details-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .quick-contact-card-primary {
  border-color: rgba(239, 49, 36, 0.34);
}

html[data-theme="dark"] .quick-contact-card strong,
html[data-theme="dark"] .form-intro h3,
html[data-theme="dark"] .showroom-details-heading h3 {
  color: #ffffff;
}

html[data-theme="dark"] .quick-contact-card small,
html[data-theme="dark"] .form-intro p {
  color: rgba(255, 255, 255, 0.72);
}

html[data-theme="dark"] .contact-sidebar .map-card,
html[data-theme="dark"] .contact-hours-panel,
html[data-theme="dark"] .contact-hours-panel dl,
html[data-theme="dark"] .contact-hours-panel div {
  border-color: rgba(255, 255, 255, 0.14);
}

html[data-theme="dark"] .contact-hours-panel dl {
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 760px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .quick-contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-form .button {
    width: 100%;
  }

  .showroom-details-body {
    padding: 18px;
  }

  .contact-hours-panel div {
    grid-template-columns: 80px minmax(0, 1fr);
  }
}
