:root {
  --ink: #171716;
  --muted: #66615b;
  --paper: #fbfaf7;
  --white: #ffffff;
  --sage: #526c63;
  --sage-dark: #263d37;
  --blush: #ead8cf;
  --clay: #ae7f68;
  --line: #ded8cf;
  --shadow: 0 18px 45px rgba(30, 29, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 10px 6vw;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(222, 216, 207, 0.78);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand span {
  max-width: 180px;
  line-height: 1.15;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--sage-dark);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 78svh;
  padding: 74px 6vw 82px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.78), rgba(18, 18, 18, 0.3) 55%, rgba(18, 18, 18, 0.18)),
    url("assets/hero-bathroom-enhanced.jpg") center / cover no-repeat;
}

.hero-content {
  width: min(720px, 100%);
}

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

.hero .eyebrow {
  color: var(--blush);
}

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

h1 {
  margin: 0;
  max-width: 760px;
  font-size: 54px;
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--sage);
  color: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--sage-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
}

.contact .button.secondary {
  background: var(--white);
  color: var(--sage-dark);
  border-color: var(--line);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1120px, calc(100% - 12vw));
  margin: -46px auto 0;
  position: relative;
  z-index: 2;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--line);
}

.trust-strip div {
  min-height: 116px;
  padding: 22px;
  background: var(--white);
}

.trust-strip strong {
  display: block;
  color: var(--sage-dark);
  font-size: 34px;
  line-height: 1;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  width: min(1120px, calc(100% - 12vw));
  margin: 0 auto;
  padding: 94px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

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

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p:first-child {
  margin-top: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.service-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-number {
  display: block;
  margin-bottom: 42px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
}

.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
  align-items: stretch;
  background: var(--sage-dark);
  color: var(--white);
}

.split-image {
  min-height: 520px;
}

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

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px 6vw;
}

.split-content .eyebrow {
  color: var(--blush);
}

.split-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

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

.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blush);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 38px;
}

.gallery figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.gallery .gallery-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 540px;
}

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

.gallery figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(23, 23, 22, 0.76);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.review-band {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 76px 6vw;
  background: var(--blush);
}

.review-band p:last-child {
  margin: 0;
  color: #4c4540;
  font-size: 20px;
}

.contact {
  padding-bottom: 68px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding: 36px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 6vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .trust-strip,
  .service-grid,
  .intro,
  .split-band,
  .review-band,
  .contact-panel {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid {
    gap: 14px;
  }

  .split-content {
    padding: 54px 6vw;
  }

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

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding: 10px 5vw;
  }

  .brand span {
    max-width: none;
  }

  .site-nav {
    justify-content: flex-start;
    width: 100%;
    gap: 8px 14px;
  }

  .hero {
    min-height: 74svh;
    padding: 56px 5vw 72px;
    background:
      linear-gradient(90deg, rgba(18, 18, 18, 0.82), rgba(18, 18, 18, 0.46)),
      url("assets/hero-bathroom-enhanced.jpg") center / cover no-repeat;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  .hero-copy,
  .intro-copy,
  .split-content p,
  .contact-panel p {
    font-size: 17px;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    width: min(100% - 10vw, 1120px);
    margin-top: -34px;
  }

  .trust-strip div {
    min-height: 96px;
    padding: 18px;
  }

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

  .section {
    width: min(100% - 10vw, 1120px);
    padding: 70px 0;
  }

  .intro,
  .service-grid,
  .split-band,
  .review-band,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 390px;
  }

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

  .gallery .gallery-large {
    grid-column: auto;
    grid-row: auto;
    min-height: 430px;
  }

  .gallery figure {
    min-height: 330px;
  }

  .contact-panel {
    padding: 26px;
  }

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

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 30px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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