:root {
  --ink: #172721;
  --muted: #5f6b62;
  --line: #dce2dc;
  --paper: #ffffff;
  --mist: #f4f6f3;
  --sage: #536b48;
  --sage-dark: #3f573a;
  --terracotta: #c9673f;
  --shell: #f8f8f5;
  --shadow: 0 20px 70px rgba(23, 39, 33, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  position: fixed;
  inset: 72px auto auto 0;
  width: 150px;
  height: 420px;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(
      164deg,
      rgba(83, 107, 72, 0.13) 0 3px,
      transparent 3px 14px
    );
  mask-image: linear-gradient(90deg, #000, transparent);
  opacity: 0.55;
  z-index: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 14px clamp(20px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 226, 220, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #263f2e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  width: 18px;
  height: 28px;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(140deg, #7d9a6e, #405839);
  transform: rotate(17deg);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 32px);
  font-size: 0.95rem;
  color: #2f3934;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover,
.phone-link:hover,
.header-phone:hover,
.site-footer a:hover {
  color: var(--sage);
}

.header-phone {
  color: #40523f;
  font-weight: 650;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 4px;
  background: var(--sage);
  color: #fff;
  box-shadow: 0 12px 28px rgba(63, 87, 58, 0.18);
  cursor: pointer;
  font: 700 1rem/1 Inter, ui-sans-serif, system-ui, sans-serif;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--sage-dark);
  box-shadow: 0 16px 36px rgba(63, 87, 58, 0.24);
  transform: translateY(-1px);
}

.button-small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  min-height: min(760px, calc(100svh - 184px));
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 35%, #f7f8f5 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  min-width: 0;
  max-width: 720px;
  padding: clamp(52px, 8vw, 112px) 24px clamp(58px, 7vw, 96px) clamp(24px, 6.8vw, 102px);
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.reviews h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
}

.hero-copy h1 {
  max-width: 660px;
  font-size: clamp(3.2rem, 6.4vw, 6.5rem);
  line-height: 0.95;
}

.hero-copy p {
  max-width: 590px;
  margin: 28px 0 0;
  color: #33413b;
  font-size: clamp(1.06rem, 1.5vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2f3934;
  font-weight: 650;
}

.phone-link span {
  color: var(--sage);
}

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

.hero-image::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 32%;
  content: "";
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.84) 38%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.services-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.services-strip article {
  min-height: 190px;
  padding: 30px 22px 26px;
  text-align: center;
  border-right: 1px solid var(--line);
}

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

.services-strip h2 {
  margin: 14px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
}

.services-strip p {
  max-width: 220px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-icon {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  color: var(--sage);
}

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

.roller::before {
  width: 30px;
  height: 10px;
  border: 2px solid currentColor;
  left: 2px;
  top: 5px;
}

.roller::after {
  width: 2px;
  height: 25px;
  background: currentColor;
  left: 22px;
  top: 15px;
  box-shadow: 8px -1px 0 -1px currentColor;
}

.house::before {
  width: 24px;
  height: 24px;
  left: 9px;
  top: 15px;
  border: 2px solid currentColor;
}

.house::after {
  width: 25px;
  height: 25px;
  left: 8px;
  top: 3px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.paper::before {
  inset: 4px 10px 5px 8px;
  border: 2px solid currentColor;
  border-right-width: 8px;
}

.paper::after {
  width: 12px;
  height: 20px;
  right: 6px;
  bottom: 2px;
  border: 2px solid currentColor;
  border-left: 0;
  border-radius: 0 0 10px 0;
}

.trim {
  color: var(--terracotta);
}

.trim::before,
.trim::after {
  left: 6px;
  width: 30px;
  border: 2px solid currentColor;
}

.trim::before {
  top: 8px;
  height: 11px;
}

.trim::after {
  top: 23px;
  height: 10px;
  box-shadow: 0 8px 0 -2px currentColor;
}

.key::before {
  width: 18px;
  height: 18px;
  right: 4px;
  top: 4px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.key::after {
  width: 29px;
  height: 2px;
  left: 4px;
  top: 25px;
  background: currentColor;
  transform: rotate(-35deg);
  box-shadow: -7px 6px 0 -1px currentColor;
}

.quality,
.projects,
.reviews,
.contact {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.quality {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 7vw, 96px);
  background: var(--shell);
}

.section-note {
  margin: 0 0 14px;
  color: var(--sage);
  font-weight: 700;
}

.section-copy h2,
.section-heading h2,
.reviews h2,
.contact h2 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1.03;
}

.section-copy > p:not(.section-note),
.section-heading p,
.contact-copy > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--sage);
  font-weight: 800;
}

.process-list h3,
.project-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.process-list h3,
.process-list p {
  grid-column: 2;
}

.process-list p,
.project-card p,
.reviews p,
.contact li {
  margin: 0;
  color: var(--muted);
}

.projects {
  background: #fff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 36px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 54px rgba(23, 39, 33, 0.06);
}

.paint-sample {
  height: 190px;
  margin: -28px -28px 24px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.34), transparent 45%),
    var(--sample);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  flex: 0 0 auto;
  height: clamp(210px, 12.4vw, 240px);
  padding: 8px;
  overflow: hidden;
  background: #eef2ed;
}

.project-gallery img {
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  object-position: center;
}

.project-card-body {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  padding: 28px;
  background: #fff;
}

.project-sage {
  --sample: #87977e;
}

.project-clay {
  --sample: #bd7658;
}

.project-cream {
  --sample: #e7e4d7;
}

.reviews {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 82px);
  background: #eef2ed;
}

.review-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

blockquote {
  margin: 0;
  padding: 30px;
  border-left: 3px solid var(--terracotta);
  background: rgba(255, 255, 255, 0.72);
}

blockquote p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1.35;
  color: var(--ink);
}

cite {
  display: block;
  margin-top: 22px;
  color: var(--sage);
  font-style: normal;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(32px, 7vw, 92px);
  background: var(--ink);
  color: #fff;
}

.contact h2,
.contact-copy > p,
.contact li {
  color: #fff;
}

.contact-copy > p,
.contact li {
  opacity: 0.78;
}

.contact ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.contact li::before {
  margin-right: 10px;
  color: #a9c09b;
  content: "✓";
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.quote-form label:nth-child(4),
.quote-form button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font: 500 1rem/1.4 Inter, ui-sans-serif, system-ui, sans-serif;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(169, 192, 155, 0.36);
  outline-offset: 0;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: #101d18;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
}

.company-line {
  margin-top: 6px !important;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 20px;
  max-width: 620px;
  font-size: 0.94rem;
}

.legal-page {
  background: var(--shell);
}

.legal-hero {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px) 42px;
  background: #fff;
}

.legal-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 500;
  line-height: 0.98;
}

.legal-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.legal-content {
  max-width: 900px;
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 72px) clamp(72px, 9vw, 120px);
}

.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 500;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-details {
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-content a {
  color: var(--sage-dark);
  font-weight: 700;
}

.legal-details {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.legal-details div {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.legal-details dt {
  color: var(--ink);
  font-weight: 800;
}

.legal-details dd {
  margin: 0;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav,
  .header-phone {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
    min-height: min(660px, calc(100svh - 120px));
  }

  .hero-copy {
    max-width: 520px;
    padding: 52px 18px 58px clamp(28px, 5vw, 64px);
  }

  .hero-copy h1 {
    font-size: clamp(3.35rem, 6.4vw, 4.85rem);
  }

  .hero-copy p {
    max-width: 440px;
    font-size: 1.02rem;
  }

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

  .hero-image::before {
    width: 22%;
  }

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

  .project-card {
    min-width: 0;
  }

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

  .services-strip article:nth-child(2n) {
    border-right: 0;
  }

  .services-strip article:last-child {
    grid-column: 1 / -1;
  }

  .quality,
  .reviews,
  .contact,
  .section-heading {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body::before {
    display: none;
  }

  .site-header {
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 1.35rem;
  }

  .button-small {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.55rem);
  }

  .hero-copy {
    padding: 42px 20px 52px;
  }

  .hero-copy p {
    max-width: min(320px, calc(100vw - 40px));
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .phone-link {
    font-size: 0.98rem;
    white-space: normal;
  }

  .hero-image {
    min-height: 290px;
  }

  .hero-image::before {
    display: none;
  }

  .services-strip,
  .project-grid,
  .review-list,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .services-strip article,
  .services-strip article:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services-strip article:last-child {
    grid-column: auto;
    border-bottom: 0;
  }

  .quality,
  .projects,
  .reviews,
  .contact {
    padding: 58px 20px;
  }

  .process-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-list h3,
  .process-list p {
    grid-column: auto;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .legal-details div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

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