:root {
  --green: #0F4A2D;
  --green-dark: #0A2F1E;
  --charcoal: #333333;
  --gold: #B89A55;
  --stone: #F7F4EC;
  --stone-2: #EFE8DC;
  --white: #FFFFFF;
  --muted: #67625B;
  --border: rgba(51, 51, 51, .14);
  --shadow: 0 22px 55px rgba(15, 74, 45, .14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--charcoal);
  background: var(--stone);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow { width: min(860px, calc(100% - 40px)); }
.section { padding: 86px 0; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 14px;
  background: var(--green);
  color: var(--white);
  padding: 10px 14px;
  z-index: 10;
}
.skip-link:focus { left: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(247, 244, 236, .93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 88px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 230px;
}
.brand img { width: 62px; height: 62px; object-fit: contain; }
.brand-text span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: .02em;
  color: var(--green-dark);
}
.brand-text small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 24px;
  font-size: .94rem;
}
.nav a { text-decoration: none; color: var(--charcoal); }
.nav a:hover { color: var(--green); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: 0 8px 22px rgba(15, 74, 45, .18);
}
.button:hover { background: var(--green-dark); border-color: var(--green-dark); }
.button-outline { background: transparent; color: var(--green); box-shadow: none; }
.button-outline:hover { color: var(--white); }
.button-small { min-height: 42px; padding: 10px 16px; font-size: .93rem; }

.hero {
  padding: 72px 0 86px;
  background:
    radial-gradient(circle at 85% 20%, rgba(184, 154, 85, .20), transparent 32%),
    linear-gradient(135deg, var(--stone), #fffdf7 65%);
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
}
h1, h2, h3 {
  margin: 0;
  color: var(--green-dark);
  line-height: 1.08;
}
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 700; }
h1 { font-size: clamp(2.55rem, 5vw, 4.85rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2rem, 3vw, 3.3rem); letter-spacing: -.035em; }
h3 { font-size: 1.2rem; }
.lead {
  margin: 24px 0 0;
  font-size: 1.24rem;
  color: var(--muted);
  max-width: 650px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.trust-list li {
  padding: 8px 13px;
  border: 1px solid rgba(184, 154, 85, .45);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
  color: var(--green-dark);
  font-size: .94rem;
}
.hero-card {
  background: var(--white);
  padding: 12px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(184, 154, 85, .22);
  transform: rotate(.6deg);
}
.hero-card img {
  border-radius: 22px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 58%;
  width: 100%;
}
.hero-card-caption {
  padding: 14px 8px 4px;
  color: var(--muted);
  font-size: .93rem;
}

.intro {
  background: var(--green);
  color: var(--stone);
  padding: 42px 0;
}
.intro p { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.25rem, 2vw, 1.75rem); line-height: 1.45; margin: 0; }

.section-heading { margin-bottom: 34px; max-width: 820px; }
.section-heading.split {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 36px;
  align-items: end;
  max-width: none;
}
.section-note { color: var(--muted); margin: 0; }
.cards { display: grid; gap: 22px; }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.card {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 20px rgba(51,51,51,.04);
}
.card-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184,154,85,.16);
  color: var(--green);
  font-weight: 800;
  margin-bottom: 18px;
}
.card p { margin: 12px 0 0; color: var(--muted); }

.work { background: var(--stone-2); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(51,51,51,.05);
}
.gallery-link { display: block; text-decoration: none; }
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--stone-2);
  transition: transform .25s ease, filter .25s ease;
}
.gallery a:hover img { transform: scale(1.025); filter: brightness(1.03); }
.gallery figcaption {
  padding: 13px 16px 16px;
  font-weight: 700;
  color: var(--green-dark);
}

.why-grid, .areas-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: start;
}
.reason-list { display: grid; gap: 20px; }
.reason-list div {
  padding: 0 0 20px;
  border-bottom: 1px solid var(--border);
}
.reason-list p, .areas-grid p { color: var(--muted); margin-bottom: 0; }

.process { background: var(--green-dark); color: var(--stone); }
.process h2 { color: var(--stone); }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
}
.steps li {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(247,244,236,.18);
  border-radius: var(--radius);
  padding: 24px;
}
.steps strong { display: block; color: var(--gold); font-size: 1.1rem; margin-bottom: 8px; }
.steps span { display: block; color: rgba(247,244,236,.82); }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.area-tags li {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(184,154,85,.32);
  color: var(--green-dark);
  font-weight: 700;
}

.contact { padding-top: 30px; }
.contact-card {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 32px;
  align-items: center;
  background: var(--green);
  color: var(--stone);
  border-radius: 34px;
  padding: clamp(30px, 5vw, 60px);
  box-shadow: var(--shadow);
}
.contact-card h2 { color: var(--stone); }
.contact-card p { color: rgba(247,244,236,.86); }
.contact-actions { display: grid; gap: 14px; }
.contact .button { background: var(--stone); color: var(--green-dark); border-color: var(--stone); }
.contact .button-outline { background: transparent; color: var(--stone); border-color: rgba(247,244,236,.58); }
.contact .button:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }

.site-footer {
  background: #201f1d;
  color: rgba(247,244,236,.76);
  padding: 42px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 30px;
  align-items: start;
}
.footer-logo { width: 108px; margin-bottom: 14px; }
.site-footer a { color: var(--stone); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(247,244,236,.14);
  margin-top: 32px;
  padding-top: 18px;
}

@media (max-width: 1050px) {
  .cards.four { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .hero-grid, .why-grid, .areas-grid, .contact-card, .section-heading.split, .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 46px; }
}
@media (max-width: 620px) {
  .container, .narrow { width: min(100% - 28px, 1120px); }
  .brand-text { display: none; }
  .nav-wrap { min-height: 74px; }
  .brand img { width: 56px; height: 56px; }
  .button-small { display: none; }
  .section { padding: 58px 0; }
  .cards.four, .gallery, .steps { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  h1 { font-size: 2.45rem; }
}
