:root {
  --forest:      #243d26;
  --moss:        #4a7c4e;
  --sage:        #7fa882;
  --sage-light:  #e5ede6;
  --cream:       #f7f2ea;
  --parchment:   #ede4d0;
  --straw:       #c9ae84;
  --terracotta:  #b85f38;
  --soil:        #2e1f14;
  --muted:       #6b5b4b;
  --white:       #faf8f4;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--white);
  color: var(--soil);
  min-height: 100vh;
}

/* NAV */
nav {
  background: var(--forest);
  position: sticky; top: 0; z-index: 200;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  border-bottom: 2px solid var(--terracotta);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo { width: 44px; height: 44px; border-radius: 50%; object-fit: contain; }
.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600; color: var(--cream); line-height: 1;
}
.nav-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem; font-weight: 300; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sage); display: block; margin-top: 3px;
}
nav ul { list-style: none; display: flex; gap: 0.1rem; }
nav ul a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; font-weight: 400;
  color: #b8c9b9; text-decoration: none;
  padding: 0.45rem 0.85rem; border-radius: 4px;
  transition: background 0.18s, color 0.18s; letter-spacing: 0.03em;
}
nav ul a:hover { background: rgba(255,255,255,0.08); color: var(--cream); }
.nav-cta { background: var(--terracotta) !important; color: #fff !important; font-weight: 500 !important; margin-left: 0.5rem; }
.nav-cta:hover { background: #a3512e !important; }

/* FOOTER */
footer {
  background: var(--forest);
  color: #a8bfaa;
  padding: 3rem 2rem 1.5rem;
  margin-top: 5rem;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--cream); margin-bottom: 0.75rem; }
.footer-grid p, .footer-grid a {
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem;
  line-height: 1.7; color: #a8bfaa; text-decoration: none; display: block;
}
.footer-grid a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1100px; margin: 1.2rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem; color: #6b7f6c;
}
.scio-tag {
  font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12); padding: 0.25rem 0.6rem; border-radius: 2px;
}

/* BUTTONS */
.btn {
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500;
  padding: 0.75rem 1.5rem; border-radius: 3px; border: none;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: all 0.2s; letter-spacing: 0.02em;
}
.btn-fill { background: var(--terracotta); color: #fff; }
.btn-fill:hover { background: #a3512e; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,95,56,0.3); }
.btn-ghost { background: transparent; color: var(--cream); border: 1.5px solid rgba(255,255,255,0.22); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.06); }

/* ── HERO ── */
.hero {
  background: var(--forest);
  position: relative; overflow: hidden;
  padding: 4.5rem 2rem 4rem;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 40%, rgba(74,124,78,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 15% 90%, rgba(184,95,56,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: center;
}
.hero-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--terracotta);
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.1rem;
}
.hero-kicker::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--terracotta); }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 700; line-height: 1.15;
  color: var(--cream); margin-bottom: 1.2rem;
}
.hero h1 em { color: var(--sage); font-style: italic; }
.hero-lead {
  font-family: 'Source Serif 4', serif;
  font-size: 1rem; font-weight: 300; color: #a8bfaa; line-height: 1.8;
  max-width: 500px; margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 1.75rem; backdrop-filter: blur(4px);
}
.hero-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--cream); margin-bottom: 0.6rem; }
.hero-card p { font-family: 'DM Sans', sans-serif; font-size: 0.82rem; color: #a8bfaa; line-height: 1.65; margin-bottom: 1.1rem; }
.hero-card-link {
  display: block; width: 100%; text-align: center; padding: 0.7rem;
  background: var(--terracotta); color: #fff; text-decoration: none;
  border-radius: 3px; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500;
  transition: background 0.2s;
}
.hero-card-link:hover { background: #a3512e; }
.hero-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 1rem 0; }
.hero-facts { list-style: none; }
.hero-facts li {
  font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: #a8bfaa;
  padding: 0.35rem 0; display: flex; gap: 0.5rem;
}
.hero-facts li::before { content: '↳'; color: var(--terracotta); flex-shrink: 0; }

/* ── NEWS GRID ── */
.news-section { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
.section-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--parchment); padding-bottom: 1rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 600; color: var(--forest);
}
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.news-card {
  background: #fff; border: 1px solid var(--parchment);
  border-radius: 4px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none; color: inherit;
}
.news-card:hover { box-shadow: 0 8px 32px rgba(36,61,38,0.1); transform: translateY(-2px); }
.article-thumb { width: 100%; height: 180px; overflow: hidden; background: var(--sage-light); }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.news-card:hover .article-thumb img { transform: scale(1.04); }
.article-thumb-emoji {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  font-family: 'DM Sans', sans-serif; font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.5rem;
  display: flex; gap: 0.6rem; align-items: center;
}
.card-tag { background: var(--sage-light); color: var(--moss); padding: 0.15rem 0.5rem; border-radius: 2px; }
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600; line-height: 1.35;
  color: var(--soil); margin-bottom: 0.5rem;
}
.card-lead { font-family: 'DM Sans', sans-serif; font-size: 0.82rem; color: var(--muted); line-height: 1.6; flex: 1; }
.card-read { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; color: var(--terracotta); margin-top: 0.85rem; font-weight: 500; }
.info-section { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }

/* ── ARTICLE PAGE ── */
.article-hero { width: 100%; max-height: 420px; overflow: hidden; background: var(--forest); }
.article-hero img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
.article-hero-emoji {
  height: 280px; display: flex; align-items: center;
  justify-content: center; font-size: 6rem; background: var(--sage-light);
}
.article-wrap { max-width: 740px; margin: 0 auto; padding: 3rem 2rem 5rem; }
.article-back {
  font-family: 'DM Sans', sans-serif; font-size: 0.82rem;
  color: var(--muted); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-bottom: 2rem; transition: color 0.2s;
}
.article-back:hover { color: var(--forest); }
.article-meta {
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.75rem;
  display: flex; gap: 0.75rem; align-items: center;
}
.article-tag-pill { background: var(--sage-light); color: var(--moss); padding: 0.2rem 0.6rem; border-radius: 2px; }
.article-wrap h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; line-height: 1.2;
  color: var(--forest); margin-bottom: 1rem;
}
.article-lead {
  font-family: 'Source Serif 4', serif;
  font-size: 1.1rem; font-weight: 300; font-style: italic;
  color: var(--muted); line-height: 1.75;
  border-left: 3px solid var(--terracotta); padding-left: 1.2rem;
  margin-bottom: 2.5rem;
}
.article-divider { height: 1px; background: var(--parchment); margin: 0 0 2.5rem; }
.article-body { font-size: 1rem; line-height: 1.85; color: var(--soil); }
.article-body p { margin-bottom: 1.4rem; }
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 600; color: var(--forest);
  margin: 2.5rem 0 0.85rem;
}
.article-body blockquote {
  border-left: 3px solid var(--sage); padding-left: 1.2rem;
  margin: 1.75rem 0; font-style: italic; color: var(--muted);
}
.article-body a { color: var(--terracotta); text-decoration: underline; }
.article-body a:hover { color: #a3512e; }

/* ── WAITING LIST FORM ── */
.form-page { max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
.form-page-header { margin-bottom: 3rem; }
.form-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700;
  color: var(--forest); margin-bottom: 0.75rem;
}
.form-page-header p { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--muted); line-height: 1.7; max-width: 580px; }
.form-grid { display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start; }
.form-aside { background: var(--sage-light); border-radius: 4px; padding: 1.75rem; font-family: 'DM Sans', sans-serif; }
.form-aside h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--forest); margin-bottom: 0.75rem; }
.form-aside li { font-size: 0.82rem; color: var(--muted); line-height: 1.7; padding: 0.2rem 0 0.2rem 1rem; position: relative; list-style: none; }
.form-aside li::before { content: '↳'; position: absolute; left: 0; color: var(--terracotta); }
.form-aside p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; margin-top: 1rem; }
.f-label { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 500; color: var(--soil); margin-bottom: 0.4rem; }
.field-group { margin-bottom: 1.25rem; }
input[type=text], input[type=email], select, textarea {
  width: 100%; font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  padding: 0.65rem 0.85rem; border: 1px solid var(--parchment);
  border-radius: 3px; background: #fff; color: var(--soil);
  transition: border-color 0.2s; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--moss); }
textarea { min-height: 100px; resize: vertical; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-divider {
  font-family: 'DM Sans', sans-serif; font-size: 0.7rem;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid var(--parchment);
  padding-bottom: 0.4rem; margin: 2rem 0 1.25rem;
}
.check-group { display: flex; flex-direction: column; gap: 0.5rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.5rem; font-family: 'DM Sans', sans-serif; font-size: 0.83rem; color: var(--soil); cursor: pointer; }
.check-item input { margin-top: 3px; accent-color: var(--moss); flex-shrink: 0; }
.submit-row { margin-top: 1.75rem; }
.submit-btn {
  background: var(--terracotta); color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 500;
  padding: 0.85rem 2rem; border: none; border-radius: 3px; cursor: pointer;
  transition: background 0.2s, transform 0.15s; letter-spacing: 0.02em;
}
.submit-btn:hover { background: #a3512e; transform: translateY(-1px); }
.form-footnote { font-family: 'DM Sans', sans-serif; font-size: 0.76rem; color: var(--muted); margin-top: 2rem; font-style: italic; }
.success-panel { display: none; text-align: center; padding: 4rem 2rem; }
.success-panel.on { display: block; }
.success-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--moss); color: #fff; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.success-panel h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--forest); margin-bottom: 0.75rem; }
.success-panel p { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--muted); margin-bottom: 1.5rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-card { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  nav ul { display: none; }
}
