:root {
  --ink: #18211f;
  --muted: #5b6662;
  --paper: #f7f4ef;
  --surface: #ffffff;
  --soft: #e8e1d6;
  --accent: #b85b24;
  --accent-dark: #813d1c;
  --coal: #202824;
  --line: rgba(24, 33, 31, 0.14);
  --shadow: 0 24px 60px rgba(24, 33, 31, 0.14);
}

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

a {
  color: inherit;
}

.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: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(247, 244, 239, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--coal);
  border-radius: 6px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(184, 91, 36, 0.1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100svh - 76px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(24, 33, 31, 0.95), rgba(24, 33, 31, 0.78) 52%, rgba(24, 33, 31, 0.55)),
    linear-gradient(135deg, #29302d, #151b19);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: auto auto auto clamp(18px, 7vw, 96px);
  padding: 70px 0;
  animation: rise-in 620ms ease both;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead,
.page-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.03rem, 1.8vw, 1.28rem);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0a16d;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

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

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.btn.secondary.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-tags span {
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

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

.block,
.line {
  position: absolute;
  display: block;
}

.block {
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  animation: slow-shift 8s ease-in-out infinite alternate;
}

.block-one {
  right: 11vw;
  top: 18vh;
  width: min(27vw, 360px);
  aspect-ratio: 1.3;
}

.block-two {
  right: 2vw;
  bottom: 12vh;
  width: min(22vw, 280px);
  aspect-ratio: 0.95;
  animation-delay: 600ms;
}

.block-three {
  right: 28vw;
  bottom: 18vh;
  width: min(12vw, 170px);
  aspect-ratio: 1;
  background: rgba(184, 91, 36, 0.32);
}

.line {
  right: 0;
  width: 55vw;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(-17deg);
}

.line-one {
  top: 34%;
}

.line-two {
  top: 63%;
}

.section,
.services-preview,
.service-list,
.contact-grid,
.page-hero,
.cta-section,
.location-band {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 12px 0 8px;
  font-size: 1.24rem;
  line-height: 1.2;
}

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

.services-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 56px;
  background: var(--line);
}

.services-preview article,
.service-list article,
.contact-grid article,
.solid-panel {
  background: var(--surface);
}

.services-preview article {
  padding: clamp(24px, 4vw, 40px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.services-preview article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.services-preview span {
  color: var(--accent);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.text-column p {
  font-size: 1.04rem;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px;
  background: var(--surface);
  border-left: 4px solid var(--accent);
}

.steps strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--coal);
  border-radius: 6px;
}

.steps p {
  margin: 0;
}

.location-band,
.cta-section {
  margin-top: 40px;
  margin-bottom: 80px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
}

.location-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1fr);
  gap: clamp(24px, 5vw, 60px);
  background: #e9dfd2;
}

.location-band p {
  margin-bottom: 0;
}

.cta-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(32, 40, 36, 0.98), rgba(32, 40, 36, 0.9)),
    var(--coal);
}

.cta-section h2,
.cta-section p {
  max-width: 760px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-section.compact {
  margin-top: 72px;
}

.page-hero {
  padding: 82px 0 58px;
}

.page-hero h1 {
  max-width: 920px;
  color: var(--ink);
  font-size: clamp(2.2rem, 5.2vw, 4.7rem);
}

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

.service-list,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.service-list article,
.contact-grid article {
  padding: clamp(24px, 4vw, 40px);
}

.service-list h2,
.contact-grid h2,
.solid-panel h2 {
  font-size: clamp(1.28rem, 2vw, 1.7rem);
}

.solid-panel {
  padding: clamp(24px, 4vw, 40px);
  border-top: 5px solid var(--accent);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--accent);
  content: "■";
}

.contact-link {
  display: inline-block;
  color: var(--accent-dark);
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
}

.contact-link.text {
  color: var(--ink);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--coal);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #fff;
}

.site-footer address {
  margin: 0;
  text-align: right;
  font-style: normal;
}

.site-footer a {
  color: #fff;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slow-shift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-14px, 10px, 0);
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero-content {
    width: min(100% - 36px, 720px);
    margin: auto;
    padding: 52px 0;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 4.1rem);
  }

  .block-one {
    right: -20vw;
    top: 12vh;
    width: 58vw;
  }

  .block-two {
    right: -18vw;
    bottom: 10vh;
    width: 48vw;
  }

  .intro-grid,
  .split-section,
  .location-band,
  .service-list,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-preview {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .site-footer {
    display: block;
  }

  .site-footer address {
    margin-top: 18px;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand small {
    max-width: 170px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

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

  .btn {
    width: 100%;
  }

  .hero-tags span {
    font-size: 0.92rem;
  }
}


.home-photo-strip,
.gallery-grid {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.home-photo-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.home-photo-strip img,
.service-list-photo img,
.gallery-grid img {
  display: block;
  width: 100%;
  object-fit: cover;
  background: var(--soft);
}

.home-photo-strip img {
  height: clamp(210px, 28vw, 360px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-list-photo article {
  display: flex;
  flex-direction: column;
}

.service-list-photo img {
  height: 250px;
  margin: calc(clamp(24px, 4vw, 40px) * -1) calc(clamp(24px, 4vw, 40px) * -1) 24px;
  width: calc(100% + (clamp(24px, 4vw, 40px) * 2));
}

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

.gallery-grid figure {
  overflow: hidden;
  margin: 0;
  background: var(--surface);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(24, 33, 31, 0.1);
}

.gallery-grid img {
  height: 285px;
  transition: transform 220ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  padding: 14px 16px 18px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.3;
}


@media (max-width: 900px) {
  .home-photo-strip,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid img {
    height: 240px;
  }
}

@media (max-width: 620px) {
  .home-photo-strip,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .home-photo-strip img,
  .gallery-grid img,
  .service-list-photo img {
    height: 220px;
  }
}
