: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 {
  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;
}

.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;
}

.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;
}

.image-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(201, 151, 95, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(42, 30, 24, 0.05) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(135deg, transparent 75%, rgba(42, 30, 24, 0.045) 75%) 0 0 / 24px 24px,
    linear-gradient(145deg, #F9F1E5, #E5D3BD 48%, #F6EADB);
  color: rgba(42, 30, 24, 0.62);
  text-align: center;
}

.image-placeholder::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.54), transparent 34%),
    linear-gradient(90deg, rgba(42, 30, 24, 0.12), transparent 45%, rgba(255, 255, 255, 0.24));
  content: "";
}

.image-placeholder span {
  position: relative;
  z-index: 1;
  max-width: 82%;
  padding: 8px 12px;
  border: 1px solid rgba(42, 30, 24, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--walnut);
  font-size: 0.78rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.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 {
  min-height: 100%;
}

.hero-image span {
  transform: translateY(120px);
}

.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: 12px 15px;
  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);
}

.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(4, 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 .image-placeholder::before {
  transform: scale(1.05);
}

.card-image {
  min-height: 205px;
  border-width: 0 0 1px;
  border-radius: 0;
}

.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;
}

.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%;
  min-height: 380px;
  box-shadow: var(--shadow-soft);
}

.collage-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  min-height: 270px;
  border: 8px solid var(--sand);
  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 {
  min-height: 230px;
  margin-top: 28px;
}

.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 {
  min-height: 500px;
  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-image {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border: 0;
  border-radius: 0;
}

.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;
}

.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: 260px;
}

.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;
  border: 0;
  border-radius: 0;
}

.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;
}

.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-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;
}

.mobile-bottom-bar {
  display: none;
}

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));
  }

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

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

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

  .split-layout,
  .services-layout,
  .quote-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .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;
  }

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

  .mobile-bottom-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: var(--walnut);
    box-shadow: 0 16px 34px rgba(42, 30, 24, 0.22);
  }

  .mobile-bottom-bar a {
    min-height: 52px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 0.84rem;
    font-weight: 900;
  }

  .mobile-bottom-bar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  body {
    padding-bottom: 76px;
  }
}

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

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  .section {
    padding: 64px 0;
  }

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

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

  .hero {
    min-height: 620px;
    align-items: flex-end;
  }

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

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

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

  .hero-badges,
  .trust-grid,
  .category-grid,
  .service-grid,
  .quote-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-badges span {
    min-height: 48px;
  }

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

  .collage-main,
  .collage-small {
    position: relative;
    width: 100%;
    min-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 {
    min-height: 320px;
  }

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

  .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;
  }
}

@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;
  }

  .hero-image span {
    transform: translateY(84px);
  }

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

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

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

@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;
  }
}
