:root {
  --bg: #f5f1e8;
  --sand: #eadfcf;
  --green: #2f4a3a;
  --sage: #6f8477;
  --text: #2d2a26;
  --muted: #6f665e;
  --white: #ffffff;
  --line: rgba(47, 74, 58, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow { max-width: 780px; }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 241, 232, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
}
.brand:hover { text-decoration: none; }
.brand h1 {
  margin: 0;
  font-size: 1.15rem;
}
.brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.brand-logo {
  width: 220px;
  max-width: 42vw;
  height: auto;
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
nav a {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero {
  padding: 72px 0 56px;
}
.inner-hero {
  padding-top: 56px;
}
.hero-grid,
.two-col,
.contact-grid,
.three-up {
  display: grid;
  gap: 32px;
}
.hero-grid,
.two-col,
.contact-grid {
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}
.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 10px;
}

.hero h2,
.section h3 {
  margin: 0 0 16px;
  line-height: 1.1;
}
.hero h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); }
.section h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.hero p,
.section p { margin: 0 0 16px; }
.site-url {
  font-weight: 700;
  color: var(--green);
  margin-top: 18px;
}

.hero-image img,
.hero-logo {
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.hero-image img {
  min-height: 540px;
  object-fit: cover;
}
.logo-panel {
  display: grid;
  place-items: center;
}
.hero-logo {
  max-width: 420px;
  background: transparent;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0 8px;
}
.button {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}
.button.primary {
  background: var(--green);
  color: var(--white);
}
.button.secondary {
  background: transparent;
  border-color: var(--green);
}
.button.secondary:hover,
.button.primary:hover {
  text-decoration: none;
}

.section { padding: 72px 0; }
.section.light { background: #fbf8f2; }
.section.accent { background: linear-gradient(180deg, #e7ddcf 0%, #f2ece2 100%); }

.card-stack,
.info-box {
  display: grid;
  gap: 18px;
}
.card,
.info-box,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}
.card h4,
.info-box h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}
.contact-card p:last-child,
.info-box p:last-child,
.card p:last-child { margin-bottom: 0; }

.contact-section {
  background: var(--green);
  color: var(--white);
}
.contact-section a { color: var(--white); }
.contact-card {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.contact-form {
  display: grid;
  gap: 10px;
}
.contact-form label {
  font-size: 0.92rem;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.95);
  color: var(--text);
  font: inherit;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.submit-button {
  margin-top: 8px;
  width: 100%;
}

.site-footer {
  background: #203126;
  color: rgba(255,255,255,0.82);
  padding: 24px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-inner p { margin: 0; }

@media (max-width: 900px) {
  .hero-grid,
  .two-col,
  .contact-grid,
  .three-up {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-image img {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  nav {
    gap: 12px;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }
}
