:root {
  --green: #07362D;
  --green-700: #0a4639;
  --green-50: #e8efed;
  --cream: #F7F4F0;
  --cream-dark: #ece7df;
  --ink: #1a1f1d;
  --muted: #5a6360;
  --line: #e3ddd2;
  --accent: #c8a96a;
  --shadow: 0 10px 30px rgba(7, 54, 45, 0.08);
  --radius: 14px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--green);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.4em; }

p { margin: 0 0 1em; color: var(--muted); }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-700); }

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 0.9em;
  padding: 6px 12px;
  background: var(--green-50);
  border-radius: 999px;
}

.accent { color: var(--accent); font-style: italic; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
}
.btn-primary {
  background: var(--green);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--green-700);
  color: var(--cream);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-ghost:hover {
  background: var(--green);
  color: var(--cream);
}
.btn-block { width: 100%; padding: 14px 22px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 240, 0.85);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--green);
}
.brand-mark {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.4rem;
  background: var(--green);
  color: var(--cream);
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.brand-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.15rem;
}
.nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.nav a:hover { color: var(--green); }
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: clamp(56px, 9vw, 110px) 0 clamp(48px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(7, 54, 45, 0.07), transparent 60%),
    radial-gradient(40% 40% at 0% 100%, rgba(200, 169, 106, 0.12), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-copy .lead {
  font-size: 1.1rem;
  max-width: 56ch;
  margin-bottom: 1.8em;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 2.4em;
}
.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 520px;
}
.hero-stats li {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  color: var(--green);
}
.hero-stats span {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  height: 460px;
}
.hero-blob {
  position: absolute;
  inset: 12% 0 12% 8%;
  background: linear-gradient(155deg, var(--green) 0%, var(--green-700) 100%);
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.hero-blob::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(247, 244, 240, 0.18);
  border-radius: 24px;
}
.hero-card {
  position: absolute;
  background: var(--cream);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
}
.hero-card .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4caf75;
  box-shadow: 0 0 0 4px rgba(76, 175, 117, 0.18);
}
.hero-card .dot-amber {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.22);
}
.card-1 { top: 8%; left: -4%; }
.card-2 { top: 44%; right: -4%; }
.card-3 {
  bottom: 6%;
  left: 14%;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 16px 20px;
}
.card-3 strong {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--green);
}

/* Sections */
.section {
  padding: clamp(64px, 8vw, 110px) 0;
}
.section-alt {
  background: var(--cream-dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.section-sub {
  font-size: 1.05rem;
}

.grid { display: grid; gap: 24px; }
.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg {
  width: 24px;
  height: 24px;
}
.card p { margin: 0; }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 1.4em 0 0;
  display: grid;
  gap: 12px;
}
.checklist li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 500;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
}
.checklist li::after {
  content: '';
  position: absolute;
  left: 5px; top: 9px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transform: rotate(-45deg);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
}
.stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}
.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Contact */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.6em 0 0;
  display: grid;
  gap: 16px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: none; }
.contact-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.contact-form {
  background: var(--green);
  color: var(--cream);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-form .field { margin-bottom: 18px; }
.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: rgba(247, 244, 240, 0.85);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(247, 244, 240, 0.08);
  border: 1px solid rgba(247, 244, 240, 0.2);
  border-radius: 10px;
  color: var(--cream);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(247, 244, 240, 0.5);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(247, 244, 240, 0.12);
}
.contact-form select option {
  background: var(--green);
  color: var(--cream);
}
.contact-form textarea { resize: vertical; }
.contact-form .btn-primary {
  background: var(--cream);
  color: var(--green);
  margin-top: 8px;
}
.contact-form .btn-primary:hover {
  background: var(--accent);
  color: var(--green);
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: var(--accent);
  text-align: center;
}
.form-status.success { color: #9bdcb5; }
.form-status.error { color: #ffb4a8; }

/* Footer */
.site-footer {
  background: var(--green);
  color: var(--cream);
  padding: 48px 0 32px;
}
.site-footer .brand-mark {
  background: var(--cream);
  color: var(--green);
}
.site-footer .brand-name { color: var(--cream); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.footer-tag {
  margin: 12px 0 0;
  color: rgba(247, 244, 240, 0.7);
  font-size: 0.92rem;
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.footer-links a {
  color: rgba(247, 244, 240, 0.85);
  font-size: 0.95rem;
}
.footer-links a:hover { color: var(--cream); }
.copyright {
  margin: 0;
  text-align: right;
  color: rgba(247, 244, 240, 0.6);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 360px; max-width: 480px; margin: 0 auto; width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .footer-links { justify-content: center; }
  .copyright { text-align: center; }
}

@media (max-width: 680px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    gap: 4px;
    margin: 0;
  }
  .nav.open a { padding: 10px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 24px; }
  .contact-form .field-row { grid-template-columns: 1fr; }
  .card-1 { left: 0; }
  .card-2 { right: 0; }
  .card-3 { left: 6%; }
}
