@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --cream: #f5f1e7;
  --green: #173c2b;
  --green-2: #224f39;
  --gold: #aa8a55;
  --charcoal: #28302c;
  --muted: #657068;
  --white: #ffffff;
  --line: rgba(23, 60, 43, 0.15);
  --shadow: 0 18px 50px rgba(18, 42, 30, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, strong { text-wrap: balance; }
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--green);
  line-height: 1.05;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(3.2rem, 8vw, 6.8rem); color: var(--white); }
h2 { font-size: clamp(2.4rem, 5vw, 4.3rem); }
h3 { font-size: 2rem; }
p { margin: 0 0 1rem; }
.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;
  min-height: 86px; padding: 12px clamp(18px, 4vw, 58px);
  background: rgba(245, 241, 231, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; }
.brand strong {
  display: block; color: var(--green); text-transform: uppercase;
  letter-spacing: .05em; font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
}
.brand small { display: block; color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .18em; }

.main-nav { display: flex; align-items: center; gap: 28px; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.main-nav a:hover { color: var(--gold); }
.nav-button { padding: 11px 18px; border: 1px solid var(--green); }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; }
.menu-button span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px; background: var(--green); }

.hero {
  position: relative; min-height: calc(100vh - 86px);
  display: grid; place-items: center; padding: 70px 24px;
  background: url("assets/hero.jpg") center/cover no-repeat;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,28,19,.78), rgba(11,28,19,.32)); }
.hero-content { position: relative; z-index: 1; width: min(1100px, 100%); color: white; }
.hero-content > p:not(.eyebrow) { max-width: 760px; font-size: clamp(1.05rem, 2vw, 1.35rem); }
.eyebrow { margin-bottom: 12px; text-transform: uppercase; letter-spacing: .19em; font-size: .78rem; font-weight: 700; }
.eyebrow.green { color: var(--green-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 12px 22px; border: 1px solid transparent;
  font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: white; }
.button-outline { border-color: rgba(255,255,255,.8); color: white; }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 100px 0; }
.section-heading { max-width: 790px; }
.section-heading.centered { margin: 0 auto 48px; text-align: center; }
.intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.lead { font-size: 1.15rem; color: var(--muted); }

.services { border-top: 1px solid var(--line); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  position: relative; min-height: 300px; padding: 36px 28px;
  background: #ebe7dc; border-top: 4px solid var(--green);
  transition: .25s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-number { display: block; margin-bottom: 35px; color: var(--gold); font-weight: 800; letter-spacing: .12em; }
.service-card p { color: var(--muted); font-size: .95rem; }

.feature { position: relative; min-height: 500px; display: grid; align-items: center; overflow: hidden; }
.feature > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,39,26,.82), rgba(14,39,26,.15)); }
.feature-copy { position: relative; z-index: 1; width: min(1180px, calc(100% - 40px)); margin: 0 auto; color: white; }
.feature-copy h2 { color: white; max-width: 690px; }
.feature-copy p:last-child { max-width: 570px; font-size: 1.08rem; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery figure { position: relative; margin: 0; overflow: hidden; background: var(--green); aspect-ratio: 4/3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery figure:hover img { transform: scale(1.045); opacity: .72; }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 42px 18px 16px;
  color: white; font-weight: 700; background: linear-gradient(transparent, rgba(10,30,20,.85));
}

.about { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; border-top: 1px solid var(--line); }
.about-image img { width: 100%; height: 620px; object-fit: cover; box-shadow: var(--shadow); }
.about-copy p { color: var(--muted); }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; }
.check-list li { padding: 13px 0 13px 30px; border-bottom: 1px solid var(--line); position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }

.contact {
  width: 100%; max-width: none; padding: 90px max(20px, calc((100% - 1180px)/2));
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center;
  background: var(--green); color: white;
}
.contact h2 { color: white; }
.contact-card { padding: 34px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.contact-card a:not(.button) { color: white; text-decoration: underline; }

footer {
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
  padding: 34px clamp(20px,4vw,58px); background: #102a1e; color: white;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; }
.footer-brand strong, .footer-brand small { display: block; }
.footer-brand small, footer > p { color: rgba(255,255,255,.65); font-size: .8rem; }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .main-nav {
    display: none; position: absolute; top: 86px; left: 0; right: 0;
    padding: 24px; background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 8px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .intro, .about, .contact { grid-template-columns: 1fr; gap: 42px; }
  .about-image img { height: 480px; }
}

@media (max-width: 680px) {
  .brand small { display: none; }
  .brand strong { font-size: 1.1rem; }
  .brand img { width: 52px; height: 52px; }
  .site-header { min-height: 76px; }
  .main-nav { top: 76px; }
  .hero { min-height: 78vh; }
  .section { padding: 72px 0; }
  .service-grid, .gallery { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .about-image img { height: 390px; }
  footer { align-items: flex-start; flex-direction: column; }
}


.before-after {
  border-top: 1px solid var(--line);
}
.compare-intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 42px;
}
.compare-card {
  margin: 0;
  background: #ebe7dc;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.compare-card figcaption {
  padding: 18px 20px 22px;
}
.compare-card figcaption strong {
  display: block;
  font-size: 1.1rem;
  color: var(--green);
}
.compare-label {
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 10px;
  background: var(--green);
  color: white;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .compare-card figcaption {
    padding: 12px 10px 14px;
  }

  .compare-card figcaption strong {
    font-size: .85rem;
    line-height: 1.25;
  }

  .compare-label {
    padding: 5px 7px;
    font-size: .62rem;
  }
}


.compare-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 980px) {
  .compare-grid-three {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
  }

  .compare-grid-three .compare-card {
    scroll-snap-align: start;
  }
}


.compare-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1050px) {
  .compare-grid-four {
    grid-template-columns: repeat(4, minmax(210px, 1fr));
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x proximity;
  }

  .compare-grid-four .compare-card {
    scroll-snap-align: start;
  }
}
