/* NACLOA — Global Styles */
:root {
  --forest: #2d4a2d;
  --forest-dark: #1e331e;
  --brown: #6b4c35;
  --cream: #f5f0e8;
  --gold: #c9a84c;
  --terra: #c0614a;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--forest);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); margin-bottom: 0.5rem; }

a { color: var(--forest); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

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

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(30, 51, 30, 0.92);
  backdrop-filter: blur(8px);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  transition: background .3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}
.nav-logo span { color: var(--cream); font-weight: 400; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a {
  color: var(--cream); font-size: 0.92rem; font-weight: 400;
  letter-spacing: 0.3px; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* hamburger */
.nav-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--cream); transition: .3s; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 70px; right: -100%; width: 260px; height: calc(100vh - 70px);
    flex-direction: column; background: rgba(30, 51, 30, 0.97);
    padding: 2rem; gap: 1.2rem; transition: right .35s;
  }
  .nav-links.open { right: 0; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 6rem 2rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,51,30,.65) 0%, rgba(30,51,30,.80) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 750px; }
.hero-content h1 { color: var(--white); margin-bottom: 1rem; font-size: clamp(2.4rem, 5.5vw, 4rem); }
.hero-content p { color: rgba(255,255,255,.88); font-size: clamp(1.05rem, 2vw, 1.3rem); margin-bottom: 2rem; font-family: 'Cormorant Garamond', serif; font-style: italic; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; padding: 0.85rem 2.2rem;
  background: var(--terra); color: var(--white);
  font-size: 1rem; font-weight: 600; border-radius: 4px;
  letter-spacing: 0.5px; border: none; cursor: pointer;
  transition: background .25s, transform .15s;
}
.btn:hover { background: #a8503d; color: var(--white); transform: translateY(-1px); }
.btn-outline {
  background: transparent; border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--forest-dark); }

/* ---------- SECTIONS ---------- */
.section {
  padding: 5rem 2rem;
  max-width: 1100px; margin: 0 auto;
}
.section-alt { background: var(--white); }
.section-full { max-width: 100%; padding: 5rem 2rem; }
.section-center { text-align: center; }

.section h2::after {
  content: ''; display: block; width: 60px; height: 3px;
  background: var(--gold); margin-top: 0.75rem;
}
.section-center h2::after { margin-left: auto; margin-right: auto; }

/* ---------- CARDS (3-col) ---------- */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; margin-top: 2.5rem;
}
.card {
  background: var(--white); border-radius: 8px;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,.1); }
.card-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.card h3 { color: var(--forest); }
.card p { color: var(--text-light); font-size: 0.97rem; }

/* ---------- CONTENT BLOCKS ---------- */
.content-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: center; margin: 3rem 0;
}
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block img { border-radius: 8px; width: 100%; object-fit: cover; max-height: 400px; }

@media (max-width: 768px) {
  .content-block { grid-template-columns: 1fr; }
  .content-block.reverse { direction: ltr; }
}

/* ---------- LIST STYLED ---------- */
.styled-list { list-style: none; margin-top: 1.5rem; }
.styled-list li {
  padding: 0.75rem 0 0.75rem 2rem; position: relative;
  border-bottom: 1px solid rgba(0,0,0,.06);
  color: var(--text-light);
}
.styled-list li::before {
  content: '🌿'; position: absolute; left: 0; top: 0.75rem;
}

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid rgba(0,0,0,.08); padding: 1.5rem 0; }
.faq-q {
  font-family: 'Cormorant Garamond', serif; font-size: 1.25rem;
  font-weight: 600; color: var(--forest); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--gold); transition: transform .3s; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
.faq-item.open .faq-a { max-height: 500px; padding-top: 1rem; }
.faq-a p { color: var(--text-light); line-height: 1.8; }

/* ---------- CONTACT FORM ---------- */
.form { max-width: 600px; margin: 2rem auto 0; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block; margin-bottom: 0.4rem;
  font-weight: 600; font-size: 0.92rem; color: var(--forest);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid #ccc; border-radius: 4px;
  font-family: 'Lato', sans-serif; font-size: 1rem;
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--forest);
}
.form-group textarea { min-height: 150px; resize: vertical; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--forest-dark); color: rgba(255,255,255,.7);
  padding: 3rem 2rem; text-align: center;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.1rem; color: var(--gold); margin-bottom: 0.75rem;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,.4); }

/* ---------- PAGE HERO (shorter) ---------- */
.page-hero {
  position: relative; min-height: 45vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 6rem 2rem 3rem;
}
.page-hero .hero-bg::after {
  background: linear-gradient(180deg, rgba(30,51,30,.70) 0%, rgba(30,51,30,.85) 100%);
}
.page-hero .hero-content h1 { font-size: clamp(2rem, 4.5vw, 3rem); }

/* ---------- ETHICS / CONTENT SECTIONS ---------- */
.ethics-section { margin-bottom: 2.5rem; }
.ethics-section h3 { color: var(--brown); margin-bottom: 0.75rem; }
.ethics-section p, .ethics-section li { color: var(--text-light); }

/* ---------- MEMBERSHIP TIERS ---------- */
.membership-info {
  background: var(--white); border-radius: 8px;
  padding: 2.5rem; margin-top: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.membership-info h3 { margin-top: 1.5rem; }
.membership-info ul { margin: 0.75rem 0 0 1.5rem; color: var(--text-light); }
.membership-info ul li { margin-bottom: 0.4rem; }

/* ---------- UTILITY ---------- */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-3 { margin-top: 3rem; }
