@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

/* ─── PALETTE ────────────────────────────────────────────── */
:root {
  --forest:       #005520;
  --forest-mid:   #006630;
  --forest-light: #0d844c;
  --forest-tint:  #e0f5e6;
  --ink:          #0e1510;
  --offwhite:     #f5faf6;
  --offwhite-2:   #edf5ef;
  --white:        #ffffff;

  --forest-section: #1e3d26;

  /* Aliases used throughout — mapped to brand tokens */
  --navy:      #1e3d26;
  --teal:      #005520;
  --teal-dark: #006630;
  --steel:     #0d844c;
  --fog:       #f5faf6;
  --body-text: rgba(14,21,16,0.62);
  --muted:     rgba(14,21,16,0.42);
  --border:    rgba(14,21,16,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--body-text);
  line-height: 1.65;
  background: var(--white);
}

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

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.25; font-weight: 700; }
h3 { font-size: 1.25rem; line-height: 1.35; font-weight: 700; }

p { max-width: 680px; }
p + p { margin-top: 1rem; }

a {
  color: var(--steel);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--teal); }

strong { font-weight: 600; color: var(--navy); }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 88px 2rem;
}

.section-fog  { background: var(--fog); }
.section-navy { background: var(--navy); }

.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-navy p,
.section-navy li,
.section-navy a {
  color: var(--white);
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(14,21,16,0.24);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo svg {
  flex-shrink: 0;
}

.nav-wordmark {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
}

.nav-comp {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--forest-light);
}

.nav-cat {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--offwhite);
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  color: rgba(245,250,246,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--forest-light);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--offwhite);
  transition: all 0.25s ease;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  padding: 110px 2rem 100px;
  background: var(--white);
}

.hero-centered {
  text-align: center;
}

.hero-centered h1 {
  margin: 0 auto 1.25rem;
}

.hero-centered .subheadline {
  margin: 0 auto 2.25rem;
}

.hero .subheadline {
  font-size: 1.1rem;
  color: var(--body-text);
  max-width: 620px;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--teal);
  color: var(--white) !important;
  border: 2px solid var(--teal);
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 12px 28px;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
  color: var(--white) !important;
}

.btn-outline {
  background: transparent;
  color: var(--teal) !important;
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white) !important;
}

/* ─── ABOUT LAYOUT ───────────────────────────────────────── */
.about-layout {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about-photo {
  flex-shrink: 0;
  width: 300px;
  max-width: 300px;
  overflow: hidden;
}

.about-photo img {
  width: 300px;
  max-width: 100%;
  height: auto;
  border-radius: 45px;
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.28);
}

@media (max-width: 768px) {
  .about-layout {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .about-photo {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ─── WHY IT MATTERS ─────────────────────────────────────── */
.why-matters {
  text-align: center;
}

.why-matters h2 {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.why-matters p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── SECTION INTROS ─────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-light);
  background: var(--forest-tint);
  border-radius: 4px;
  padding: 3px 9px;
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 700px;
  margin-bottom: 3rem;
}

.section-intro h2 { margin-bottom: 1rem; }

/* ─── SERVICE CARDS ──────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  background: var(--white);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 4px 24px rgba(0,85,32,0.1);
  border-color: rgba(0,85,32,0.2);
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.service-card p { margin-bottom: 1rem; }

.good-for {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.good-for strong {
  color: var(--forest-light);
  font-weight: 600;
}

/* ─── FAQ ACCORDION ──────────────────────────────────────── */
.faq-list {
  margin-top: 0.5rem;
}

details.faq-item {
  border-bottom: 1px solid var(--border);
}

details.faq-item:first-child {
  border-top: 1px solid var(--border);
}

details.faq-item summary {
  padding: 1.25rem 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--forest-light);
  flex-shrink: 0;
  line-height: 1;
}

details.faq-item[open] summary::after {
  content: '\2212';
}

.faq-answer {
  padding: 0 0 1.5rem;
  color: var(--body-text);
}

/* ─── BLOCKQUOTE ─────────────────────────────────────────── */
blockquote {
  border-left: 3px solid var(--forest-light);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  color: var(--navy);
  font-size: 1.1rem;
  font-style: italic;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-email-link {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest-light);
  margin: 0.5rem 0 2rem;
}

.contact-email-link:hover { color: var(--forest); }

.contact-form { max-width: 580px; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.95rem;
  padding: 10px 14px;
  background: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--forest-light);
  outline: none;
  box-shadow: 0 0 0 3px rgba(13,132,76,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* ─── RESOURCES ──────────────────────────────────────────── */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.resource-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.resource-card:hover {
  box-shadow: 0 4px 24px rgba(0,85,32,0.1);
  border-color: rgba(0,85,32,0.2);
}

.resource-card h3 {
  margin-bottom: 0.75rem;
}

.resource-card-footer {
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.resource-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-light);
  background: var(--forest-tint);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 0.75rem;
}

/* ─── BOOKING OPTIONS ────────────────────────────────────── */
.booking-options {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.booking-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 32px;
  background: var(--white);
  text-decoration: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  min-width: 160px;
}

.booking-card:hover {
  box-shadow: 0 4px 24px rgba(0,85,32,0.12);
  border-color: var(--forest-light);
  transform: translateY(-2px);
}

.booking-duration {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.booking-label {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 400;
}

.booking-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest-light);
  margin-top: 0.5rem;
}

/* ─── CTA STRIP ──────────────────────────────────────────── */
.cta-strip {
  text-align: center;
}

.cta-strip h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.cta-strip p {
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 48px 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-comp {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--forest);
  letter-spacing: -0.02em;
}

.footer-cat {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

footer p {
  color: var(--body-text);
  font-size: 0.875rem;
  max-width: none;
}

footer p + p {
  margin-top: 0.4rem;
}

footer a {
  color: var(--body-text);
  font-size: 0.875rem;
}

footer a:hover {
  color: var(--forest-light);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.resource-badge--youtube {
  color: #b91c1c;
  background: #fef2f2;
}

/* ─── CONSENT BANNER ─────────────────────────────────────── */
#consent-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--forest-section);
  color: rgba(255,255,255,0.85);
  padding: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9999;
  font-size: 0.875rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}

#consent-banner p { margin: 0; }

#consent-banner a { color: var(--forest-tint); }

.consent-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

#consent-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  padding: 0.4rem 1.1rem;
  border-radius: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color 0.2s;
}

#consent-decline:hover { border-color: rgba(255,255,255,0.65); }

#consent-accept {
  background: var(--forest-light);
  border: none;
  color: #fff;
  padding: 0.4rem 1.1rem;
  border-radius: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

#consent-accept:hover { background: var(--forest-mid); }

@media (max-width: 600px) {
  #consent-banner { flex-direction: column; align-items: flex-start; padding: 1.25rem 1.5rem; }
}

/* ─── BLOG LIST ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  gap: 1.5rem;
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  background: var(--white);
  display: block;
  text-decoration: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 24px rgba(0,85,32,0.1);
  border-color: rgba(0,85,32,0.2);
}

.blog-card-meta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.5rem;
  max-width: none;
}

.blog-card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.blog-card p {
  color: var(--body-text);
  font-size: 0.95rem;
}

.blog-card-cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest-light);
}

/* ─── BLOG POST ──────────────────────────────────────────── */
.post-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 2rem 48px;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest-light);
  text-decoration: none;
  margin-bottom: 2rem;
}

.post-back:hover { color: var(--forest); }

.post-meta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 0.75rem;
  max-width: none;
}

.post-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.post-divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

.post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 2rem 96px;
}

.post-content h2 {
  font-size: 1.45rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.post-content h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.post-content p {
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 1.25rem;
}

.post-content ul,
.post-content ol {
  margin: 0.75rem 0 1.5rem 1.5rem;
}

.post-content li {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.post-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

.post-content a {
  color: var(--forest-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content a:hover { color: var(--forest); }

.post-content strong { color: var(--navy); }

/* ─── OPT-IN PAGE ────────────────────────────────────────── */
.optin-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}

.optin-preview h2 { margin-bottom: 1rem; }
.optin-preview > p { margin-bottom: 2rem; }

.checklist-preview-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checklist-preview-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.checklist-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--forest-tint);
  color: var(--forest);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.checklist-preview-list li p {
  font-size: 0.9rem;
  color: var(--body-text);
  margin-top: 0.25rem;
  max-width: none;
}

.optin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: sticky;
  top: 90px;
  box-shadow: 0 4px 32px rgba(0,85,32,0.08);
}

.optin-card h3 { margin-bottom: 0.75rem; }
.optin-card > p { font-size: 0.95rem; margin-bottom: 1.5rem; }

.optin-form-row {
  display: flex;
  gap: 0.5rem;
}

.optin-form-row input[type="email"] {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.95rem;
  padding: 11px 14px;
  background: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-width: 0;
}

.optin-form-row input[type="email"]:focus {
  border-color: var(--forest-light);
  outline: none;
  box-shadow: 0 0 0 3px rgba(13,132,76,0.15);
}

.optin-form-row .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.optin-privacy {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
  max-width: none;
}

/* ─── FEATURED RESOURCE CARD ─────────────────────────────── */
.resource-card--featured {
  border-color: rgba(0,85,32,0.25);
  box-shadow: 0 2px 16px rgba(0,85,32,0.08);
}

.resource-badge--free {
  color: var(--forest);
  background: var(--forest-tint);
}

/* ─── THANK-YOU PAGE ─────────────────────────────────────── */
.thankyou-next {
  margin-top: 2.5rem;
}

.thankyou-next p {
  margin: 0 auto 1.25rem;
  font-size: 0.95rem;
}

.thankyou-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  section { padding: 64px 1.5rem; }
  .hero { padding: 72px 1.5rem 64px; }

  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  }

  .nav-links.open { display: flex; }

  .nav-links li a {
    display: block;
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }

  .services-grid { grid-template-columns: 1fr; }

  .btn { display: block; text-align: center; }

  .optin-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .optin-card { position: static; }

  .optin-form-row { flex-direction: column; }
}
