/* ============================================
   SALES THE JEN WAY — Global Styles
   ============================================ */

:root {
  --evergreen:     #1F3D2B;
  --harvest-gold:  #E3B23C;
  --soil-brown:    #6B4E2E;
  --cream:         #F6F2E8;
  --cream-alt:     #F1E5D1;
  --charcoal:      #2B2B2B;

  --font-heading: 'DM Serif Display', serif;
  --font-body:    'Montserrat', sans-serif;
  --font-alt:     'Lato', sans-serif;

  --max-width:    1100px;
  --nav-height:   72px;
  --ease:         0.22s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1rem;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soil-brown);
  margin-bottom: 0.6rem;
  display: block;
}
.section-label--light { color: var(--harvest-gold); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  border: none;
  text-align: center;
  line-height: 1;
}
.btn-primary {
  background: var(--harvest-gold);
  color: var(--charcoal);
}
.btn-primary:hover {
  background: #d4a32e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(246,242,232,0.5);
}
.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(246,242,232,0.08);
}
.btn-outline-dark {
  background: transparent;
  color: var(--evergreen);
  border: 2px solid var(--evergreen);
}
.btn-outline-dark:hover {
  background: var(--evergreen);
  color: var(--cream);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }


/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--evergreen);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.nav-container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--cream);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-brand span { color: var(--harvest-gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246,242,232,0.7);
  transition: color var(--ease);
  padding-bottom: 2px;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active {
  color: var(--cream);
  border-bottom: 2px solid var(--harvest-gold);
}
.nav-cta {
  background: var(--harvest-gold) !important;
  color: var(--charcoal) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 3px;
  text-transform: none !important;
  letter-spacing: 0.03em !important;
  font-size: 0.82rem !important;
  border-bottom: none !important;
  transition: background var(--ease) !important;
}
.nav-cta:hover { background: #d4a32e !important; }
.nav-cta.active { border-bottom: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--evergreen);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-top: 1px solid rgba(246,242,232,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(246,242,232,0.08);
    font-size: 0.88rem;
  }
  .nav-links a.active { border-bottom: 1px solid rgba(246,242,232,0.08); color: var(--harvest-gold); }
  .nav-cta {
    display: block !important;
    text-align: center !important;
    margin-top: 1rem !important;
    padding: 0.85rem !important;
    border-bottom: none !important;
  }
}


/* ============================================
   HOME — HERO
   ============================================ */
.hero-home {
  min-height: calc(100vh - var(--nav-height));
  background: var(--evergreen);
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,30,20,0.45) 0%, rgba(15,30,20,0.35) 100%);
  pointer-events: none;
}
.hero-home::after {
  content: 'NO SCRIPT';
  position: absolute;
  right: -2rem;
  bottom: -1rem;
  font-family: var(--font-heading);
  font-size: clamp(6rem, 16vw, 14rem);
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.hero-home-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-home h1 {
  color: var(--cream);
  max-width: 720px;
  margin-bottom: 1.5rem;
}
.hero-home h1 em {
  font-style: italic;
  color: var(--harvest-gold);
}
.hero-sub {
  font-family: var(--font-alt);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(246,242,232,0.7);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(246,242,232,0.35);
  font-style: italic;
}


/* ============================================
   PAGE HERO (interior pages)
   ============================================ */
.page-hero {
  background: var(--evergreen);
  padding: 4.5rem 1.5rem 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--cream); }
.page-hero p {
  font-family: var(--font-alt);
  font-size: 1.1rem;
  color: rgba(246,242,232,0.65);
  max-width: 560px;
  margin: 1rem auto 0;
  line-height: 1.7;
}


/* ============================================
   HOME — ABOUT INTRO
   ============================================ */
.about-intro {
  background: var(--cream);
  padding: 5.5rem 1.5rem;
}
.about-intro-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-intro-text h2 { color: var(--evergreen); margin-bottom: 1.25rem; }
.about-intro-text p {
  font-family: var(--font-alt);
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.8;
}
.about-intro-text .cta-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--evergreen);
  border-bottom: 2px solid var(--harvest-gold);
  padding-bottom: 2px;
  transition: color var(--ease);
}
.about-intro-text .cta-link:hover { color: var(--soil-brown); }

.photo-placeholder {
  background: var(--cream-alt);
  border: 2px dashed rgba(107,78,46,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 460px;
  border-radius: 4px;
  color: var(--soil-brown);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-align: center;
  gap: 0.75rem;
  padding: 2rem;
  opacity: 0.8;
}

.hero-photo-wrap {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 520px;
}

@media (max-width: 760px) {
  .about-intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .photo-placeholder { min-height: 260px; order: -1; }
  .hero-photo-wrap { order: -1; }
}


/* ============================================
   HOME — THREE WAYS
   ============================================ */
.three-ways {
  background: var(--cream-alt);
  padding: 5.5rem 1.5rem;
}
.three-ways-inner { max-width: var(--max-width); margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.section-header h2 { color: var(--evergreen); margin-bottom: 0.5rem; }
.section-header p {
  font-family: var(--font-alt);
  font-size: 1rem;
  color: var(--charcoal);
  max-width: 520px;
  opacity: 0.75;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--cream);
  border-radius: 4px;
  padding: 2rem 1.75rem 2.25rem;
  border-top: 4px solid var(--evergreen);
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soil-brown);
  margin-bottom: 0.5rem;
}
.card h3 { color: var(--evergreen); margin-bottom: 0.85rem; font-size: 1.25rem; }
.card p { font-family: var(--font-alt); font-size: 0.95rem; flex: 1; line-height: 1.7; }
.card .card-cta { margin-top: 1.75rem; }

@media (min-width: 540px) and (max-width: 860px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 539px) { .cards-grid { grid-template-columns: 1fr; } }


/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
  background: var(--evergreen);
  padding: 5.5rem 1.5rem;
  text-align: center;
  position: relative;
}
.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 20, 0.78);
  pointer-events: none;
}
.quote-section .quote-mark,
.quote-section blockquote,
.quote-section cite {
  position: relative;
  z-index: 1;
}
.quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--harvest-gold);
  line-height: 0.6;
  display: block;
  margin-bottom: 2rem;
  opacity: 0.5;
}
.quote-section blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 1.75rem;
  line-height: 1.45;
  font-style: italic;
}
.quote-section cite {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--harvest-gold);
  font-style: normal;
}


/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--soil-brown);
  padding: 5rem 1.5rem;
  text-align: center;
}
.cta-band h2 { color: var(--cream); margin-bottom: 0.85rem; }
.cta-band p {
  font-family: var(--font-alt);
  color: rgba(246,242,232,0.75);
  max-width: 520px;
  margin: 0 auto 2.25rem;
  font-size: 1.05rem;
}
.cta-band-light {
  background: var(--cream-alt);
}
.cta-band-light h2 { color: var(--evergreen); }
.cta-band-light p { color: var(--charcoal); opacity: 0.8; }


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--evergreen);
  padding: 5.5rem 1.5rem;
}
.testimonials-inner { max-width: var(--max-width); margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-header h2 { color: var(--cream); margin-top: 0.5rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(246,242,232,0.06);
  border: 1px solid rgba(246,242,232,0.1);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonial-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--harvest-gold);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.testimonial-initial {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--soil-brown);
  border: 3px solid var(--harvest-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--harvest-gold);
  margin-bottom: 1.25rem;
}
.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--cream);
  font-style: italic;
  line-height: 1.7;
}

/* ============================================
   MANTRAS
   ============================================ */
.mantras-section {
  background: var(--cream-alt);
  padding: 5.5rem 1.5rem;
}
.mantras-inner {
  max-width: 860px;
  margin: 0 auto;
}
.mantras-inner .section-header { margin-bottom: 3rem; }
.mantras-inner .section-header h2 { color: var(--evergreen); }

.mantra-item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(107,78,46,0.2);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.mantra-item:first-of-type { border-top: 1px solid rgba(107,78,46,0.2); }
.mantra-dash {
  width: 28px;
  height: 3px;
  background: var(--harvest-gold);
  flex-shrink: 0;
}
.mantra-item p {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--evergreen);
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 720px) { .testimonials-grid { grid-template-columns: 1fr; } }
@media (min-width: 540px) and (max-width: 720px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }


/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  padding: 3.5rem 1.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(246,242,232,0.1);
  margin-bottom: 1.75rem;
}
.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.85rem;
}
.footer-brand .brand-name span { color: var(--harvest-gold); }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(246,242,232,0.45);
  font-family: var(--font-alt);
  line-height: 1.7;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}
.footer-social a {
  color: rgba(246,242,232,0.35);
  transition: color var(--ease);
  display: flex;
  align-items: center;
}
.footer-social a:hover { color: var(--harvest-gold); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--harvest-gold);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(246,242,232,0.5);
  font-family: var(--font-alt);
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(246,242,232,0.25);
  font-family: var(--font-body);
}

@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; gap: 2rem; } }


/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  background: var(--cream);
  padding: 5.5rem 1.5rem;
}
.about-story-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: start;
}
.about-story-text h2 { color: var(--evergreen); margin-bottom: 1.25rem; }
.about-story-text p { font-family: var(--font-alt); font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.25rem; }

@media (max-width: 760px) { .about-story-inner { grid-template-columns: 1fr; gap: 2.5rem; } }

.principles-section {
  background: var(--cream-alt);
  padding: 5.5rem 1.5rem;
}
.principles-inner { max-width: var(--max-width); margin: 0 auto; }
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.principle-card {
  background: var(--cream);
  padding: 2rem 1.75rem;
  border-radius: 4px;
  border-left: 4px solid var(--harvest-gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.principle-card h3 { color: var(--evergreen); margin-bottom: 0.75rem; font-size: 1.15rem; }
.principle-card p { font-family: var(--font-alt); font-size: 0.95rem; line-height: 1.7; }

@media (max-width: 720px) { .principles-grid { grid-template-columns: 1fr; } }


/* ============================================
   SERVICES PAGE
   ============================================ */
.service-section {
  padding: 5.5rem 1.5rem;
}
.service-section--cream { background: var(--cream); }
.service-section--alt   { background: var(--cream-alt); }

.service-block {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.service-block.flip { direction: rtl; }
.service-block.flip > * { direction: ltr; }

.service-content .service-badge {
  display: inline-block;
  background: var(--evergreen);
  color: var(--harvest-gold);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}
.service-content h2 { color: var(--evergreen); margin-bottom: 1.25rem; }
.service-content p { font-family: var(--font-alt); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1rem; }
.feature-list { margin: 1.5rem 0 2rem; }
.feature-list li {
  font-family: var(--font-alt);
  font-size: 0.95rem;
  padding: 0.6rem 0 0.6rem 1.6rem;
  position: relative;
  border-bottom: 1px solid rgba(107,78,46,0.12);
  color: var(--charcoal);
  line-height: 1.5;
}
.feature-list li:first-child { border-top: 1px solid rgba(107,78,46,0.12); }
.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--harvest-gold);
  font-weight: 700;
}

.service-visual {
  background: var(--evergreen);
  border-radius: 4px;
  padding: 3rem 2.25rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.service-visual .visual-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--harvest-gold);
  margin-bottom: 1rem;
  display: block;
}
.service-visual h3 {
  color: var(--cream);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.35;
}
.service-visual p {
  font-family: var(--font-alt);
  font-size: 0.9rem;
  color: rgba(246,242,232,0.65);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.service-visual .divider {
  border: none;
  border-top: 1px solid rgba(246,242,232,0.12);
  margin: 1.5rem 0;
}

@media (max-width: 800px) {
  .service-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-block.flip { direction: ltr; }
  .service-visual { position: static; }
}


/* ============================================
   WEBINARS PAGE
   ============================================ */
.webinar-layout {
  background: var(--cream);
  padding: 5.5rem 1.5rem;
}
.webinar-layout-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.webinar-details h2 { color: var(--evergreen); margin-bottom: 1.25rem; }
.webinar-details p { font-family: var(--font-alt); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1rem; }
.webinar-topics {
  background: var(--cream-alt);
  border-radius: 4px;
  padding: 1.75rem;
  margin-top: 1.5rem;
}
.webinar-topics h4 {
  font-family: var(--font-heading);
  color: var(--evergreen);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.signup-box {
  background: var(--evergreen);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.signup-box h3 { color: var(--cream); margin-bottom: 0.4rem; font-size: 1.4rem; }
.signup-box .signup-sub {
  font-family: var(--font-alt);
  font-size: 0.88rem;
  color: rgba(246,242,232,0.55);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

@media (max-width: 800px) {
  .webinar-layout-inner { grid-template-columns: 1fr; }
  .signup-box { position: static; }
}


/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: rgba(246,242,232,0.65);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(246,242,232,0.18);
  border-radius: 3px;
  background: rgba(246,242,232,0.08);
  color: var(--cream);
  font-family: var(--font-alt);
  font-size: 0.95rem;
  transition: border-color var(--ease), background var(--ease);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--harvest-gold);
  background: rgba(246,242,232,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(246,242,232,0.3); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Light form (on cream backgrounds) */
.form-light .form-group label { color: var(--charcoal); opacity: 0.7; }
.form-light .form-group input,
.form-light .form-group textarea {
  background: #fff;
  border: 1px solid rgba(43,43,43,0.18);
  color: var(--charcoal);
}
.form-light .form-group input:focus,
.form-light .form-group textarea:focus { border-color: var(--evergreen); }
.form-light .form-group input::placeholder,
.form-light .form-group textarea::placeholder { color: rgba(43,43,43,0.3); }

.form-success {
  display: none;
  background: rgba(227,178,60,0.12);
  border: 1px solid var(--harvest-gold);
  border-radius: 3px;
  padding: 1.5rem;
  text-align: center;
  font-family: var(--font-alt);
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.6;
}
.form-success.visible { display: block; }
.form-success-dark {
  color: var(--evergreen);
}


/* ============================================
   COMMUNITY PAGE
   ============================================ */
.community-layout {
  background: var(--cream);
  padding: 5.5rem 1.5rem;
}
.community-layout-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.community-text h2 { color: var(--evergreen); margin-bottom: 1.25rem; }
.community-text p { font-family: var(--font-alt); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1rem; }

.community-box {
  background: var(--evergreen);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.community-box h3 { color: var(--cream); margin-bottom: 0.75rem; }
.community-box p {
  font-family: var(--font-alt);
  color: rgba(246,242,232,0.65);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.community-box .free-badge {
  display: inline-block;
  background: var(--harvest-gold);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

@media (max-width: 800px) {
  .community-layout-inner { grid-template-columns: 1fr; }
  .community-box { position: static; }
}


/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--cream-alt); padding: 5.5rem 1.5rem; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { margin-top: 2.5rem; }
.faq-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(107,78,46,0.15);
}
.faq-item:first-child { border-top: 1px solid rgba(107,78,46,0.15); }
.faq-q {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--evergreen);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.faq-a {
  font-family: var(--font-alt);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin: 0;
}


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  background: var(--cream);
  padding: 5.5rem 1.5rem;
}
.contact-layout-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-text h2 { color: var(--evergreen); margin-bottom: 1.25rem; }
.contact-text p { font-family: var(--font-alt); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1rem; }
.contact-detail {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-detail-item {
  font-family: var(--font-alt);
  font-size: 0.9rem;
  color: var(--soil-brown);
}
.contact-detail-item strong { color: var(--charcoal); display: block; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.15rem; font-family: var(--font-body); }

@media (max-width: 760px) { .contact-layout-inner { grid-template-columns: 1fr; gap: 2.5rem; } }
