:root {
  --paper: #efe7d9;
  --paper-soft: #f7f1e7;
  --ink: #231f18;
  --muted: #6d6255;
  --green: #0f4b34;
  --green-deep: #082d20;
  --gold: #9a7443;
  --line: rgba(35, 31, 24, 0.16);
  --shadow: 0 24px 70px rgba(24, 18, 10, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Georgia", "Times New Roman", serif;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0));
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(16, 13, 9, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.brand img {
  width: clamp(128px, 16vw, 190px);
}

.nav {
  display: flex;
  gap: clamp(14px, 2.5vw, 34px);
  color: #f8f0e4;
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(10, 10, 8, 0.74), rgba(10, 10, 8, 0.2) 56%, rgba(10, 10, 8, 0.62)), linear-gradient(to top, rgba(10, 10, 8, 0.78), rgba(10, 10, 8, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 160px clamp(20px, 5vw, 72px) 58px;
  color: #fbf1e4;
}

.subpage {
  padding-top: 94px;
}

.page-hero {
  padding-top: clamp(82px, 10vw, 132px);
  padding-bottom: clamp(48px, 7vw, 86px);
}

.page-hero h1 {
  max-width: 930px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.92;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d2b27a;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(72px, 12vw, 168px);
  line-height: 0.84;
  font-weight: 400;
}

h2 {
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  font-weight: 400;
}

h3 {
  font-size: 25px;
  font-weight: 400;
}

.hero-line {
  max-width: 620px;
  color: rgba(255, 245, 231, 0.88);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.2;
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  color: #fff8ed;
}

.button.secondary {
  border-color: rgba(255, 248, 237, 0.58);
  color: #fff8ed;
}

.button.secondary.dark {
  border-color: var(--line);
  color: var(--green);
}

.hero-facts {
  margin-top: 34px;
}

.hero-facts span {
  min-width: 190px;
  border-top: 1px solid rgba(255, 248, 237, 0.4);
  padding-top: 12px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: rgba(255, 248, 237, 0.84);
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) 0;
}

.intro,
.features,
.location,
.quality,
.faq,
.lead {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: start;
}

.section-copy p,
.feature-list p,
.lead-copy p,
.location p,
.upgrade-card p,
.faq-list p,
.project-grid p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

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

.stat-grid article,
.upgrade-card,
.lead-form {
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.52);
  box-shadow: var(--shadow);
}

.stat-grid article {
  min-height: 150px;
  padding: 24px;
}

.stat-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 42px;
  font-weight: 400;
}

.stat-grid span {
  color: var(--muted);
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.image-band {
  height: min(78vw, 720px);
}

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

.feature-list {
  display: grid;
  gap: 14px;
}

.features .feature-list {
  margin-top: clamp(34px, 5vw, 56px);
}

.feature-list p {
  margin: 0;
  border-left: 2px solid var(--gold);
  padding: 0 0 0 18px;
}

.text-link {
  color: var(--green);
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.map-card {
  display: block;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  padding: 18px;
  box-shadow: var(--shadow);
}

.map-card img {
  width: 100%;
}

.map-embed {
  min-height: 420px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 384px;
  border: 0;
  background: var(--paper-soft);
}

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

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.plan-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  background: #f8f1e7;
  padding: 14px;
}

.plan-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #e9e0d3;
}

figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.upgrade-card {
  padding: 30px;
}

.faq-list {
  display: grid;
  gap: 22px;
}

.faq-list article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.faq-list h3 {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 24px;
}

.seo-copy,
.article {
  max-width: 920px;
}

.seo-copy p,
.article p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.8;
}

.article h1 {
  margin-bottom: 26px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.95;
}

.article h2 {
  margin-top: 44px;
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 46px);
}

.article-lead {
  font-size: 20px !important;
  color: var(--ink) !important;
}

.seo-links {
  border-top: 1px solid var(--line);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.link-grid a {
  min-height: 104px;
  display: flex;
  align-items: flex-end;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.52);
  padding: 18px;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

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

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

.project-grid article {
  border: 1px solid var(--line);
  background: #f8f1e7;
}

.project-grid-wide article:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.project-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-grid-wide article:first-child img {
  height: 100%;
  aspect-ratio: auto;
}

.project-grid div {
  padding: 22px;
}

.project-grid h2 {
  font-size: clamp(34px, 5vw, 62px);
}

.text-project {
  min-height: 320px;
  display: grid;
  align-items: center;
}

.lead {
  border-top: 1px solid var(--line);
}

.lead-copy h1 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  padding: 13px 12px;
  color: var(--ink);
  font: 16px Arial, sans-serif;
}

.lead-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.form-status a {
  font-weight: 700;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 54px 20px;
  background: var(--green-deep);
  color: #f8f1e7;
  text-align: center;
}

.footer img {
  width: min(220px, 70vw);
}

.footer p,
.footer a {
  margin: 0;
  color: rgba(248, 241, 231, 0.82);
  font-family: Arial, sans-serif;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  .nav {
    gap: 10px;
    font-size: 11px;
  }

  .intro,
  .features,
  .location,
  .quality,
  .faq,
  .lead,
  .gallery,
  .plan-grid,
  .project-grid,
  .link-grid,
  .project-grid-wide,
  .project-grid-wide article:first-child,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .subpage {
    padding-top: 126px;
  }

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

  .hero-content {
    padding-bottom: 42px;
  }

  .features .feature-list {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: grid;
  }

  .nav {
    flex-wrap: wrap;
  }

  h1 {
    font-size: 76px;
  }

  .stat-grid,
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    display: grid;
  }
}
