:root {
  --walnut: #2A1E18;
  --oak: #C9975F;
  --oak-dark: #A87638;
  --sand: #F7F2EA;
  --ivory: #FFFDF8;
  --charcoal: #252525;
  --warm-grey: #6F665D;
  --taupe: #DED6CC;
  --cream: #FBF6ED;
  --sage: #69786A;
  --white: #FFFFFF;
  --shadow-soft: 0 18px 50px rgba(42, 30, 24, 0.11);
  --shadow-card: 0 14px 34px rgba(42, 30, 24, 0.12);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--walnut);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.8rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

p {
  color: var(--warm-grey);
}

.container {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}

.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading.center,
.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--oak-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--walnut);
  color: var(--white);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--oak);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(201, 151, 95, 0.28);
}

.btn-primary:hover {
  background: var(--oak-dark);
}

.btn-secondary {
  border-color: rgba(42, 30, 24, 0.22);
  background: transparent;
  color: var(--walnut);
}

.btn-secondary:hover {
  border-color: var(--oak);
  background: rgba(201, 151, 95, 0.08);
}

.btn-on-dark {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
}

.btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-sm {
  min-height: 42px;
  padding: 11px 17px;
  font-size: 0.86rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.center-buttons {
  justify-content: center;
}

.quick-call-strip {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--walnut);
  color: var(--white);
}

.quick-call-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.quick-call-inner span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.quick-call-btn {
  box-shadow: none;
}

.quick-store-btn {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
  box-shadow: none;
}

.quick-store-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--taupe);
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(42, 30, 24, 0.09);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 12px);
  gap: 2px;
  width: 33px;
  height: 33px;
  transform: rotate(45deg);
}

.brand-mark span {
  border: 2px solid var(--oak);
  border-radius: 4px;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--walnut);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.brand-copy small {
  color: var(--warm-grey);
  font-size: 0.76rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
}

.desktop-nav a {
  position: relative;
  padding: 27px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--oak);
  content: "";
  transition: transform 180ms ease;
}

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

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

.header-actions .btn-sm {
  max-width: 210px;
}

.phone-link {
  color: var(--walnut);
  font-size: 0.95rem;
  font-weight: 900;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--taupe);
  border-radius: 6px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--walnut);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 650px;
  height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(42, 30, 24, 0.78) 0%,
    rgba(42, 30, 24, 0.52) 42%,
    rgba(42, 30, 24, 0.16) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 44px;
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero-text {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

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

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 960px;
  gap: 12px;
  margin-top: 54px;
}

.hero-badges span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.trust-strip {
  border-bottom: 1px solid var(--taupe);
  background: var(--ivory);
}

.promo-offer {
  padding: 56px 0;
  border-bottom: 1px solid var(--taupe);
  background: linear-gradient(180deg, var(--cream), var(--ivory));
}

.promo-offer-featured {
  position: relative;
  border-top: 6px solid #b52222;
  background: #fff9f7;
}

.promo-offer-featured::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(181, 34, 34, 0.18);
}

.promo-offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: center;
}

.promo-offer-media {
  display: grid;
  gap: 18px;
}

.promo-offer-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 16px;
  padding: 9px 16px 9px 10px;
  border: 1px solid rgba(168, 118, 56, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #f5c866 0%, var(--oak) 100%);
  color: var(--walnut);
  line-height: 1;
  box-shadow: 0 14px 30px rgba(201, 151, 95, 0.22);
}

.promo-offer-label-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.95);
  color: var(--oak-dark);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
}

.promo-offer-label-copy {
  display: grid;
  gap: 3px;
}

.promo-offer-label-copy strong {
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.promo-offer-label-copy small {
  color: rgba(42, 30, 24, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.promo-offer-label-mobile {
  display: none;
}

.promo-offer-featured .promo-offer-label {
  border-color: #b52222;
  background: #b52222;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(181, 34, 34, 0.2);
}

.promo-offer-featured .promo-offer-label-icon {
  color: #b52222;
}

.promo-offer-featured .promo-offer-label-copy small {
  color: rgba(255, 255, 255, 0.86);
}

.promo-offer-statuses {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
}

.promo-offer-statuses-mobile {
  display: none;
}

.promo-offer-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.25;
}

.promo-offer-status-limited {
  border: 1px solid #b52222;
  background: #b52222;
  color: #ffffff;
  text-transform: uppercase;
}

.promo-offer-status-social {
  border: 1px solid rgba(181, 34, 34, 0.34);
  background: #ffffff;
  color: #7f1717;
}

.promo-offer-image {
  width: 100%;
  height: 430px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.promo-offer-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.promo-offer-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid rgba(201, 151, 95, 0.34);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(42, 30, 24, 0.08);
  cursor: zoom-in;
}

.promo-offer-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: border-color 180ms ease;
}

.promo-offer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.promo-offer-thumb:hover img,
.promo-offer-thumb:focus-visible img {
  transform: scale(1.04);
}

.promo-offer-thumb:hover::after,
.promo-offer-thumb:focus-visible::after {
  border-color: rgba(201, 151, 95, 0.78);
}

.promo-offer-thumb:focus-visible {
  outline: 3px solid rgba(201, 151, 95, 0.36);
  outline-offset: 3px;
}

.promo-offer-content {
  max-width: 760px;
}

.promo-offer-content h2 {
  margin-bottom: 14px;
}

.promo-offer-package-note {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 9px 13px;
  border: 1px solid rgba(201, 151, 95, 0.32);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--oak-dark);
  font-weight: 900;
}

.promo-offer-featured .promo-offer-package-note {
  border-color: rgba(181, 34, 34, 0.32);
  background: #fff0ee;
  color: #8f1c1c;
}

.promo-offer-price {
  display: inline-grid;
  gap: 2px;
  margin: 10px 0 24px;
  padding: 14px 18px;
  border: 1px solid rgba(201, 151, 95, 0.42);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(42, 30, 24, 0.06);
}

.promo-offer-price span {
  color: var(--oak-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-offer-price strong {
  color: var(--walnut);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.promo-offer-featured .promo-offer-price {
  border: 2px solid rgba(181, 34, 34, 0.62);
  box-shadow: 0 12px 28px rgba(181, 34, 34, 0.1);
}

.promo-offer-featured .promo-offer-price span,
.promo-offer-featured .promo-offer-price strong {
  color: #a51f1f;
}

.promo-offer-featured .promo-offer-grid > div {
  border-top: 3px solid #b52222;
}

.promo-offer-featured .button-row .btn-primary,
.promo-offer-featured .button-row .btn-promo-more {
  border-color: #b52222;
  background: #b52222;
  color: #ffffff;
}

.promo-offer-featured .button-row .btn-primary:hover,
.promo-offer-featured .button-row .btn-promo-more:hover {
  border-color: #8f1717;
  background: #8f1717;
}

.promo-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 22px;
}

.promo-offer-grid > div {
  padding: 22px;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--white);
}

.promo-offer-grid h3 {
  margin-bottom: 14px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(42, 30, 24, 0.74);
}

.image-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(100%, 980px);
  max-height: calc(100vh - 56px);
  padding: 14px;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: var(--radius);
  background: var(--ivory);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.image-lightbox-panel img {
  width: 100%;
  max-height: calc(100vh - 150px);
  border-radius: calc(var(--radius) - 2px);
  object-fit: contain;
  background: var(--white);
}

.image-lightbox-panel p {
  margin: 0;
  color: var(--walnut);
  font-weight: 700;
  text-align: center;
}

.image-lightbox-return {
  justify-self: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 6px;
  background: var(--oak);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(201, 151, 95, 0.26);
}

.image-lightbox-return:hover,
.image-lightbox-return:focus-visible {
  background: var(--oak-dark);
}

.image-lightbox-return:focus-visible {
  outline: 3px solid rgba(201, 151, 95, 0.36);
  outline-offset: 3px;
}

.image-lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 253, 248, 0.64);
  border-radius: 50%;
  background: var(--walnut);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.image-lightbox-close:focus-visible {
  outline: 3px solid rgba(255, 253, 248, 0.7);
  outline-offset: 3px;
}

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

.trust-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
}

.trust-item h2 {
  margin-bottom: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.98rem;
  line-height: 1.35;
}

.trust-item p {
  margin-bottom: 0;
  font-size: 0.86rem;
  line-height: 1.4;
}

.line-icon {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  border: 2px solid var(--oak);
  border-radius: 6px;
}

.line-icon::before,
.line-icon::after {
  position: absolute;
  content: "";
}

.store-icon::before {
  top: 8px;
  left: 8px;
  width: 22px;
  height: 7px;
  border: 2px solid var(--oak);
  border-radius: 4px 4px 0 0;
}

.store-icon::after {
  bottom: 7px;
  left: 11px;
  width: 16px;
  height: 14px;
  border: 2px solid var(--oak);
  border-bottom: 0;
}

.person-icon {
  border-radius: 50%;
}

.person-icon::before {
  top: 8px;
  left: 13px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--oak);
  border-radius: 50%;
}

.person-icon::after {
  bottom: 7px;
  left: 8px;
  width: 22px;
  height: 12px;
  border: 2px solid var(--oak);
  border-radius: 14px 14px 4px 4px;
}

.delivery-icon::before {
  right: -7px;
  bottom: 9px;
  width: 16px;
  height: 13px;
  border: 2px solid var(--oak);
  border-left: 0;
  border-radius: 0 5px 5px 0;
}

.delivery-icon::after {
  bottom: -5px;
  left: 7px;
  width: 24px;
  height: 8px;
  border: 2px solid var(--oak);
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.tool-icon {
  transform: rotate(-35deg);
}

.tool-icon::before {
  top: -6px;
  left: 13px;
  width: 12px;
  height: 18px;
  border: 2px solid var(--oak);
  border-radius: 10px;
}

.tool-icon::after {
  right: 12px;
  bottom: 4px;
  width: 9px;
  height: 24px;
  border-radius: 4px;
  background: var(--oak);
}

.categories {
  background: linear-gradient(180deg, var(--ivory), var(--cream));
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.category-card {
  overflow: hidden;
  border: 1px solid rgba(222, 214, 204, 0.9);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(42, 30, 24, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.category-card:hover .card-image {
  transform: scale(1.05);
}

.card-image {
  width: 100%;
  height: 205px;
  border-bottom: 1px solid rgba(222, 214, 204, 0.9);
  border-radius: 0;
  object-fit: cover;
  transition: transform 220ms ease;
}

.card-body {
  padding: 24px 22px 26px;
}

.card-body h3::after {
  display: block;
  width: 44px;
  height: 3px;
  margin-top: 12px;
  background: var(--oak);
  content: "";
}

.card-body p {
  min-height: 108px;
  margin-bottom: 18px;
  font-size: 0.93rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--oak);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
}

.text-link::after {
  content: ">";
  font-weight: 900;
}

.partner-railings {
  border-top: 1px solid var(--taupe);
  background: linear-gradient(180deg, var(--ivory), var(--sand));
}

.partner-railings .section-heading {
  max-width: 860px;
}

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

.partner-railings .card-body p {
  min-height: 146px;
}

.partner-railings-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--taupe);
}

.partner-railings-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-railings-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(201, 151, 95, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--walnut);
  font-size: 0.86rem;
  font-weight: 900;
}

.partner-railings-links a:hover {
  border-color: var(--oak);
  background: var(--white);
}

.showroom {
  background: var(--sand);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 78px;
  align-items: center;
}

.showroom-collage {
  position: relative;
  min-height: 510px;
}

.collage-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 76%;
  height: 380px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.collage-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 270px;
  border: 8px solid var(--sand);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

.collage-label {
  position: absolute;
  bottom: 42px;
  left: 34%;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 6px;
  background: var(--oak);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(42, 30, 24, 0.18);
}

.split-copy > p:not(.eyebrow) {
  font-size: 1.02rem;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--charcoal);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--oak);
  border-radius: 50%;
  color: var(--oak-dark);
  content: "✓";
  font-size: 0.8rem;
  font-weight: 900;
}

.guide {
  background: var(--ivory);
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(42, 30, 24, 0.06);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.6fr;
}

.comparison-row > div {
  padding: 18px 22px;
  border-bottom: 1px solid var(--taupe);
}

.comparison-row > div + div {
  border-left: 1px solid var(--taupe);
}

.comparison-row:last-child > div {
  border-bottom: 0;
}

.comparison-head {
  background: var(--sand);
  color: var(--walnut);
  font-weight: 900;
}

.soft-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 22px 24px;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--cream);
}

.soft-cta p {
  margin-bottom: 0;
}

.quote-section {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96), rgba(247, 242, 234, 0.94)),
    var(--sand);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
}

.form-side-image {
  width: 100%;
  height: 230px;
  margin-top: 28px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(222, 214, 204, 0.85);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--walnut);
  font-size: 0.88rem;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--taupe);
  border-radius: 6px;
  background: var(--ivory);
  color: var(--charcoal);
  padding: 13px 14px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.quote-form textarea {
  min-height: 124px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--oak);
  box-shadow: 0 0 0 4px rgba(201, 151, 95, 0.15);
}

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

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

.services {
  background: var(--ivory);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 58px;
  align-items: center;
}

.services-image {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.service-grid article {
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--walnut);
  font-weight: 900;
}

.gallery {
  background: var(--sand);
}

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

.gallery-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.gallery.is-collapsible:not(.is-expanded) .gallery-card:nth-child(n+4) {
  display: none;
}

.gallery.is-expanded .single-action {
  display: none;
}

.gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(42, 30, 24, 0.82) 100%);
  content: "";
}

.gallery-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
  color: var(--white);
}

.gallery-caption span {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 900;
}

.gallery-caption h3 {
  margin-bottom: 0;
  color: var(--white);
}

.single-action {
  margin-top: 30px;
}

.gallery-preview .gallery-card:nth-child(n+4) {
  display: none;
}

.gallery-preview .single-action {
  display: flex;
  justify-content: center;
}

.gallery-page {
  background: linear-gradient(180deg, var(--ivory), var(--sand));
}

.gallery-page .section-heading {
  max-width: 840px;
}

.gallery-page-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-page-grid .gallery-card {
  min-height: 310px;
}

.gallery-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid var(--taupe);
}

.gallery-cta-band h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.gallery-cta-band p {
  max-width: 680px;
  margin-bottom: 0;
}


.process {
  background: var(--ivory);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 178px;
  padding: 26px 18px;
  border-top: 1px solid var(--taupe);
  border-bottom: 1px solid var(--taupe);
  color: var(--walnut);
  font-weight: 900;
}

.process-list li + li {
  border-left: 1px solid var(--taupe);
}

.process-list span {
  display: block;
  margin-bottom: 26px;
  color: var(--oak);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
}

.faq {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 56px;
  align-items: start;
}

.accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 66px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--walnut);
  text-align: left;
  font-weight: 900;
}

.faq-icon {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1px solid var(--oak);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
  background: var(--oak);
  content: "";
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 160ms ease;
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.faq-item.is-open .faq-panel {
  max-height: 720px;
}

.faq-panel p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.final-cta-image,
.final-cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

.final-cta-image {
  object-fit: cover;
}

.final-cta-overlay {
  z-index: 1;
  background: rgba(42, 30, 24, 0.72);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 92px 0;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 680px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.product-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 72px 0 84px;
}

.product-hero-image,
.product-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-hero-image {
  object-fit: cover;
}

.product-hero-overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(42, 30, 24, 0.82) 0%, rgba(42, 30, 24, 0.58) 48%, rgba(42, 30, 24, 0.2) 100%);
}

.product-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  padding-top: 48px;
  padding-bottom: 28px;
}

.product-hero-content h1,
.product-hero-content p {
  color: var(--white);
}

.product-hero-content h1 {
  max-width: 860px;
  font-size: clamp(2.7rem, 4.7vw, 5rem);
}

.product-hero-content > p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.product-hero .hero-badges {
  max-width: 1120px;
  margin-top: 42px;
  padding-bottom: 10px;
}

.product-hero .hero-badges span {
  min-height: 66px;
  padding: 16px 24px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--white);
}

.category-intro {
  background: var(--ivory);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  gap: 46px;
  align-items: start;
}

.intro-panel {
  padding: 28px;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--cream);
}

.intro-panel h3 {
  margin-bottom: 10px;
}

.suitable-section,
.selection-guide {
  background: var(--sand);
}

.suitable-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.suitable-grid li {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--walnut);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(42, 30, 24, 0.05);
}

.repair-symptoms {
  margin-top: 34px;
}

.restoration-services {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.before-after-card {
  overflow: hidden;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(42, 30, 24, 0.06);
}

.before-after-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.before-after-card div {
  padding: 24px;
}

.before-after-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(201, 151, 95, 0.13);
  color: var(--oak-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.before-after-card p {
  margin-bottom: 0;
}

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

.finish-card {
  overflow: hidden;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(42, 30, 24, 0.06);
}

.finish-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.finish-card > div {
  padding: 26px;
}

.note-panel {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--cream);
}

.note-panel h3 {
  margin-bottom: 8px;
}

.note-panel p:last-child {
  margin-bottom: 0;
}

.process-list.process-list-wide {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.process-list.process-list-wide li {
  min-height: 210px;
  padding-right: 12px;
  padding-left: 12px;
}

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

.guide-card {
  padding: 22px;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(42, 30, 24, 0.06);
}

.guide-card h3 {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

.guide-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.products-section {
  background: var(--ivory);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid rgba(222, 214, 204, 0.9);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(42, 30, 24, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.product-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-bottom: 1px solid var(--taupe);
}

.product-card-body {
  padding: 22px;
}

.product-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(201, 151, 95, 0.13);
  color: var(--oak-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.product-card-body h3 {
  margin-bottom: 10px;
}

.product-card-body p {
  font-size: 0.92rem;
}

.product-card-body ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 16px 0;
  list-style: none;
  color: var(--charcoal);
  font-size: 0.88rem;
}

.product-card-body li {
  padding-left: 18px;
  position: relative;
}

.product-card-body li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oak);
  content: "";
}

.product-price {
  margin-bottom: 16px;
  color: var(--walnut);
  font-weight: 900;
}

.store-cta {
  background: var(--sand);
}

.store-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
}

.store-cta-image {
  width: 100%;
  height: 430px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.category-offer {
  background: var(--ivory);
}

.related-categories {
  background: var(--cream);
}

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

.related-card {
  overflow: hidden;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(42, 30, 24, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.related-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.related-card div {
  padding: 20px;
}

.related-card h3 {
  margin-bottom: 8px;
}

.related-card p {
  margin-bottom: 14px;
}

.category-faq {
  background: var(--cream);
}

.site-footer {
  background: var(--walnut);
  color: rgba(255, 255, 255, 0.78);
  padding: 58px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.15fr;
  gap: 42px;
}

.footer-brand .brand-copy strong,
.site-footer h2 {
  color: var(--white);
}

.footer-brand .brand-copy small,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
  margin-bottom: 14px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.95rem;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--oak);
}

.footer-grid p {
  margin-bottom: 8px;
}

.footer-map {
  margin-top: 42px;
}

.footer-map-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.footer-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.footer-map-copy h2 {
  margin-bottom: 0;
}

.footer-map-copy p {
  margin-bottom: 0;
}

.site-footer .footer-map-copy .btn {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  color: var(--white);
}

.site-footer .footer-map-copy .btn:hover {
  color: var(--white);
}

.footer-map-card iframe {
  width: 100%;
  min-height: 300px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.84rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

body.reveal-ready .section-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

body.reveal-ready .section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 18px;
  }

  .header-actions {
    gap: 10px;
  }

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

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

  .gallery-cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-railings-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .card-body p {
    min-height: auto;
  }

  .hero-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 640px;
  }

  .product-hero {
    padding: 64px 0 76px;
  }

  .product-hero-content h1 {
    font-size: clamp(2.45rem, 6vw, 4.2rem);
  }

  .product-hero .hero-badges {
    max-width: 760px;
  }

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

  .split-layout,
  .services-layout,
  .promo-offer-layout,
  .quote-layout,
  .faq-layout,
  .intro-layout,
  .store-cta-layout {
    grid-template-columns: 1fr;
  }

  .showroom-collage {
    max-width: 720px;
  }

  .quote-copy {
    max-width: 760px;
  }

  .store-cta-image {
    height: 360px;
  }

  .promo-offer-image {
    height: 360px;
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-left: 1px solid var(--taupe);
  }

  .process-list.process-list-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-list li {
    border-right: 1px solid var(--taupe);
  }

  .process-list li + li {
    border-left: 0;
  }

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

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 32px, 1200px);
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

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

  .mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 99;
    display: grid;
    gap: 0;
    max-height: calc(100vh - var(--header-height));
    padding: 12px 16px 18px;
    border-bottom: 1px solid var(--taupe);
    background: var(--ivory);
    box-shadow: 0 24px 44px rgba(42, 30, 24, 0.11);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .mobile-menu.is-open {
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(222, 214, 204, 0.62);
    color: var(--walnut);
    font-weight: 900;
  }

  .mobile-menu .btn {
    margin-top: 12px;
    border-bottom: 0;
  }

  .hero {
    min-height: 560px;
    height: 72vh;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(42, 30, 24, 0.82) 0%,
      rgba(42, 30, 24, 0.58) 70%,
      rgba(42, 30, 24, 0.38) 100%
    );
  }

  .hero-badges {
    margin-top: 34px;
  }

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

  .comparison-head {
    display: none;
  }

  .comparison-row > div {
    border-left: 0;
  }

  .comparison-row > div + div {
    border-left: 0;
    border-top: 1px solid rgba(222, 214, 204, 0.6);
  }

  .comparison-row {
    border-bottom: 1px solid var(--taupe);
  }

  .comparison-row:last-child {
    border-bottom: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .suitable-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card {
    min-height: 340px;
  }

}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 10.5vw, 3.35rem);
    line-height: 1.06;
  }

  .section {
    padding: 64px 0;
  }

  .brand-copy strong {
    font-size: 1.35rem;
  }

  .brand-copy small {
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
    height: auto;
    align-items: stretch;
  }

  .product-hero {
    min-height: auto;
    align-items: stretch;
    padding: 46px 0 56px;
  }

  .hero-content {
    padding-top: 46px;
    padding-bottom: 42px;
  }

  .hero-text {
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .product-hero-content {
    padding-top: 42px;
    padding-bottom: 0;
  }

  .product-hero-content h1 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .product-hero-content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .product-hero .hero-badges {
    margin-top: 24px;
    padding-bottom: 0;
  }

  .product-hero .hero-badges span {
    min-height: auto;
    padding: 12px 14px;
  }

  .hero-buttons,
  .button-row,
  .soft-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero-buttons .btn,
  .button-row .btn,
  .soft-cta .btn {
    width: 100%;
  }

  .hero-badges,
  .trust-grid,
  .category-grid,
  .guide-grid,
  .product-grid,
  .before-after-grid,
  .finish-grid,
  .promo-offer-grid,
  .service-grid,
  .quote-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-badges {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-badges span {
    min-height: auto;
    padding: 10px 14px;
    border-radius: 8px;
  }

  .quick-call-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .quick-store-btn,
  .quick-call-btn {
    width: 100%;
  }

  .gallery-cta-band .button-row,
  .gallery-cta-band .btn {
    width: 100%;
  }

  .partner-railings .card-body p {
    min-height: auto;
  }

  .partner-railings-footer .btn,
  .partner-railings-links {
    width: 100%;
  }

  .partner-railings-links {
    flex-direction: column;
  }

  .partner-railings-links a {
    justify-content: center;
    width: 100%;
    border-radius: 6px;
    text-align: center;
  }

  .showroom-collage {
    min-height: auto;
  }

  .collage-main,
  .collage-small {
    position: relative;
    width: 100%;
    height: 260px;
  }

  .collage-small {
    right: auto;
    bottom: auto;
    margin-top: 16px;
    border: 0;
  }

  .collage-label {
    bottom: auto;
    left: 18px;
    top: 212px;
  }

  .quote-form {
    padding: 20px;
  }

  .services-image {
    height: 320px;
  }

  .store-cta-image {
    height: 300px;
  }

  .promo-offer-image {
    height: 300px;
  }

  .promo-offer-media {
    gap: 12px;
  }

  .promo-offer-label-mobile {
    display: inline-flex;
    justify-self: center;
    margin-bottom: 2px;
    padding: 10px 17px 10px 10px;
    font-size: 0.88rem;
    box-shadow: 0 16px 34px rgba(201, 151, 95, 0.28);
  }

  .promo-offer-label-content {
    display: none;
  }

  .promo-offer-statuses-content {
    display: none;
  }

  .promo-offer-statuses-mobile {
    display: flex;
    justify-content: center;
    margin-bottom: 4px;
  }

  .promo-offer-status {
    justify-content: center;
    text-align: center;
  }

  .promo-offer-label-icon {
    width: 30px;
    height: 30px;
    font-size: 1.05rem;
  }

  .promo-offer-label-mobile .promo-offer-label-copy strong {
    font-size: 0.94rem;
  }

  .promo-offer-label-mobile .promo-offer-label-copy small {
    font-size: 0.74rem;
  }

  .promo-offer-thumbs {
    gap: 10px;
  }

  .image-lightbox {
    padding: 18px;
  }

  .image-lightbox-panel {
    max-height: calc(100vh - 36px);
    padding: 10px;
  }

  .image-lightbox-panel img {
    max-height: calc(100vh - 128px);
  }

  .image-lightbox-close {
    top: 8px;
    right: 8px;
  }

  .process-list {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .process-list.process-list-wide {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 128px;
    border-right: 0;
  }

  .process-list li + li {
    border-top: 0;
  }

  .process-list span {
    margin-bottom: 12px;
  }

  .footer-bottom,
  .footer-bottom div {
    flex-direction: column;
  }

  .footer-map-card {
    grid-template-columns: 1fr;
  }

  .footer-map-card iframe {
    min-height: 240px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    grid-template-columns: repeat(2, 10px);
    width: 28px;
    height: 28px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 600px;
  }

  .trust-item {
    grid-template-columns: 38px 1fr;
  }

  .line-icon {
    width: 36px;
    height: 36px;
  }

  .gallery-card {
    min-height: 310px;
  }

  .promo-offer-thumbs {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
