:root {
  --green: #5f8f79;
  --green-dark: #2f5c4b;
  --sage: #dfe9df;
  --cream: #fbf7ef;
  --sand: #eee3d1;
  --ink: #26332d;
  --muted: #65736b;
  --white: #fff;
  --shadow: 0 22px 60px rgb(39 57 49 / 14%);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: min(var(--max), calc(100% - 36px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 0; }
.skip-link:focus { left: 1rem; z-index: 10; background: var(--white); padding: .6rem .9rem; }

.topline {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: .45rem 1rem;
  background: var(--green-dark);
  color: var(--white);
  font-size: .92rem;
}
.topline a { text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgb(251 247 239 / 92%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgb(38 51 45 / 10%);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 88px; gap: 2rem; }
.brand img { width: 210px; }
.site-nav { display: flex; align-items: center; gap: 1.1rem; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.site-nav a { text-decoration: none; color: var(--muted); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--green-dark); }
.nav-toggle { display: none; border: 1px solid rgb(38 51 45 / 18%); border-radius: 999px; background: var(--white); padding: .65rem 1rem; font: inherit; }

h1, h2, h3 { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.08; margin: 0 0 1rem; }
h1 { font-size: clamp(2.55rem, 7vw, 5.9rem); letter-spacing: -.06em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.04em; }
h3 { font-size: 1.2rem; }
.kicker { margin: 0 0 .8rem; color: var(--green-dark); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.lead { font-size: clamp(1.08rem, 2vw, 1.35rem); color: #415047; max-width: 760px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.25rem;
  border: 2px solid var(--green-dark);
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}
.button:hover { background: var(--green); border-color: var(--green); }
.button-ghost { background: transparent; color: var(--green-dark); }
.button-light { background: var(--white); border-color: var(--white); color: var(--green-dark); }
.text-link { color: var(--green-dark); font-weight: 700; text-underline-offset: .25em; }

.home-hero { padding: clamp(3rem, 7vw, 7rem) 0; overflow: hidden; }
.home-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.home-copy { position: relative; z-index: 2; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.home-image { position: relative; }
.home-image::before { content: ""; position: absolute; inset: 11% -9% -9% 11%; border-radius: var(--radius); background: var(--sage); }
.home-image img { position: relative; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

.hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 6rem 0 4rem;
  color: var(--white);
  background: linear-gradient(90deg, rgb(25 42 35 / 78%), rgb(25 42 35 / 35%)), var(--hero-image) center / cover;
}
.hero .lead, .hero .kicker { color: var(--white); }
.hero .lead { max-width: 720px; }

.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.muted { background: var(--sage); }
.split { display: grid; grid-template-columns: .75fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.portrait { width: min(100%, 430px); border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }
.portrait.small { width: 170px; border-radius: 50%; }
.section-heading { max-width: 720px; margin-bottom: 2rem; }
.card-grid { display: grid; gap: 1.4rem; }
.services-grid { grid-template-columns: repeat(4, 1fr); }
.testimonials-grid { grid-template-columns: repeat(4, 1fr); }
.project-grid { grid-template-columns: repeat(3, 1fr); }

.image-card, .project-card, .quote-card, .package-card, .contact-panel {
  background: var(--white);
  border: 1px solid rgb(38 51 45 / 10%);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgb(39 57 49 / 8%);
}
.image-card { overflow: hidden; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.image-card:hover, .project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.image-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.image-card span { display: block; padding: 1.2rem 1.2rem .2rem; font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-weight: 800; }
.image-card p { padding: 0 1.2rem 1.3rem; margin: 0; color: var(--muted); }
.quote-card { margin: 0; padding: 1.4rem; }
.quote-card blockquote { margin: 0 0 1.4rem; color: #3e4c43; }
.quote-card figcaption { font-weight: 700; }
.quote-card span { display: block; color: var(--muted); font-weight: 400; font-size: .92rem; }
.project-card { overflow: hidden; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.project-card img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.project-card div { padding: 1.2rem; }
.project-card p { margin: 0 0 .4rem; color: var(--green-dark); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.project-card span { color: var(--muted); }

.prose { max-width: 850px; }
.prose h2 { margin-top: 2.5rem; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.prose p, .prose li { color: #405047; }
.prose a { color: var(--green-dark); font-weight: 700; }
.about-inline img { width: 240px; border-radius: 22px; float: right; margin: 0 0 1.5rem 2rem; box-shadow: var(--shadow); }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 2.5rem 0; }
.package-card { position: relative; padding: 1.5rem; }
.package-card.featured { border: 2px solid var(--green-dark); transform: translateY(-10px); }
.price { color: var(--green-dark); font-size: 1.55rem; font-weight: 800; }
.badge { position: absolute; right: 1rem; top: 1rem; border-radius: 999px; background: var(--sage); padding: .25rem .6rem; font-size: .75rem; font-weight: 700; text-transform: uppercase; }

.contact-grid { display: grid; grid-template-columns: 330px 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact-panel { padding: 1.5rem; position: sticky; top: 130px; }
.contact-form { display: grid; gap: 1rem; margin-top: 2rem; max-width: 720px; }
.contact-form label { display: grid; gap: .35rem; color: var(--ink); font-weight: 700; }
input, textarea, select { width: 100%; border: 1px solid rgb(38 51 45 / 22%); border-radius: 16px; background: var(--white); padding: .9rem 1rem; color: var(--ink); font: inherit; }
textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; height: 1px; overflow: hidden; }
.form-status { min-height: 1.5rem; color: var(--green-dark); font-weight: 700; }
.form-status.error { color: #9f2f2f; }

.cta-band { padding: 4rem 0; background: var(--green-dark); color: var(--white); text-align: center; }
.cta-band p { color: rgb(255 255 255 / 82%); }

.site-footer { background: #17251f; color: rgb(255 255 255 / 86%); padding-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; }
.site-footer h2 { font-size: 1.1rem; letter-spacing: 0; }
.site-footer a { color: var(--white); text-decoration: none; }
.footer-nav { display: grid; gap: .45rem; }
.footer-bottom { margin-top: 2.5rem; padding: 1rem; border-top: 1px solid rgb(255 255 255 / 12%); text-align: center; color: rgb(255 255 255 / 60%); }

@media (max-width: 980px) {
  .home-hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .services-grid, .testimonials-grid, .project-grid, .package-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-panel { position: static; }
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; inset: 100% 18px auto 18px; padding: 1rem; border-radius: 18px; background: var(--white); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .site-nav.is-open { display: flex; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .topline { display: none; }
  .header-inner { min-height: 72px; }
  .brand img { width: 168px; }
  .services-grid, .testimonials-grid, .project-grid, .package-grid, .footer-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .about-inline img { float: none; margin: 0 0 1.5rem; width: 100%; }
}
