:root {
  --green: #4e723c;
  --green-dark: #3c5a2e;
  --green-light: #6b8f57;
  --cream: #f6f4ee;
  --sand: #eceae1;
  --ink: #2c3327;
  --muted: #5f6b57;
  --white: #ffffff;
  --radius: 14px;
  --maxw: 1080px;
  --shadow: 0 6px 24px rgba(44, 51, 39, 0.08);
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.container-narrow { max-width: 720px; }

h1, h2, h3 { line-height: 1.2; color: var(--ink); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin: 0 0 .4rem; }
h3 { font-size: 1.2rem; margin: 0 0 .4rem; }

.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: .5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  flex-wrap: wrap;
}
.brand img { height: 44px; width: auto; }
.site-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.site-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: .95rem;
}
.site-nav a:hover { color: var(--green); text-decoration: none; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--sand) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  margin: 0 0 1rem;
  color: var(--green-dark);
}
.hero .lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 640px;
  color: var(--muted);
  margin: 0 0 1.8rem;
}
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-block;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .12s ease, background .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green);
}
.btn-ghost:hover { background: var(--green); color: var(--white); }

/* Sections */
.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section-alt { background: var(--cream); }
.section-intro {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 2rem;
}
.center { text-align: center; }

/* Concept cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow);
}
.card-num {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}
.card p { margin: 0; color: var(--muted); }

/* Locations */
.locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.location {
  background: var(--white);
  border: 1px solid var(--sand);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}
.location address { font-style: normal; color: var(--muted); margin: .4rem 0 1rem; }
.link-arrow { font-weight: 700; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
.gallery-item { margin: 0; position: relative; }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius);
}
.gallery-item figcaption {
  position: absolute;
  left: 0; bottom: 0; right: 0;
  background: linear-gradient(transparent, rgba(44, 51, 39, .78));
  color: var(--white);
  font-weight: 700;
  padding: 1.4rem 1rem .9rem;
  border-radius: 0 0 var(--radius) var(--radius);
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow);
  transition: border-color .2s ease, transform .12s ease;
}
.contact-item:hover { text-decoration: none; border-color: var(--green); transform: translateY(-2px); }
.contact-label {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--green);
}
.contact-value { font-size: 1.15rem; font-weight: 600; color: var(--ink); }

/* Prose (legal pages) */
.prose { color: var(--ink); }
.prose h2 { margin-top: 2rem; font-size: 1.4rem; }
.prose h3 { margin-top: 1.4rem; }
.prose a { word-break: break-word; }

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: #dfe6d7;
  padding: 2.4rem 0 1.4rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand strong { color: var(--white); font-size: 1.1rem; }
.footer-brand span { font-size: .9rem; opacity: .8; }
.footer-social, .footer-nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.site-footer a { color: #dfe6d7; font-weight: 600; }
.site-footer a:hover { color: var(--white); }
.footer-copy {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .15);
  opacity: .8;
}

@media (max-width: 560px) {
  .site-nav { gap: 1rem; width: 100%; }
}
