:root {
  color-scheme: light;
  --ink: #20261f;
  --muted: #667161;
  --line: #d4d2c8;
  --paper: #f7f5ef;
  --white: #fffdf8;
  --lime: #a8e11d;
  --green: #466146;
  --green-soft: #e2eadc;
  --gold: #f4c35f;
  --gold-dark: #b98d32;
}

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

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

.nav {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 239, 0.96);
}

.nav-inner {
  align-items: center;
  display: flex;
  height: 80px;
  justify-content: flex-start;
  margin: 0;
  max-width: none;
  padding: 0 20px 0 4px;
}

.brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: 58px;
  width: 218px;
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 16px;
  font-weight: 800;
  margin-left: auto;
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a:not([aria-current="page"]) {
  color: var(--muted);
}

.hero {
  min-height: calc(100vh - 80px);
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(17, 24, 20, 0.88), rgba(17, 24, 20, 0.58) 48%, rgba(17, 24, 20, 0.12)),
    url("./assets/hero-renovation.png") center / cover;
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content {
  align-content: center;
  color: var(--white);
  display: grid;
  margin: 0 auto;
  max-width: 1180px;
  min-height: calc(100vh - 80px);
  padding: 70px 28px;
  position: relative;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(46px, 8vw, 86px);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 16px 0 24px;
  max-width: 760px;
}

.hero p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.9);
  font-size: 18px;
  line-height: 1.75;
  max-width: 650px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}

.button {
  align-items: center;
  border-radius: 0;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 54px;
  padding: 0 22px;
  position: relative;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.button.primary {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 253, 248, 0.82);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  color: #171717;
}

.button.primary::after {
  background: var(--gold);
  bottom: -1px;
  content: "";
  height: 4px;
  left: -1px;
  position: absolute;
  right: -1px;
}

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

.button.secondary {
  background: transparent;
  border: 0;
  color: var(--white);
  min-height: auto;
  padding: 0 0 7px;
}

.button.secondary::after {
  background: currentColor;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

.button.secondary:hover {
  background: transparent;
  color: var(--gold);
}

.cta .button.primary {
  background: transparent;
  border-color: rgba(255, 253, 248, 0.8);
  color: var(--white);
}

.cta .button.primary:hover {
  background: rgba(255, 253, 248, 0.08);
  border-color: var(--white);
}

.strip {
  background: #eef2ed;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.strip-inner {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
  padding: 24px 28px;
}

.strip-item {
  align-items: center;
  display: flex;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 60px 28px;
}

.split {
  display: grid;
  gap: 46px;
  grid-template-columns: 0.82fr 1fr;
}

h2 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin: 10px 0 18px;
}

.lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.service-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(32, 38, 31, 0.06);
}

.service-card {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(168, 225, 29, 0.08), rgba(255, 253, 248, 0) 45%),
    var(--white);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  min-height: 86px;
  overflow: hidden;
  padding: 18px;
  position: relative;
  text-align: center;
}

.service-card::after {
  background: var(--gold);
  content: "";
  height: 4px;
  left: 22px;
  position: absolute;
  right: 22px;
  top: 0;
}

.service-card:nth-child(even)::after {
  background: var(--lime);
}

.service-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.contact-icon {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.service-card h3 {
  font-size: 20px;
  margin: 0;
}

.cta {
  background: #171717;
  color: var(--white);
}

.cta-inner {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: 1180px;
  padding: 56px 28px;
}

.cta h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.cta p {
  color: rgba(255, 253, 248, 0.75);
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
}

.contact-layout {
  display: grid;
  gap: 44px;
  grid-template-columns: 0.9fr 1.1fr;
}

.about-layout {
  max-width: 850px;
}

.contact-page h1 {
  color: var(--ink);
}

.about-page h1 {
  color: var(--ink);
  font-size: clamp(42px, 6vw, 70px);
}

.service-area-band {
  background: #eef2ed;
  border-top: 1px solid var(--line);
}

.service-area-section {
  padding-top: 54px;
}

.area-list {
  columns: 2;
  column-gap: 56px;
  list-style: none;
  margin-top: 28px;
  max-width: 720px;
  padding: 0;
}

.area-list li {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  padding: 12px 0;
}

.fact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.fact-list p {
  align-items: center;
  display: flex;
  font-weight: 900;
  gap: 10px;
  margin: 0;
}

.contact-card {
  padding: 32px;
}

.contact-card h2 {
  font-size: 28px;
  margin: 0 0 10px;
}

.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-option {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 16px;
  padding: 16px;
}

.contact-option:hover {
  border-color: var(--gold-dark);
}

.contact-icon {
  background: var(--ink);
  color: var(--white);
}

.contact-option small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-option strong {
  display: block;
  margin-top: 4px;
}

.note {
  background: var(--green-soft);
  border-radius: 8px;
  color: var(--ink);
  margin-top: 28px;
  padding: 20px;
}

.note strong {
  color: var(--green);
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.note p {
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 760px) {
  .nav-inner {
    padding: 0 12px 0 2px;
  }

  .brand-logo {
    height: 46px;
    width: 174px;
  }

  .nav-links {
    gap: 16px;
    font-size: 14px;
  }

  .hero-content,
  .section,
  .cta-inner,
  .strip-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .strip-inner,
  .split,
  .service-grid,
  .cta-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .area-list {
    columns: 1;
  }

  .button {
    width: 100%;
  }

  .button.secondary {
    justify-self: start;
    width: auto;
  }
}
