:root {
  --ink: #211813;
  --ink-soft: #5e5149;
  --brown-950: #20140f;
  --brown-900: #2b1c14;
  --brown-800: #41291d;
  --brown-700: #5c3825;
  --oak: #b8793f;
  --oak-light: #d3a66f;
  --cream: #f6f1e9;
  --cream-deep: #ece2d3;
  --white: #fffdf9;
  --line: rgba(43, 28, 20, 0.14);
  --shadow: 0 20px 60px rgba(33, 24, 19, 0.14);
  --radius: 24px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }
.section { padding: 104px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--oak);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.03em; }
h2 { margin-bottom: 20px; font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: 1.4rem; }
p { color: var(--ink-soft); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--brown-900);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(32, 20, 15, 0.94);
  backdrop-filter: blur(14px);
}
.nav-wrap { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; }
.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.28);
  background: linear-gradient(135deg, rgba(211,166,111,0.35), rgba(184,121,63,0.08));
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-size: 0.94rem; letter-spacing: 0.01em; text-transform: uppercase; }
.brand-copy small { margin-top: 5px; color: var(--oak-light); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a { color: rgba(255,255,255,0.78); font-size: 0.88rem; font-weight: 700; text-decoration: none; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--white); }
.primary-nav .nav-cta { padding: 12px 17px; border: 1px solid rgba(211,166,111,0.5); color: var(--white); }
.menu-toggle { display: none; border: 0; background: transparent; }
.menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--white); }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(184,121,63,0.18), transparent 38%),
    linear-gradient(115deg, var(--brown-950), var(--brown-800));
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -15% -45% 25%;
  height: 540px;
  background: radial-gradient(ellipse at center, rgba(211,166,111,0.16), transparent 68%);
  transform: rotate(-8deg);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image: linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,0.55) 50%, transparent 50.5%);
  background-size: 72px 100%;
  transform: skewX(-8deg) scale(1.2);
}
.hero-grid { position: relative; z-index: 2; display: grid; min-height: 680px; grid-template-columns: 1.02fr 0.98fr; align-items: center; gap: 70px; padding-top: 70px; padding-bottom: 70px; }
.hero h1 { margin-bottom: 24px; font-size: clamp(3.4rem, 7vw, 6.5rem); font-weight: 850; }
.hero h1 span { color: var(--oak-light); }
.hero-lede { max-width: 650px; margin-bottom: 34px; color: rgba(255,255,255,0.72); font-size: 1.18rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--brown-950); background: var(--oak-light); box-shadow: 0 12px 35px rgba(184,121,63,0.2); }
.button-primary:hover, .button-primary:focus-visible { background: #e2b981; }
.button-secondary { border-color: rgba(255,255,255,0.3); color: var(--white); background: rgba(255,255,255,0.04); }
.button-secondary:hover, .button-secondary:focus-visible { background: rgba(255,255,255,0.1); }
.button-light { color: var(--brown-950); background: var(--white); }
.button-full { width: 100%; }
.trust-row { display: flex; gap: 34px; margin: 42px 0 0; padding: 0; list-style: none; }
.trust-row li { display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 10px; }
.trust-row strong { grid-row: 1 / 3; color: var(--oak-light); font-size: 1.45rem; line-height: 1; }
.trust-row span { max-width: 105px; color: rgba(255,255,255,0.63); font-size: 0.74rem; line-height: 1.25; }

.hero-visual { position: relative; min-height: 500px; }
.room-card { position: absolute; inset: 20px 0 0; overflow: hidden; border: 1px solid rgba(255,255,255,0.13); background: #d9d2c8; box-shadow: 0 34px 90px rgba(0,0,0,0.36); transform: perspective(1200px) rotateY(-7deg) rotateX(2deg); }
.room-wall { position: relative; height: 47%; background: linear-gradient(160deg, #efeae2, #cfc7bb); }
.room-wall::after { content: ""; position: absolute; inset: auto 0 0; height: 12px; background: #f6f2ec; box-shadow: 0 -1px rgba(0,0,0,0.12); }
.window { position: absolute; top: 46px; left: 48px; display: grid; width: 118px; height: 142px; grid-template-columns: 1fr 1fr; gap: 4px; padding: 7px; background: #f8f8f6; box-shadow: 0 15px 32px rgba(68,57,49,0.14); }
.window span { background: linear-gradient(145deg, #b9ced2, #e7f1f2 55%, #a5bfc4); }
.sample-board { position: absolute; right: 52px; bottom: 42px; display: flex; align-items: flex-end; gap: 12px; }
.sample-board span { display: block; width: 40px; border: 4px solid #f7f1e8; box-shadow: 0 10px 24px rgba(0,0,0,0.16); }
.sample-board span:nth-child(1) { height: 108px; background: linear-gradient(90deg, #8b5a34, #b9814d, #6d4228); transform: rotate(-8deg); }
.sample-board span:nth-child(2) { height: 126px; background: linear-gradient(90deg, #c69c68, #e0bd8a, #a97f53); }
.sample-board span:nth-child(3) { height: 98px; background: linear-gradient(90deg, #5a3926, #8b5b3a, #3f271c); transform: rotate(7deg); }
.floor-plane { position: relative; height: 53%; overflow: hidden; background: #8a5a37; transform-origin: top; perspective: 800px; }
.floor-plane::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(8deg, rgba(255,255,255,0.055) 0 2px, transparent 2px 14px); mix-blend-mode: soft-light; }
.floor-plane i { position: absolute; top: -90px; bottom: -80px; width: 17%; border-right: 2px solid rgba(61,34,20,0.5); background: linear-gradient(90deg, rgba(255,255,255,0.08), transparent 35%, rgba(44,22,12,0.15)); transform: rotate(23deg); }
.floor-plane i:nth-child(1) { left: -12%; }
.floor-plane i:nth-child(2) { left: 3%; }
.floor-plane i:nth-child(3) { left: 18%; }
.floor-plane i:nth-child(4) { left: 33%; }
.floor-plane i:nth-child(5) { left: 48%; }
.floor-plane i:nth-child(6) { left: 63%; }
.floor-plane i:nth-child(7) { left: 78%; }
.floor-plane i:nth-child(8) { left: 93%; }
.quality-badge { position: absolute; right: -22px; bottom: 34px; display: flex; min-width: 235px; align-items: center; gap: 13px; padding: 16px 18px; color: var(--brown-950); background: var(--white); box-shadow: 0 18px 40px rgba(0,0,0,0.25); }
.badge-icon { display: grid; width: 42px; height: 42px; place-items: center; color: var(--white); background: var(--oak); }
.quality-badge span:last-child { display: flex; flex-direction: column; }
.quality-badge strong { font-size: 0.92rem; }
.quality-badge small { color: var(--ink-soft); }

.intro-strip { position: relative; z-index: 3; color: var(--white); background: var(--oak); }
.intro-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.intro-strip p { margin: 0; padding: 24px 30px; border-right: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.88); text-align: center; }
.intro-strip p:last-child { border-right: 0; }
.intro-strip strong { color: var(--white); }

.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading > p:last-child { max-width: 680px; font-size: 1.05rem; }
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 390px; overflow: hidden; padding: 30px; border: 1px solid var(--line); background: var(--white); transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease; }
.service-card:hover { z-index: 2; border-color: rgba(184,121,63,0.45); box-shadow: var(--shadow); transform: translateY(-7px); }
.service-number { position: absolute; top: 26px; right: 26px; color: rgba(43,28,20,0.28); font-size: 0.74rem; font-weight: 900; letter-spacing: 0.12em; }
.service-icon { position: relative; width: 64px; height: 64px; margin-bottom: 28px; }
.service-card h3 { margin-bottom: 15px; }
.service-card p { font-size: 0.95rem; }
.service-card ul { margin: 22px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line); list-style: none; }
.service-card li { position: relative; margin: 8px 0; padding-left: 16px; color: var(--ink-soft); font-size: 0.85rem; }
.service-card li::before { content: ""; position: absolute; top: 0.72em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--oak); }
.hardwood-icon span, .install-icon span, .lvp-icon span, .laminate-icon span { position: absolute; height: 16px; border: 2px solid var(--oak); background: rgba(184,121,63,0.08); transform: skewY(-8deg); }
.hardwood-icon span:nth-child(1), .install-icon span:nth-child(1), .lvp-icon span:nth-child(1), .laminate-icon span:nth-child(1) { inset: 4px 9px auto 0; }
.hardwood-icon span:nth-child(2), .install-icon span:nth-child(2), .lvp-icon span:nth-child(2), .laminate-icon span:nth-child(2) { inset: 24px 0 auto 10px; }
.hardwood-icon span:nth-child(3), .install-icon span:nth-child(3), .lvp-icon span:nth-child(3), .laminate-icon span:nth-child(3) { inset: 44px 14px auto 0; }
.install-icon { transform: rotate(90deg); }
.lvp-icon span { border-color: var(--brown-700); }
.laminate-icon span { border-style: dashed; }
.stair-icon span { position: absolute; right: 0; bottom: 0; height: 18px; border-top: 3px solid var(--oak); border-left: 3px solid var(--oak); }
.stair-icon span:nth-child(1) { width: 62px; }
.stair-icon span:nth-child(2) { width: 42px; bottom: 18px; }
.stair-icon span:nth-child(3) { width: 22px; bottom: 36px; }
.service-card-cta { display: flex; flex-direction: column; justify-content: center; color: var(--white); background: linear-gradient(145deg, var(--brown-900), var(--brown-700)); }
.service-card-cta::after { content: ""; position: absolute; right: -80px; bottom: -110px; width: 260px; height: 260px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; box-shadow: 0 0 0 36px rgba(255,255,255,0.03), 0 0 0 72px rgba(255,255,255,0.02); }
.service-card-cta p { color: rgba(255,255,255,0.72); }
.service-card-cta .button { position: relative; z-index: 2; align-self: flex-start; margin-top: 8px; }

.about { overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; align-items: center; gap: 90px; }
.about-visual { position: relative; min-height: 570px; }
.wood-swatch { position: absolute; width: 56%; height: 70%; border: 10px solid var(--white); box-shadow: var(--shadow); }
.wood-swatch::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(6deg, rgba(255,255,255,0.05) 0 3px, transparent 3px 20px); }
.swatch-one { top: 7%; left: 2%; background: linear-gradient(90deg, #6f4328, #99613a 35%, #5b3623 70%, #845334); transform: rotate(-7deg); }
.swatch-two { top: 16%; right: 1%; background: linear-gradient(90deg, #c79a65, #e1bc8b 35%, #a97c4d 70%, #d3aa75); transform: rotate(8deg); }
.swatch-three { right: 19%; bottom: 1%; width: 52%; height: 60%; background: linear-gradient(90deg, #3d2a20, #604130 35%, #2d2019 70%, #513527); transform: rotate(-1deg); }
.experience-card { position: absolute; right: -10px; bottom: 20px; display: flex; width: 205px; height: 155px; flex-direction: column; justify-content: center; padding: 25px; color: var(--white); background: var(--oak); box-shadow: 0 20px 50px rgba(59,35,21,0.25); }
.experience-card strong { font-size: 3.6rem; line-height: 0.9; }
.experience-card span { max-width: 130px; margin-top: 10px; font-size: 0.78rem; font-weight: 800; line-height: 1.25; text-transform: uppercase; }
.about-copy > p:not(.eyebrow) { font-size: 1.03rem; }
.feature-list { display: grid; gap: 18px; margin-top: 30px; }
.feature-list > div { display: grid; grid-template-columns: 38px 1fr; gap: 14px; }
.feature-list > div > span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: var(--brown-900); background: var(--cream-deep); font-weight: 900; }
.feature-list p { display: flex; flex-direction: column; margin: 0; }
.feature-list strong { color: var(--ink); }
.feature-list small { margin-top: 3px; color: var(--ink-soft); font-size: 0.82rem; }

.process { color: var(--white); background: var(--brown-950); }
.process .eyebrow { color: var(--oak-light); }
.process h2 { color: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-grid article { position: relative; min-height: 240px; padding: 30px 28px; border-top: 1px solid rgba(255,255,255,0.16); border-right: 1px solid rgba(255,255,255,0.12); }
.process-grid article:last-child { border-right: 0; }
.process-grid span { display: grid; width: 42px; height: 42px; margin-bottom: 42px; place-items: center; border: 1px solid rgba(211,166,111,0.6); color: var(--oak-light); font-size: 0.82rem; font-weight: 900; }
.process-grid h3 { color: var(--white); }
.process-grid p { margin-bottom: 0; color: rgba(255,255,255,0.62); font-size: 0.9rem; }

.areas { background: var(--cream-deep); }
.areas-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: center; gap: 70px; }
.areas-copy p:not(.eyebrow) { max-width: 520px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 12px; color: var(--brown-900); font-weight: 850; text-decoration: none; }
.text-link span { transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(4px); }
.city-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 36px; border: 1px solid rgba(43,28,20,0.12); background: rgba(255,255,255,0.45); }
.city-cloud span { padding: 12px 17px; border: 1px solid rgba(43,28,20,0.14); background: rgba(255,255,255,0.58); font-size: 0.9rem; font-weight: 800; }
.city-cloud span:nth-child(2), .city-cloud span:nth-child(6), .city-cloud span:nth-child(9) { color: var(--white); background: var(--brown-800); }
.city-cloud span:last-child { color: var(--white); background: var(--oak); }

.contact { color: var(--white); background:
  radial-gradient(circle at 10% 0%, rgba(184,121,63,0.22), transparent 40%),
  linear-gradient(130deg, var(--brown-900), var(--brown-950));
}
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: 78px; }
.contact h2 { color: var(--white); }
.contact-copy > p:not(.eyebrow) { max-width: 530px; color: rgba(255,255,255,0.68); font-size: 1.05rem; }
.contact-details { display: grid; gap: 14px; margin-top: 34px; }
.contact-details a { display: flex; flex-direction: column; width: fit-content; text-decoration: none; }
.contact-details span { color: var(--oak-light); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.contact-details strong { margin-top: 4px; color: var(--white); font-size: 1.02rem; overflow-wrap: anywhere; }
.estimate-form { padding: 34px; color: var(--ink); background: var(--white); box-shadow: 0 30px 70px rgba(0,0,0,0.24); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.estimate-form label { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; color: var(--ink); font-size: 0.82rem; font-weight: 800; }
.estimate-form input, .estimate-form select, .estimate-form textarea { width: 100%; border: 1px solid rgba(43,28,20,0.18); border-radius: 0; outline: none; color: var(--ink); background: #fbf8f3; }
.estimate-form input, .estimate-form select { height: 48px; padding: 0 13px; }
.estimate-form textarea { padding: 12px 13px; resize: vertical; }
.estimate-form input:focus, .estimate-form select:focus, .estimate-form textarea:focus { border-color: var(--oak); box-shadow: 0 0 0 3px rgba(184,121,63,0.13); }
.form-note { margin: 12px 0 0; color: var(--ink-soft); font-size: 0.74rem; text-align: center; }

.site-footer { padding: 70px 0 22px; color: var(--white); background: #170e0a; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 0.7fr 1fr; gap: 60px; }
.brand-footer { margin-bottom: 22px; }
.footer-grid > div:first-child p { max-width: 430px; color: rgba(255,255,255,0.54); }
.footer-grid h3 { margin-bottom: 18px; color: var(--oak-light); font-size: 0.76rem; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:not(:first-child) a { margin: 5px 0; color: rgba(255,255,255,0.68); font-size: 0.86rem; text-decoration: none; overflow-wrap: anywhere; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.42); font-size: 0.75rem; }
.footer-bottom a { color: rgba(255,255,255,0.68); text-decoration: none; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms ease; }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 980px) {
  .section { padding: 82px 0; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 20px;
    background: var(--brown-950);
    transition: max-height 240ms ease, padding 240ms ease;
  }
  .primary-nav.open { max-height: 460px; padding-top: 14px; padding-bottom: 22px; }
  .primary-nav a { padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.09); }
  .primary-nav .nav-cta { margin-top: 12px; border: 1px solid rgba(211,166,111,0.45); text-align: center; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 80px; padding-bottom: 90px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 520px; }
  .room-card { inset: 0 6% 0; transform: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .areas-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { width: min(100%, 620px); margin-inline: auto; }
  .about-copy { max-width: 760px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid article:nth-child(2) { border-right: 0; }
  .process-grid article:nth-child(3), .process-grid article:nth-child(4) { border-top-color: rgba(255,255,255,0.12); }
  .footer-grid { grid-template-columns: 1.3fr 0.7fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .section { padding: 68px 0; }
  .brand-copy strong { font-size: 0.79rem; }
  .brand-copy small { font-size: 0.62rem; }
  .brand-mark { width: 42px; height: 42px; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; gap: 44px; padding-top: 65px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions .button { width: 100%; }
  .trust-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .trust-row li { width: fit-content; }
  .hero-visual { min-height: 380px; }
  .room-card { right: 0; left: 0; }
  .room-wall { height: 52%; }
  .window { top: 34px; left: 30px; width: 88px; height: 112px; }
  .sample-board { right: 26px; bottom: 32px; }
  .sample-board span { width: 28px; }
  .quality-badge { right: 0; bottom: 20px; min-width: 210px; }
  .intro-strip-grid { grid-template-columns: 1fr; }
  .intro-strip p { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.25); padding: 18px; }
  .intro-strip p:last-child { border-bottom: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .about-grid { gap: 56px; }
  .about-visual { min-height: 430px; }
  .experience-card { right: 0; width: 170px; height: 130px; }
  .experience-card strong { font-size: 3rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 0; border-right: 0; }
  .process-grid span { margin-bottom: 25px; }
  .city-cloud { padding: 22px; }
  .contact-grid { gap: 44px; }
  .estimate-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}
