/* Weavers — shared site stylesheet (v4 temp brand: lime #C6D35A) */

:root {
  --weavers-cream: #FFFFE8;
  --weavers-lime: #C6D35A;
  --weavers-teal: #9CE5E3;
  --weavers-orange: #FF934E;
  --weavers-dark-green: #10110F;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--weavers-dark-green);
  background: var(--weavers-cream);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 { font-family: 'Koh Santepheap', serif; font-weight: 400; }
a { color: inherit; }
img { max-width: 100%; display: block; }
main { flex: 1 0 auto; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.handwritten { font-family: 'Reenie Beanie', cursive; }

/* Top bar */
header { padding: 16px 0; }
header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { height: 40px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 0.92rem; margin-left: auto; }
.site-nav a { opacity: 0.85; text-decoration: none; transition: opacity 0.15s ease; white-space: nowrap; }
.site-nav a:hover, .site-nav a.active { opacity: 1; font-weight: 700; }
@media (max-width: 900px) { .site-nav { display: none; } }

.btn-join {
  display: inline-flex; align-items: center;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.85rem;
  background: transparent; color: var(--weavers-dark-green);
  border: 1.5px solid var(--weavers-dark-green);
  padding: 7.5px 16.5px; border-radius: 999px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
  flex-shrink: 0;
}
.btn-join:hover { background: var(--weavers-lime); border-color: var(--weavers-lime); }

.nav-divider { width: 1px; height: 20px; background: rgba(16, 17, 15, 0.15); flex-shrink: 0; }

.signin-link { opacity: 0.85; font-size: 0.92rem; text-decoration: none; white-space: nowrap; transition: opacity 0.15s ease; flex-shrink: 0; }
.signin-link:hover { opacity: 1; font-weight: 700; }

.btn-primary {
  display: inline-block; text-align: center;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.92rem;
  background: var(--weavers-lime); color: var(--weavers-dark-green);
  padding: 11px 20px; border-radius: 999px;
  text-decoration: none; width: fit-content;
  transition: filter 0.15s ease;
}
.btn-primary:hover { filter: brightness(0.92); }

.btn-outline {
  display: inline-block; text-align: center;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.92rem;
  background: transparent; color: var(--weavers-dark-green);
  border: 1.5px solid var(--weavers-dark-green);
  padding: 9.5px 18.5px; border-radius: 999px;
  text-decoration: none; width: fit-content;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn-outline:hover { background: var(--weavers-lime); border-color: var(--weavers-lime); }

.btn-teal {
  display: inline-block; text-align: center;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.92rem;
  background: var(--weavers-teal); color: var(--weavers-dark-green);
  padding: 11px 20px; border-radius: 999px;
  text-decoration: none; width: fit-content;
  transition: filter 0.15s ease;
}
.btn-teal:hover { filter: brightness(0.92); }

.btn-orange {
  display: inline-block; text-align: center;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.92rem;
  background: var(--weavers-orange); color: var(--weavers-dark-green);
  padding: 11px 20px; border-radius: 999px;
  text-decoration: none; width: fit-content;
  transition: filter 0.15s ease;
}
.btn-orange:hover { filter: brightness(0.92); }

/* Generic hero (interior pages) */
.page-hero { position: relative; padding: 64px 0 20px; text-align: center; }
.page-hero .wrap { max-width: 760px; }
.page-hero .eyebrow {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--weavers-orange);
  margin-bottom: 10px;
}
.page-hero h1 { font-size: 3rem; margin-bottom: 16px; }
.page-hero p.lead { font-size: 1.15rem; opacity: 0.85; margin-bottom: 0; }
@media (max-width: 640px) { .page-hero h1 { font-size: 2.3rem; } }

/* Home hero */
.hero { padding: 64px 0 40px; }
.hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.hero-left { display: flex; flex-direction: column; height: 100%; }
.hero h1 { font-size: 3rem; line-height: 1.05; margin-bottom: 16px; }
.hero p.subhead { font-size: 1.15rem; max-width: 42ch; margin-bottom: 0; }
.hero-grid { display: flex; align-items: center; justify-content: center; }
.hero-grid img { width: 100%; height: auto; border-radius: 18px; }
.who { margin-top: 24px; }
.who h2 { font-size: 1.3rem; margin-bottom: 16px; }
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.card {
  background: rgba(255, 255, 255, 0.8); border-radius: 14px; padding: 22px 20px;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 10px rgba(16, 17, 15, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(16, 17, 15, 0.15); }
.card .tag {
  display: inline-block; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.7rem;
  letter-spacing: 0.06em; text-transform: uppercase; background: var(--weavers-teal);
  color: var(--weavers-dark-green); padding: 4px 10px; border-radius: 999px;
  margin-bottom: 10px; width: fit-content;
}
.card:nth-child(2) .tag { background: var(--weavers-orange); }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { font-size: 0.92rem; color: var(--weavers-dark-green); opacity: 0.85; margin-bottom: 16px; flex-grow: 1; }
.card .cta-link {
  display: inline-block; font-family: 'Inter', sans-serif; font-size: 0.92rem;
  opacity: 0.85; color: var(--weavers-dark-green); text-decoration: none; width: fit-content;
  transition: opacity 0.15s ease;
}
.card:hover .cta-link, .card .cta-link:hover { opacity: 1; font-weight: 700; }
.card .cta-link .arrow { display: inline-block; transition: transform 0.2s ease; }
.card:hover .cta-link .arrow, .card .cta-link:hover .arrow { transform: translateX(4px); }
.consent-note { font-size: 0.8rem; opacity: 0.7; margin-top: 14px; }

/* Teal-tinted band, N-up grid */
.band { background: rgba(156, 229, 227, 0.22); padding: 48px 0; }
h2.section-title { font-size: 1.6rem; text-align: left; margin-bottom: 28px; }
h2.section-title.center { text-align: center; }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .grid-4 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

.icon-card { background: #E9F9E7; border-radius: 14px; padding: 22px 18px; }
.icon-card.white { background: #ffffff; box-shadow: 0 2px 10px rgba(16, 17, 15, 0.06); }
.icon-badge {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--weavers-dark-green); background: var(--weavers-teal); margin-bottom: 14px;
}
.icon-badge svg { width: 20px; height: 20px; }
.icon-card:nth-child(2) .icon-badge, .icon-card:nth-child(2n) .icon-badge { background: var(--weavers-orange); }
.icon-card:nth-child(3) .icon-badge { background: var(--weavers-lime); }
.icon-card:nth-child(4) .icon-badge { background: var(--weavers-teal); }
.icon-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.icon-card p { font-size: 0.92rem; opacity: 0.85; }

/* Journey / steps pattern */
section.detail { padding: 56px 0; }
section.detail.tint-teal { background: rgba(156, 229, 227, 0.22); }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card { position: relative; background: #ffffff; border-radius: 14px; padding: 22px 18px; box-shadow: 0 2px 10px rgba(16, 17, 15, 0.06); }
.step-card .step-icon {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--weavers-dark-green); background: var(--weavers-teal); margin-bottom: 14px;
}
.step-card .step-icon svg { width: 20px; height: 20px; }
.step-card:nth-child(2) .step-icon { background: var(--weavers-orange); }
.step-card:nth-child(3) .step-icon { background: var(--weavers-lime); }
.step-card:nth-child(4) .step-icon { background: var(--weavers-teal); }
.step-card .eyebrow { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.5; margin-bottom: 6px; }
.step-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step-card p:not(.eyebrow) { font-size: 0.92rem; opacity: 0.85; margin-bottom: 8px; }
.step-card p.summary { font-style: italic; font-weight: 600; opacity: 1; margin-bottom: 10px; }
.step-card p.plus { text-align: center; opacity: 0.35; font-weight: 700; margin: -2px 0 6px; }
.step-card ul { list-style: none; margin: 0 0 8px 2px; }
.step-card li { position: relative; font-size: 0.92rem; opacity: 0.85; margin-bottom: 4px; padding-left: 20px; }
.step-card li::before { content: '\2713'; position: absolute; left: 0; top: 0; font-weight: 700; opacity: 1; color: var(--weavers-teal); }
.step-card:nth-child(2) li::before { color: var(--weavers-orange); }
.step-card:nth-child(3) li::before { color: var(--weavers-lime); }
.step-card:nth-child(4) li::before { color: var(--weavers-teal); }
.step-card p:last-child, .step-card ul:last-child { margin-bottom: 0; }

/* Value / benefit band */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-grid.auto { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
@media (max-width: 700px) { .value-grid { grid-template-columns: 1fr; } }
.value-card { position: relative; border-radius: 14px; padding: 30px 20px 22px; }
.value-card::before { content: ''; position: absolute; top: 0; left: 20px; right: 20px; height: 5px; border-radius: 0 0 4px 4px; background: var(--weavers-teal); }
.value-card:nth-child(2)::before, .value-card:nth-child(5)::before { background: var(--weavers-orange); }
.value-card:nth-child(3)::before { background: var(--weavers-lime); }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: 0.92rem; opacity: 0.85; }

/* Trust / safety alert */
.trust { background: var(--weavers-cream); padding: 28px 0; }
.alert {
  display: flex; align-items: flex-start; gap: 14px; max-width: 760px; margin: 0 auto;
  background: var(--weavers-cream); border: 1px solid var(--weavers-lime); border-left: 4px solid var(--weavers-lime);
  border-radius: 12px; padding: 18px 44px 18px 22px; text-align: left;
}
.alert-icon { flex-shrink: 0; width: 24px; height: 24px; margin-top: 2px; color: var(--weavers-lime); }
.alert p { font-size: 0.98rem; line-height: 1.55; text-wrap: balance; }
.alert a { color: var(--weavers-dark-green); font-weight: 600; text-decoration: underline; }

/* Interior/simple content pages */
.content-page { padding: 8px 0 64px; }
.content-page .lede { font-size: 1.1rem; opacity: 0.85; max-width: 62ch; margin: 0 auto 32px; text-align: center; }
.content-page .prose { max-width: 720px; margin: 0 auto; }
.content-page .prose h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.content-page .prose h2:first-child { margin-top: 0; }
.content-page .prose h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.content-page .prose p { margin-bottom: 14px; opacity: 0.92; }
.content-page .prose ul, .content-page .prose ol { margin: 0 0 14px 22px; opacity: 0.92; }
.content-page .prose li { margin-bottom: 6px; }
.content-page .prose a { text-decoration: underline; }
.content-page .prose strong { font-weight: 700; }
.content-page .prose .callout {
  background: rgba(156, 229, 227, 0.22); border-radius: 12px; padding: 18px 22px; margin: 20px 0;
}
.content-page .meta { text-align: center; font-size: 0.85rem; opacity: 0.6; margin-bottom: 36px; }
.toc { max-width: 720px; margin: 0 auto 40px; background: #fff; border-radius: 14px; padding: 22px 24px; box-shadow: 0 2px 10px rgba(16,17,15,0.06); }
.toc h4 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.55; margin-bottom: 10px; }
.toc ol { margin-left: 18px; }
.toc a { text-decoration: none; opacity: 0.85; }
.toc a:hover { opacity: 1; font-weight: 700; }

/* Quote / testimonial cards */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .quote-grid { grid-template-columns: 1fr; } }
.quote-card { background: #fff; border-radius: 14px; padding: 24px 22px; box-shadow: 0 2px 10px rgba(16,17,15,0.06); }
.quote-card p.quote { font-size: 1.02rem; font-style: italic; margin-bottom: 12px; }
.quote-card p.attrib { font-size: 0.85rem; font-weight: 700; opacity: 0.7; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 720px; margin: 0 auto; }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { background: #fff; border-radius: 14px; padding: 26px 22px; text-align: center; box-shadow: 0 2px 10px rgba(16,17,15,0.06); }
.team-card .avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 16px; background: var(--weavers-teal);
  display: flex; align-items: center; justify-content: center; font-family: 'Koh Santepheap', serif; font-size: 1.6rem;
}
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card p.role { font-size: 0.85rem; opacity: 0.7; margin-bottom: 10px; }
.team-card a { font-size: 0.88rem; text-decoration: underline; }

/* Placeholder / centered simple page */
.placeholder { padding: 88px 0 96px; text-align: center; }
.placeholder .wrap { max-width: 640px; }
.placeholder h1 { font-size: 2.6rem; margin-bottom: 18px; }
.placeholder p { font-size: 1.08rem; opacity: 0.8; margin-bottom: 30px; }
.placeholder .back-link { display: inline-block; margin-top: 22px; font-size: 0.9rem; opacity: 0.65; }
.placeholder .back-link:hover { opacity: 1; font-weight: 700; }

/* Photo pair block (used on signup pages) */
.photo-pair { display: flex; justify-content: center; margin: 8px 0 36px; }
.photo-pair img { max-width: 260px; border-radius: 16px; box-shadow: 0 10px 30px rgba(16,17,15,0.15); }

/* Footer */
footer { margin-top: auto; background: var(--weavers-dark-green); color: var(--weavers-cream); }
footer a { text-decoration: none; }
.footer-top { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr; gap: 32px; padding: 48px 24px 36px; }
.footer-brand p { opacity: 0.7; font-size: 0.88rem; margin-top: 12px; max-width: 26ch; }
.footer-brand .logo { display: inline-flex; align-items: center; margin-bottom: 14px; }
.footer-brand .logo img { height: 32px; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.5; margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; font-size: 0.92rem; }
.footer-col a { opacity: 0.85; }
.footer-col a:hover { opacity: 1; font-weight: 700; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 18px 24px; font-size: 0.8rem; opacity: 0.65; }
.footer-legal { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom a:hover { font-weight: 700; }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero h1 { font-size: 2.5rem; }
  .cards { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}
