:root {
  --bg: #f7f3ed;
  --surface: #ffffff;
  --muted: #4b5b4d;
  --text: #2f332b;
  --accent: #3f7f54;
  --accent-strong: #2f6a45;
  --border: rgba(63, 127, 84, 0.18);
  --card: rgba(255, 255, 255, 0.9);
  --shadow: 0 14px 32px rgba(57, 81, 61, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 18% 20%, rgba(154, 197, 155, 0.18), transparent 34%),
    radial-gradient(circle at 82% 8%, rgba(205, 169, 126, 0.22), transparent 32%),
    linear-gradient(135deg, #f9f5ef, #f1ece2 58%, #f7f3ed);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(47, 51, 43, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  position: relative;
  transition: padding 0.18s ease;
}

.site-header.shrink {
  border-color: rgba(47, 51, 43, 0.12);
  box-shadow: 0 12px 32px rgba(47, 106, 69, 0.15);
}

.site-header.shrink .nav-bar {
  padding: 6px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.brand img {
  height: 30px;
  width: auto;
}

.brand-text {
  font-family: "Playfair Display", "Inter", serif;
  font-size: 16px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-links a {
  padding: 8px 0;
  color: #3b4238;
  font-weight: 600;
  font-size: 14px;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  justify-content: center;
}

.menu-toggle:hover {
  background: rgba(63, 127, 84, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #2f332b;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.site-header.menu-open .menu-toggle {
  box-shadow: var(--shadow);
  background: rgba(63, 127, 84, 0.08);
}

.site-header.menu-open .menu-toggle span {
  transform: none;
  opacity: 1;
}

.button {
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button.solid {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fdfdfd;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(47, 106, 69, 0.25);
}

.button.ghost {
  background: rgba(63, 127, 84, 0.12);
  color: var(--accent-strong);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(47, 51, 43, 0.08);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.78);
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247, 243, 237, 0.12) 0%, #f7f3ed 78%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 90px;
  color: var(--text);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #6b7a6c;
  margin: 0 0 10px;
}

.lead {
  font-size: 18px;
  color: #4b5b4d;
  max-width: 720px;
}

h1,
h2 {
  font-family: "Playfair Display", "Inter", serif;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(36px, 5vw, 48px);
}

h2 {
  font-size: clamp(26px, 4vw, 32px);
}

.hero-actions {
  margin: 20px 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: #4b5b4d;
  font-size: 14px;
}

.hero-meta span {
  padding: 8px 12px;
  border: 1px solid rgba(63, 127, 84, 0.22);
  border-radius: 999px;
  background: rgba(63, 127, 84, 0.08);
}

.section {
  padding: 72px 0;
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid rgba(47, 51, 43, 0.08);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.card-eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin: 0 0 6px;
}

.card p {
  margin: 8px 0 0;
  color: #4b5b4d;
}

.two-col {
  display: grid;
  gap: 30px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 24px;
}

.icon-list li {
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
  color: #4b5b4d;
}

.icon-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.image-stack {
  position: relative;
  display: grid;
  gap: 14px;
}

.stack-primary {
  box-shadow: var(--shadow);
}

.stack-secondary {
  width: 65%;
  justify-self: end;
  margin-top: -40px;
  box-shadow: var(--shadow);
  opacity: 0.97;
}

.section-muted {
  background: linear-gradient(135deg, #f1ece2, #e9e1d4);
  border-block: 1px solid rgba(47, 51, 43, 0.08);
}

.gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.callout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: center;
  background: var(--card);
  border: 1px solid rgba(47, 51, 43, 0.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-block {
  display: grid;
  gap: 6px;
}

.contact-line {
  color: #2f332b;
  font-weight: 700;
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(47, 51, 43, 0.08);
  background: #f2ece2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.foot-heading {
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.foot-note {
  color: #4b5b4d;
}

.foot-brand {
  margin-bottom: 10px;
}

.site-footer a {
  display: block;
  margin: 6px 0;
  color: #2f6a45;
}

@media (max-width: 768px) {
  body.menu-open {
    overflow: hidden;
  }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid rgba(47, 51, 43, 0.12);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(47, 106, 69, 0.22);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .site-header.menu-open .nav-menu {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }
  .nav-links a {
    padding: 12px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(63, 127, 84, 0.16);
    background: rgba(63, 127, 84, 0.06);
    font-weight: 700;
  }
  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-actions .button {
    width: 100%;
  }
  .hero-content {
    padding: 80px 0 70px;
  }
  .hero {
    margin-top: -10px;
  }
}
