:root {
  --ink: #202522;
  --muted: #69716d;
  --paper: #f6f3ed;
  --surface: #ffffff;
  --line: #ded8cd;
  --timber: #9b6a43;
  --moss: #536556;
  --clay: #aa654e;
  --charcoal: #252b29;
  --shadow: 0 18px 44px rgba(32, 37, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

.top-offer {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 10px 18px;
  color: #fff;
  background: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
}

.top-offer span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 850;
  font-size: 15px;
}

.brand-mark {
  display: inline-grid;
  width: clamp(54px, 5vw, 72px);
  height: clamp(54px, 5vw, 72px);
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 6px;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

nav {
  gap: clamp(12px, 2.4vw, 30px);
  flex-wrap: wrap;
  justify-content: flex-end;
  color: #3c433f;
  font-size: 13px;
}

.nav-cta {
  padding: 10px 16px;
  color: #fff;
  background: var(--charcoal);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-motion {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: -4%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  animation: heroSlideshow 24s ease-in-out infinite;
  will-change: transform;
}

.slide-one {
  animation-delay: 0s;
}

.slide-two {
  animation-delay: 6s;
}

.slide-three {
  animation-delay: 12s;
}

.slide-four {
  animation-delay: 18s;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 23, 21, 0.7), rgba(18, 23, 21, 0.12) 64%),
    linear-gradient(0deg, rgba(18, 23, 21, 0.68), rgba(18, 23, 21, 0.08) 58%);
}

.hero-sheen {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.12) 44%, transparent 58%);
  mix-blend-mode: screen;
  opacity: 0.42;
  animation: lightSweep 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(590px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 8vw, 92px) clamp(18px, 7vw, 96px);
  color: #fff;
}

@keyframes heroSlideshow {
  0% {
    opacity: 0;
    transform: scale(1.06) translate3d(-1.5%, 0, 0);
  }

  6% {
    opacity: 1;
  }

  25% {
    opacity: 1;
    transform: scale(1.11) translate3d(1.2%, -1.2%, 0);
  }

  31% {
    opacity: 0;
    transform: scale(1.12) translate3d(1.8%, -1.6%, 0);
  }

  100% {
    opacity: 0;
    transform: scale(1.06) translate3d(-1.5%, 0, 0);
  }
}

@keyframes lightSweep {
  0% {
    opacity: 0.24;
    transform: translate3d(-4%, 0, 0);
  }

  100% {
    opacity: 0.48;
    transform: translate3d(4%, 0, 0);
  }
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c39f;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 760;
}

h2 {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 760;
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.2vw, 18px);
}

.hero-actions,
.contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

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

.primary {
  color: #fff;
  background: var(--clay);
}

.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.intro-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(34px, 5vw, 58px) clamp(18px, 6vw, 84px);
  background: #fff;
}

.intro-strip p {
  margin: 0;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 720;
}

.intro-strip p:last-child {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 450;
}

.section,
.materials,
.feature-band,
.cta-tiles,
.contact,
footer {
  padding-inline: clamp(18px, 6vw, 84px);
}

.section {
  padding-block: clamp(64px, 9vw, 104px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.center {
  margin-inline: auto;
  text-align: center;
}

.section-note {
  max-width: 690px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
}

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

.range-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.range-card {
  position: relative;
  min-height: 365px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.range-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 420ms ease;
}

.range-card:hover img {
  transform: scale(1.07);
}

.range-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(37, 43, 41, 0.04), rgba(37, 43, 41, 0.82)),
    linear-gradient(90deg, rgba(37, 43, 41, 0.28), rgba(37, 43, 41, 0));
}

.range-card div {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.range-card span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 850;
}

.range-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding-block: clamp(62px, 8vw, 94px);
  color: #fff;
  background: var(--charcoal);
}

.feature-band .eyebrow {
  color: #f0c39f;
}

.feature-band p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.55vw, 21px);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background: #fff;
}

.service-detail.reverse {
  background: var(--paper);
}

.service-detail.reverse img {
  order: -1;
}

.service-detail-copy {
  max-width: 640px;
}

.service-detail-copy p:not(.eyebrow) {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 20px);
}

.service-detail img {
  width: 100%;
  min-height: 420px;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-detail img.portrait-service-image {
  width: min(100%, 520px);
  height: auto;
  min-height: 0;
  max-height: 720px;
  object-fit: contain;
  justify-self: center;
  background: var(--paper);
}

.materials {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding-block: clamp(64px, 9vw, 104px);
  background: #fff;
}

.materials-content {
  max-width: 700px;
}

.materials-content p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 20px);
}

.material-page-link {
  margin-top: 24px;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px;
}

.swatch {
  position: relative;
  display: grid;
  min-height: 148px;
  align-items: end;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  font-weight: 850;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.material-photo {
  min-height: 170px;
  background: var(--charcoal);
}

.material-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 360ms ease;
}

.material-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 37, 34, 0.04), rgba(32, 37, 34, 0.54));
}

.material-photo:hover img {
  transform: scale(1.06);
}

.material-photo strong {
  position: relative;
  z-index: 1;
  color: #fff;
}

.timber {
  background: linear-gradient(135deg, #875b3a, #c28a58);
}

.stone {
  color: var(--ink);
  background: linear-gradient(135deg, #d8d3ca, #f4f0e8);
}

.white {
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid var(--line);
}

.charcoal {
  background: linear-gradient(135deg, #1f2725, #59615d);
}

.cta-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-block: 20px 0;
  background: var(--paper);
}

.cta-tile {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.cta-tile.dark {
  color: #fff;
  background: var(--moss);
}

.cta-tile strong {
  font-size: clamp(24px, 2.6vw, 36px);
}

.cta-tile span {
  color: var(--muted);
}

.cta-tile.dark span {
  color: rgba(255, 255, 255, 0.74);
}

.work {
  background: var(--paper);
}

.upload-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(320px, 1fr);
  gap: 20px;
  align-items: stretch;
}

.upload-panel input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.upload-drop {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px;
  border: 1px dashed rgba(83, 101, 86, 0.55);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.upload-drop:hover {
  border-color: var(--moss);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.upload-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: auto;
  border-radius: 50%;
  color: #fff;
  background: var(--moss);
  font-size: 28px;
  line-height: 1;
}

.upload-drop strong {
  font-size: 22px;
}

.upload-drop small {
  color: var(--muted);
  font-size: 14px;
}

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

.project-placeholder,
.project-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
}

.project-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(37, 43, 41, 0.86), rgba(83, 101, 86, 0.72)),
    linear-gradient(135deg, #d8d3ca, #9b6a43);
}

.project-placeholder span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 850;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  display: block;
}

.project-card strong {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(32, 37, 34, 0.72);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.steps article {
  padding: 24px 18px 0 0;
  border-right: 1px solid var(--line);
}

.steps article:last-child {
  border-right: 0;
}

.steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--charcoal);
  font-weight: 850;
}

.steps p {
  color: var(--muted);
}

.contact {
  justify-content: space-between;
  padding-block: clamp(58px, 8vw, 92px);
  color: #fff;
  background: var(--charcoal);
}

.contact div {
  max-width: 760px;
}

.contact .eyebrow {
  color: #f0c39f;
}

.contact h2 {
  margin-bottom: 18px;
}

.contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.45vw, 20px);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 26px;
  color: var(--muted);
  font-size: 14px;
  background: #fff;
}

footer div:first-child {
  display: grid;
  gap: 4px;
}

footer div:first-child span:first-child {
  color: var(--ink);
  font-weight: 850;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-links a[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.contact-info {
  background: #fff;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.contact-methods a {
  display: grid;
  min-height: 92px;
  align-content: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-methods strong {
  font-size: 16px;
}

.contact-methods span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.materials-hero {
  display: grid;
  min-height: 430px;
  align-items: end;
  padding: clamp(70px, 10vw, 130px) clamp(18px, 6vw, 84px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(37, 43, 41, 0.9), rgba(37, 43, 41, 0.62)),
    url("assets/materials-cabinet-finishes.png") center / cover;
}

.materials-hero > div {
  max-width: 760px;
}

.lead-dark {
  max-width: 660px;
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.45vw, 20px);
}

.materials-library {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.material-feature {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.82fr);
  gap: clamp(26px, 6vw, 84px);
  align-items: center;
  padding: clamp(46px, 7vw, 90px) clamp(18px, 6vw, 84px);
  background: #fff;
}

.material-feature.reverse img {
  order: 2;
}

.material-feature img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.material-feature p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
}

.material-feature ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.sample-grid-section {
  padding: clamp(64px, 9vw, 104px) clamp(18px, 6vw, 84px);
  background: var(--paper);
}

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

.sample-grid article {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.sample-chip {
  display: block;
  width: 100%;
  min-height: 120px;
  border-radius: 8px;
}

.sample-grid strong {
  font-size: 20px;
}

.sample-grid p {
  margin: 0;
  color: var(--muted);
}

.warm-oak {
  background: linear-gradient(135deg, #9b6a43, #c89a6e);
}

.matt-white {
  background: linear-gradient(135deg, #f8f6f0, #ded8cd);
}

.stone-look {
  background: linear-gradient(135deg, #f4f0e8, #c7c0b6);
}

.brushed-brass {
  background: linear-gradient(135deg, #9d7042, #d1a569);
}

.charcoal-look {
  background: linear-gradient(135deg, #1f2725, #59615d);
}

.soft-grey {
  background: linear-gradient(135deg, #c7cbc6, #f1f0eb);
}

.materials-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(56px, 8vw, 88px) clamp(18px, 6vw, 84px);
  color: #fff;
  background: var(--charcoal);
}

.materials-cta div {
  max-width: 760px;
}

.materials-cta .eyebrow {
  color: #f0c39f;
}

.materials-cta p {
  color: rgba(255, 255, 255, 0.72);
}

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

  .contact-methods {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
  }
}

@media (max-width: 820px) {
  .top-offer {
    align-items: center;
    flex-direction: column;
    gap: 3px;
  }

  .site-header {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .intro-strip,
  .feature-band,
  .service-detail,
  .material-feature,
  .materials,
  .upload-panel,
  .cta-tiles {
    grid-template-columns: 1fr;
  }

  .range-grid,
  .gallery-preview,
  .contact-methods,
  .sample-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .material-feature.reverse img {
    order: 0;
  }

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

  .service-detail.reverse img {
    order: 0;
  }

  .service-detail img {
    min-height: 300px;
  }

  .range-card,
  .project-placeholder,
  .project-card,
  .project-card img {
    min-height: 280px;
  }

  .contact {
    align-items: flex-start;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    max-width: 190px;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin-inline: 16px;
    margin-bottom: 42px;
  }

  h1 {
    font-size: 31px;
  }

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

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

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

  .hero-slide,
  .hero-sheen,
  .button {
    animation: none;
    transition: none;
  }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-strip div {
  display: flex;
  min-height: 88px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px clamp(18px, 3vw, 34px);
  background: #fff;
}

.trust-strip strong {
  font-size: 18px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.trust-badge-item {
  align-items: center;
  flex-direction: row !important;
  justify-content: flex-start !important;
  gap: 14px !important;
}

.trust-badge-item img {
  width: 48px;
  max-width: 100%;
  height: auto;
  margin: 0;
  opacity: 0.95;
}

.trust-badge-item span {
  max-width: 190px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.why {
  background: #fff;
}

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

.why-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.why-grid span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--clay);
  font-weight: 850;
}

.why-grid p {
  color: var(--muted);
}

.about-values {
  padding-block: clamp(46px, 6vw, 72px);
}

.about-values .section-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.about-values .section-heading h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
}

.about-values .why-grid {
  gap: 12px;
}

.about-values .why-grid article {
  min-height: 176px;
  padding: 22px;
}

.about-values .why-grid span {
  margin-bottom: 26px;
}

.about-values .why-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.about-values .why-grid p {
  margin: 0;
  font-size: 15px;
}

.static-card {
  box-shadow: var(--shadow);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 0.72fr);
  align-items: start;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-details a {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
}

.contact-details span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
}

.enquiry-form {
  display: grid;
  gap: 14px;
  width: 100%;
  padding: 24px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: #3c433f;
  font-size: 13px;
  font-weight: 800;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf6;
  font: inherit;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 13px !important;
}

.sticky-enquire {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--clay);
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(32, 37, 34, 0.28);
}

@media (max-width: 820px) {
  .trust-strip,
  .why-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .sticky-enquire {
    left: 16px;
    right: 16px;
  }
}

.page-hero {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 7vw, 110px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero > div {
  max-width: 860px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}

.page-hero .lead-dark {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
}

.page-hero .button {
  margin-top: 30px;
}

.page-hero.warm {
  background: #f5efe6;
}

.page-hero.dark-page {
  background: #27312d;
}

.page-hero.dark-page h1,
.page-hero.dark-page .lead-dark {
  color: #fff;
}

.page-hero.compact-contact {
  padding-block: clamp(56px, 7vw, 92px);
  text-align: center;
}

.page-hero.compact-contact > div {
  margin-inline: auto;
}

.about-hero-image {
  position: relative;
  min-height: clamp(520px, 72vh, 780px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #1f2522;
}

.about-hero-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 24, 22, 0.68), rgba(20, 24, 22, 0.28) 48%, rgba(20, 24, 22, 0.12));
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: clamp(76px, 10vw, 128px) clamp(18px, 7vw, 110px);
}

.about-hero-copy h1 {
  margin: 0;
  max-width: 850px;
  color: #fff;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.about-hero-copy .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.story-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.story-copy {
  max-width: 650px;
}

.story-copy p:not(.eyebrow) {
  color: var(--muted);
}

.owned-badge {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.owned-badge img {
  width: 92px;
  height: auto;
}

.owned-badge p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.story-section img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

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

.service-gallery-section {
  background: #fff;
}

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

.service-gallery-grid article {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background: var(--paper);
}

.service-gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-gallery-grid article:hover img {
  transform: scale(1.04);
}

.service-gallery-grid span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(31, 37, 34, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.compact-service-gallery {
  padding-top: 0;
}

.vanity-intro {
  padding-bottom: 28px;
}

.vanity-intro .button {
  margin-top: 24px;
}

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

.service-gallery-grid-two article,
.service-gallery-grid-two img {
  min-height: 360px;
}

.vanity-gallery-grid article {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.vanity-gallery-grid img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
}

.contact-methods.contact-methods-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.compact-info {
  padding-top: clamp(30px, 4vw, 54px);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
}

.footer-badge img {
  width: 54px;
  height: auto;
  opacity: 0.92;
}

.site-footer {
  display: grid;
  gap: 18px;
  align-items: stretch;
  padding-block: 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand-block {
  display: grid;
  gap: 6px;
}

.footer-brand-block strong {
  color: var(--ink);
  font-size: 16px;
}

.footer-brand-block a,
.footer-links a,
.footer-legal a,
.legal-page a {
  color: var(--ink);
  text-decoration: none;
}

.footer-links,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-legal {
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 13px;
}

.legal-page {
  max-width: 860px;
  margin-inline: auto;
  padding: clamp(70px, 10vw, 120px) clamp(18px, 6vw, 60px);
}

.legal-page h1 {
  margin-top: 0;
}

.legal-page p {
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .story-section,
  .expanded-gallery,
  .service-gallery-grid,
  .contact-methods.contact-methods-five {
    grid-template-columns: 1fr;
  }

  .page-hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .about-hero-image {
    min-height: 620px;
  }

  .about-hero-overlay {
    background: linear-gradient(180deg, rgba(20, 24, 22, 0.2), rgba(20, 24, 22, 0.76));
  }

  .about-hero-copy h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .story-section img {
    min-height: 300px;
  }

  .owned-badge {
    grid-template-columns: 72px 1fr;
  }

  .owned-badge img {
    width: 72px;
  }

  .footer-main,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

@media (max-width: 640px) {
  .trust-strip {
    grid-template-columns: 1fr;
  }
}

/* Comfortable final scale pass */
body {
  font-size: 15px;
}

h1 {
  font-size: clamp(31px, 3.6vw, 50px);
  line-height: 1.04;
}

h2 {
  font-size: clamp(25px, 2.7vw, 38px);
  line-height: 1.08;
}

h3 {
  font-size: 19px;
}

.lead,
.lead-dark,
.section-note,
.service-detail-copy p:not(.eyebrow),
.contact-copy p {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
}

.section {
  padding-block: clamp(46px, 6vw, 76px);
}

.section-heading {
  margin-bottom: 26px;
}

.hero {
  min-height: 64vh;
}

.hero-copy {
  max-width: 600px;
}

.hero-copy h1 {
  font-size: clamp(34px, 4.4vw, 58px);
}

.page-hero {
  padding-block: clamp(52px, 7vw, 88px);
}

.page-hero h1 {
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.04;
}

.about-hero-image {
  min-height: clamp(430px, 58vh, 620px);
}

.about-hero-copy {
  padding-block: clamp(56px, 8vw, 96px);
}

.about-hero-copy h1 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
}

.range-card {
  min-height: 300px;
}

.range-card p {
  font-size: 14px;
  line-height: 1.55;
}

.service-detail {
  gap: clamp(22px, 4vw, 54px);
}

.service-detail img {
  min-height: 330px;
  max-height: 460px;
}

.service-detail img.portrait-service-image {
  max-height: 580px;
}

.project-card,
.project-card img {
  min-height: 280px;
}

.service-gallery-grid article,
.service-gallery-grid img {
  min-height: 320px;
}

.service-gallery-grid-two article,
.service-gallery-grid-two img {
  min-height: 300px;
}

.kitchen-single-gallery {
  grid-template-columns: minmax(0, 1fr);
  max-width: 980px;
  margin-inline: auto;
}

.kitchen-single-gallery article,
.kitchen-single-gallery img {
  min-height: 340px;
}

.vanity-gallery-grid article {
  aspect-ratio: 4 / 3;
}

.vanity-gallery-grid {
  max-width: 980px;
  margin-inline: auto;
}

.vanity-gallery-grid article,
.vanity-gallery-grid img {
  min-height: 0;
  max-height: 360px;
}

.vanity-gallery-grid img {
  object-fit: contain;
  object-position: center center;
  background: var(--paper);
}

.vanity-showcase {
  padding-bottom: clamp(56px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
}

.vanity-showcase + #custom-carpentry {
  padding-top: clamp(64px, 8vw, 104px);
}

.why-grid article {
  min-height: 205px;
  padding: 24px;
}

.why-grid span {
  margin-bottom: 30px;
}

.contact-methods a {
  min-height: 82px;
}

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

  .about-hero-image {
    min-height: 520px;
  }

  .range-card,
  .project-card,
  .project-card img,
  .service-gallery-grid article,
  .service-gallery-grid img {
    min-height: 260px;
  }
}
