/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #FAF7F2;
  --linen:   #EDE7DB;
  --sage:    #7A9B78;
  --sage-lt: #A8C4A5;
  --moss:    #4A6B47;
  --tan:     #C4A882;
  --brown:   #6B4F3A;
  --bark:    #3E2E22;
  --white:   #FFFCF8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--bark);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--linen);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  text-decoration: none;
}

.nav-logo img {
  height: 54px;
  width: 54px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--moss);
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan);
  font-family: 'Jost', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links > li > a,
.nav-links > li > button {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover { color: var(--sage); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: 4px;
  min-width: 190px;
  box-shadow: 0 8px 28px rgba(62,46,34,0.1);
  padding: 0.5rem 0;
  list-style: none;
  z-index: 200;
}

.dropdown-menu.open { display: block; }

.dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu li a:hover { background: var(--cream); color: var(--sage); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--brown);
}

/* ─── SECTIONS ─── */
section {
  display: none;
  min-height: 100vh;
  padding-top: 72px;
  animation: fadeUp 0.5s ease both;
}
section.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  border: 1px solid var(--sage);
  color: var(--moss);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  transition: background 0.25s, color 0.25s;
  border-radius: 2px;
}
.btn:hover { background: var(--sage); color: var(--white); }
.btn-solid { background: var(--sage); color: var(--white); }
.btn-solid:hover { background: var(--moss); border-color: var(--moss); }

/* ─── HOME ─── */
#home { display: flex; flex-direction: column; }

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - 72px);
  padding: 4rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  border: 1px solid var(--sage-lt);
  opacity: 0.22;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 950px; height: 950px;
  border-radius: 50%;
  border: 1px solid var(--tan);
  opacity: 0.1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-logo {
  width: 130px; height: 130px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 1.8rem;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1rem;
  position: relative; z-index: 1;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--moss);
  margin-bottom: 0.3em;
  position: relative; z-index: 1;
}
.hero-title em { font-style: italic; color: var(--tan); }

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: var(--brown);
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}

.hero-tagline {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--brown);
  max-width: 480px;
  margin-bottom: 2.8rem;
  line-height: 1.9;
  position: relative; z-index: 1;
}

.hero-btns {
  display: flex; gap: 1rem;
  flex-wrap: wrap; justify-content: center;
  position: relative; z-index: 1;
}

/* Pillars */
.pillars {
  background: var(--linen);
  padding: 3.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.pillar-icon { font-size: 1.6rem; margin-bottom: 0.6rem; display: block; }
.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem; font-weight: 500;
  color: var(--moss); margin-bottom: 0.35rem;
}
.pillar p { font-size: 0.84rem; color: var(--brown); line-height: 1.75; }

/* Quote band */
.quote-band { padding: 4.5rem 2rem; text-align: center; background: var(--moss); }
.quote-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 300; font-style: italic;
  color: var(--cream);
  max-width: 680px; margin: 0 auto; line-height: 1.55;
}
.quote-band cite {
  display: block; margin-top: 1.2rem;
  font-family: 'Jost', sans-serif; font-style: normal;
  font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sage-lt);
}

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 5rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--linen);
}
.page-label {
  font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--tan); margin-bottom: 1rem;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300; color: var(--moss); line-height: 1.1;
}
.page-title em { font-style: italic; color: var(--tan); }

/* ─── ABOUT ME ─── */
.about-me-body {
  max-width: 820px; margin: 0 auto;
  padding: 4rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem; align-items: start;
}
.about-me-sidebar { position: sticky; top: 90px; }
.founder-initial {
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--linen); border: 2px solid var(--sage-lt);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 300; color: var(--sage);
  margin-bottom: 1.2rem;
}
.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500;
  color: var(--bark); margin-bottom: 0.2rem;
}
.founder-role {
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--tan);
}
.divider { width: 40px; height: 1px; background: var(--tan); margin: 1.8rem 0; }
.sidebar-bio { font-size: 0.82rem; color: var(--brown); line-height: 1.8; }

.about-me-text p { font-size: 1rem; color: var(--bark); line-height: 2; margin-bottom: 1.4rem; }
.about-me-text p:first-child::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  float: left; line-height: 0.8;
  margin-right: 0.1em; color: var(--sage);
}

.values-strip {
  background: var(--linen); padding: 3rem 2rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}
.value-tag {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--tan); border-radius: 30px;
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brown);
}

/* ─── ABOUT CO-OP ─── */
.coop-intro {
  max-width: 720px; margin: 0 auto;
  padding: 4rem 2rem 1rem; text-align: center;
}
.coop-intro p { font-size: 1rem; color: var(--bark); line-height: 2; }

.info-cards {
  max-width: 920px; margin: 3rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.info-card {
  background: var(--white); border: 1px solid var(--linen);
  border-radius: 4px; padding: 2rem;
}
.info-card-icon { font-size: 1.4rem; margin-bottom: 0.8rem; display: block; }
.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem; font-weight: 500;
  color: var(--moss); margin-bottom: 0.5rem;
}
.info-card p { font-size: 0.86rem; color: var(--brown); line-height: 1.8; }

/* Activities */
.activities-section { background: var(--linen); padding: 4rem 2rem; margin-top: 2rem; }
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300; color: var(--moss);
  text-align: center; margin-bottom: 0.4rem;
}
.section-heading em { font-style: italic; color: var(--tan); }
.section-sub {
  text-align: center; font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--tan); margin-bottom: 3rem;
}
.activity-grid {
  max-width: 920px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.activity-item {
  background: var(--white); border-radius: 4px;
  padding: 1.6rem; display: flex; gap: 1rem;
  align-items: flex-start;
  border: 1px solid rgba(196,168,130,0.25);
}
.activity-item .icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.activity-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 500;
  color: var(--moss); margin-bottom: 0.3rem;
}
.activity-item p { font-size: 0.82rem; color: var(--brown); line-height: 1.75; }

/* Timeline */
.past-section { max-width: 800px; margin: 0 auto; padding: 4rem 2rem 6rem; }
.timeline { border-left: 2px solid var(--linen); padding-left: 2rem; margin-top: 2.5rem; }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before {
  content: ''; position: absolute;
  left: -2.4rem; top: 0.45rem;
  width: 10px; height: 10px;
  border-radius: 50%; background: var(--tan);
  border: 2px solid var(--cream);
}
.timeline-season {
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--tan); margin-bottom: 0.35rem;
}
.timeline-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 500;
  color: var(--moss); margin-bottom: 0.35rem;
}
.timeline-item p { font-size: 0.86rem; color: var(--brown); line-height: 1.8; }

/* ─── CONTACT ─── */
.contact-wrap {
  max-width: 860px; margin: 0 auto;
  padding: 4rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--moss); margin-bottom: 1rem;
}
.contact-info p { font-size: 0.88rem; color: var(--brown); line-height: 1.9; margin-bottom: 1.8rem; }
.enroll-note { font-size: 0.82rem !important; }
.enroll-note strong { font-weight: 500; }

.contact-detail {
  display: flex; align-items: center;
  gap: 0.8rem; margin-bottom: 0.9rem;
  font-size: 0.84rem; color: var(--brown);
}
.contact-detail a { color: var(--sage); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }
.contact-icon { font-size: 1rem; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brown); font-weight: 400;
}
.field input, .field select, .field textarea {
  background: var(--white); border: 1px solid var(--linen);
  border-radius: 3px; padding: 0.75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem; color: var(--bark);
  font-weight: 300; transition: border-color 0.2s;
  outline: none; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sage); }
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.76rem; color: var(--brown); opacity: 0.75; line-height: 1.7; }
.form-success {
  display: none; background: var(--linen);
  border: 1px solid var(--sage-lt); border-radius: 4px;
  padding: 1.2rem 1.5rem; font-size: 0.88rem;
  color: var(--moss); line-height: 1.7;
}

/* ─── FOOTER ─── */
footer {
  background: var(--bark); color: var(--linen);
  text-align: center; padding: 2.5rem 2rem;
}
.footer-logo-wrap {
  display: flex; align-items: center;
  justify-content: center; gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.footer-logo-wrap img { width: 38px; height: 38px; border-radius: 50%; opacity: 0.85; }
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400;
  letter-spacing: 0.08em; color: var(--sage-lt);
}
footer p { font-size: 0.72rem; letter-spacing: 0.08em; opacity: 0.45; }

/* ─── MOBILE ─── */
@media (max-width: 720px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 1.5rem 2rem; gap: 1.2rem;
    border-bottom: 1px solid var(--linen);
  }
  .nav-links.open { display: flex; }
  .dropdown-menu {
    position: static; transform: none;
    box-shadow: none; border: none; padding-left: 1rem;
    display: none;
  }
  .dropdown-menu.open { display: block; }
}

@media (max-width: 640px) {
  .about-me-body { grid-template-columns: 1fr; gap: 2rem; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .nav-logo-text { display: none; }
}
