/* ========================================
   Flow Forest Farm — Design System
   Brand palette: Black Olive / Moss Green / Terracotta / White Mushroom
   Typography: Marcellus (headings) + system sans (body)
   ======================================== */

:root {
  /* Brand Palette */
  --black-olive:      #3d3933;
  --black-olive-mid:  #5a5449;
  --black-olive-light:#857e72;
  --moss-green:       #a19b7d;
  --moss-green-light: #c4be9e;
  --moss-green-pale:  #e8e4d4;
  --terracotta:       #bd7048;
  --terracotta-dark:  #9a5835;
  --terracotta-light: #d9916e;
  --white-mushroom:   #fff7e6;
  --cream-warm:       #f5edda;
  --white:            #ffffff;
  --text-dark:        #2a2520;
  --text-mid:         #5a5449;
  --text-light:       #857e72;
  --border:           rgba(61, 57, 51, 0.12);

  --font-heading: 'Marcellus', 'Georgia', 'Times New Roman', serif;
  --font-body:    'Helvetica Neue', 'Arial', sans-serif;

  --radius:       12px;
  --radius-sm:    6px;
  --transition:   0.3s ease;
  --shadow:       0 4px 24px rgba(61, 57, 51, 0.10);
  --shadow-hover: 0 8px 32px rgba(61, 57, 51, 0.18);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white-mushroom);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta-dark); }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--black-olive);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--moss-green);
  margin-bottom: 0.5rem;
}

/* --- Layout --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(61, 57, 51, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--moss-green-light);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
}

.nav-cta:hover { background: var(--terracotta-dark) !important; color: var(--white) !important; }

/* --- Hero --- */
.hero {
  padding-top: 6rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(61,57,51,0.88) 0%, rgba(90,84,73,0.65) 50%, rgba(189,112,72,0.40) 100%),
    url('../images/hero-bg.webp') center/cover no-repeat;
  background-color: var(--black-olive);
  color: var(--white);
  text-align: center;
}

.hero-content { max-width: 780px; margin: 0 auto; padding: 0 1.5rem; }

.hero-logo {
  margin: 0 auto 2rem;
  max-width: 320px;
}

.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--moss-green-pale);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  padding: 0.875rem 2.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(189,112,72,0.4);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(189,112,72,0.5);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--moss-green-light);
  border: 2px solid var(--moss-green);
  padding: 0.75rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: var(--moss-green);
  color: var(--white);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--moss-green-light);
  letter-spacing: 0.05em;
}

/* --- About Section --- */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--moss-green-pale);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss-green);
  font-style: italic;
}

.about-text p { color: var(--text-mid); margin-bottom: 1rem; }

/* --- Offerings Grid --- */
.offerings { background: var(--white-mushroom); }
.offerings h2 { text-align: center; margin-bottom: 0.75rem; }
.offerings .section-intro {
  text-align: center;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 3rem;
}

.offering-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offering-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--moss-green);
}

.offering-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.offering-card h3 { margin-bottom: 0.75rem; }
.offering-card p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 1.25rem; }
.offering-card a { font-weight: 600; font-size: 0.9rem; color: var(--terracotta); }
.offering-card a:hover { color: var(--terracotta-dark); }

/* --- Philosophy Section --- */
.philosophy {
  background: var(--black-olive);
  color: var(--white);
}

.philosophy h2, .philosophy h3 { color: var(--white); }
.philosophy h2 { text-align: center; margin-bottom: 0.75rem; }
.philosophy-intro {
  text-align: center;
  color: var(--moss-green-light);
  max-width: 560px;
  margin: 0 auto 3rem;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pillar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}

.pillar-icon { font-size: 2rem; margin-bottom: 1rem; }
.pillar h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.pillar p { font-size: 0.875rem; color: var(--moss-green-light); line-height: 1.6; }

/* --- Products Preview --- */
.products-preview { background: var(--cream-warm); }
.products-preview h2 { text-align: center; margin-bottom: 0.75rem; }
.products-preview .section-intro {
  text-align: center;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 3rem;
}

.product-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.category-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.category-chip:hover {
  background: var(--moss-green-pale);
  border-color: var(--moss-green);
  transform: translateY(-2px);
}

.category-chip .chip-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.category-chip .chip-label { font-size: 0.8rem; font-weight: 600; color: var(--text-mid); }

.products-cta { text-align: center; }

/* --- Volunteer Teaser --- */
.volunteer-teaser {
  background: var(--black-olive-mid);
  color: var(--white);
}

.volunteer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.volunteer-teaser h2 { color: var(--white); margin-bottom: 1rem; }
.volunteer-teaser p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }

.volunteer-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.detail-item {
  background: rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.detail-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.detail-value { font-weight: 700; color: var(--white); font-size: 1rem; }

/* --- Location / Contact --- */
.location { background: var(--white); }
.location h2 { text-align: center; margin-bottom: 0.75rem; }
.location .section-intro {
  text-align: center;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 3rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-details { list-style: none; }
.location-details li {
  display: flex;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}

.location-details .detail-icon { font-size: 1.25rem; flex-shrink: 0; }

.map-placeholder {
  background: var(--moss-green-pale);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss-green);
  font-style: italic;
}

/* --- Footer --- */
footer {
  background: var(--black-olive);
  color: var(--white);
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
}

footer p { color: var(--moss-green-light); font-size: 0.875rem; margin-bottom: 0.5rem; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 1.5rem 0;
}

.footer-links a { color: var(--moss-green-light); font-size: 0.875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 1.5rem; }

/* --- Page Hero (inner pages) --- */
.shop-hero {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background: var(--black-olive);
  color: var(--white);
  text-align: center;
}

.shop-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.shop-hero p { color: var(--moss-green-light); }

.exp-hero {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background: linear-gradient(160deg, var(--black-olive) 0%, var(--black-olive-mid) 100%);
  color: var(--white);
  text-align: center;
}

.exp-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.exp-hero p { color: rgba(255,255,255,0.8); }

/* --- Shop Nav --- */
.shop-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 65px;
  z-index: 50;
}

.shop-nav-inner {
  display: flex;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.shop-nav-inner::-webkit-scrollbar { display: none; }

.shop-cat-btn {
  white-space: nowrap;
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.shop-cat-btn:hover, .shop-cat-btn.active {
  background: var(--black-olive);
  border-color: var(--black-olive);
  color: var(--white);
}

/* --- Shop Sections --- */
.shop-section { padding: 4rem 0; }
.shop-section:nth-child(even) { background: var(--cream-warm); }

.shop-section-header { margin-bottom: 2rem; }
.shop-section-header h2 { margin-bottom: 0.5rem; }
.shop-section-header p { color: var(--text-mid); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.product-img {
  background: var(--moss-green-pale);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.product-info { padding: 1.25rem; }
.product-info h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.product-info .product-desc { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.75rem; }
.product-info .product-price { font-weight: 700; color: var(--terracotta); font-size: 1rem; }
.product-info .product-unit { font-size: 0.75rem; color: var(--text-light); }

.nas-embed-placeholder {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: var(--white-mushroom);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
}

/* --- Experience Cards --- */
.exp-section { padding: 5rem 0; }
.exp-section:nth-child(even) { background: var(--cream-warm); }

.exp-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

.exp-card-visual {
  background: var(--moss-green-pale);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.exp-card-visual .exp-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.exp-card-visual .exp-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black-olive);
}
.exp-card-visual .exp-price-label { font-size: 0.75rem; color: var(--text-light); }

.exp-card-body { padding: 2rem; }
.exp-card-body h3 { margin-bottom: 0.75rem; }
.exp-card-body p { color: var(--text-mid); margin-bottom: 1rem; font-size: 0.95rem; }

.exp-includes {
  list-style: none;
  margin-bottom: 1.5rem;
}

.exp-includes li {
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.exp-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}

/* --- Volunteer Agreement Summary --- */
.volunteer-terms {
  background: var(--cream-warm);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 3rem;
  border: 1px solid var(--border);
}

.volunteer-terms h3 { margin-bottom: 1.5rem; }

.terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.term-item .term-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--moss-green);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.term-item p { font-size: 0.875rem; color: var(--text-mid); }

/* --- Bulk CTA Banner --- */
.bulk-cta {
  background: var(--terracotta);
  color: var(--white);
  text-align: center;
  padding: 3rem;
  border-radius: var(--radius);
  margin: 3rem 0;
}

.bulk-cta h3 { color: var(--white); margin-bottom: 0.75rem; }
.bulk-cta p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }

/* --- Biro Accent --- */
.biro-accent {
  font-family: 'Biro Script Plus', 'Comic Sans MS', cursive;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--terracotta);
  line-height: 1.4;
  font-weight: 400;
  margin: 1.5rem 0;
}

/* --- Outlined Terracotta Button --- */
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
  padding: 0.75rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
}

/* --- Social Buttons --- */
.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border);
  background: var(--white-mushroom);
  color: var(--black-olive);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color var(--transition), color var(--transition);
}

.btn-social:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

/* === ABOUT PAGE === */

/* About Hero */
.about-hero {
  padding-top: 6rem;
  height: 70vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(to bottom, rgba(61,57,51,0.55) 0%, rgba(61,57,51,0.3) 100%),
    url('../images/hero-bg.webp') center/cover no-repeat;
  background-color: var(--black-olive);
}

.about-hero-content {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem 3.5rem;
}

.about-hero-content .section-label {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}

.about-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

/* Origin Story */
.origin-story {
  background: var(--moss-green-pale);
  padding: 7rem 0;
}

.origin-inner {
  max-width: 720px;
  margin: 0 auto;
}

.origin-body p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
  line-height: 1.85;
}

.origin-body .biro-accent {
  text-align: center;
  display: block;
  margin: 2rem 0;
}

/* The Land — dark stats section */
.the-land {
  background: var(--black-olive);
  padding: 7rem 0;
}

.land-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.land-stat {
  text-align: center;
}

.land-rule {
  width: 24px;
  height: 1px;
  background: var(--terracotta);
  margin: 0 auto 1rem;
}

.land-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.land-unit {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss-green-light);
}

.land-prose {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.land-prose p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.9;
}

/* FLOW Values */
.flow-values {
  background: var(--white-mushroom);
  padding: 6rem 0;
}

.value-strip {
  display: grid;
  grid-template-columns: 80px 1fr 180px;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.value-strip:first-of-type { border-top: 1px solid var(--border); }

.value-letter {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--moss-green-pale);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  opacity: 0.8;
}

.value-word {
  margin-bottom: 0.5rem;
}

.value-content h3 {
  margin-bottom: 0.75rem;
}

.value-content p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}

.value-thumb-placeholder {
  background: var(--moss-green-pale);
  border-radius: 4px;
  width: 160px;
  height: 200px;
}

/* The People */
.the-people {
  background: var(--cream-warm);
  padding: 6rem 0;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.person-card { }

.person-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  object-fit: cover;
}

.person-photo-placeholder {
  background: var(--moss-green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.person-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.person-role {
  margin-bottom: 0.75rem;
}

.person-rule {
  width: 24px;
  height: 1px;
  background: var(--terracotta);
  margin-bottom: 0.75rem;
}

.person-bio {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* The Vision */
.the-vision {
  background: var(--black-olive);
  padding: 7rem 0;
}

.vision-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: start;
}

.vision-text h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
}

.vision-text p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.vision-cta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  display: inline-block;
  margin-top: 0.5rem;
  transition: color var(--transition);
}

.vision-cta:hover { color: var(--terracotta); }

.vision-list {
  padding-top: 0.5rem;
}

.vision-item {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--white);
  padding: 1.2rem 0 1.2rem 1rem;
  border-left: 2px solid var(--terracotta);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  line-height: 1.5;
}

.vision-item:last-child { border-bottom: none; }

/* About CTA */
.about-cta {
  background: var(--white-mushroom);
  padding: 6rem 0;
}

.about-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-cta-inner h2 {
  margin-bottom: 0.75rem;
}

.about-cta-inner p {
  color: var(--text-mid);
  margin-bottom: 2rem;
}

.about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === CONTACT PAGE === */

/* Contact Hero */
.contact-hero {
  padding-top: 6rem;
  height: 55vh;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(to bottom, rgba(61,57,51,0.4) 20%, rgba(61,57,51,0.65) 100%),
    url('../images/hero-bg.webp') center/cover no-repeat;
  background-color: var(--black-olive);
  text-align: center;
}

.contact-hero-content .section-label {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}

.contact-hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

/* Come Find Us */
.come-find-us {
  background: var(--white-mushroom);
  padding: 7rem 0;
}

.find-us-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 3rem;
  align-items: start;
}

.map-embed-placeholder {
  background: var(--moss-green-pale);
  border-radius: 8px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss-green);
  font-style: italic;
}

.map-embed-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.map-caption {
  margin-top: 0.75rem;
}

.find-us-details h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.find-us-details p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Get In Touch — Form */
.get-in-touch {
  background: var(--moss-green-pale);
  padding: 7rem 0;
}

.form-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.form-wrapper h2 {
  margin-bottom: 0.25rem;
}

.contact-form {
  margin-top: 2.5rem;
}

.form-field {
  margin-bottom: 1.5rem;
}

.form-field label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss-green);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--black-olive);
  background: var(--white-mushroom);
  border: 1px solid var(--moss-green);
  border-radius: 4px;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--terracotta);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.form-submit .btn-primary {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.form-note {
  color: var(--moss-green) !important;
}

/* Follow Along */
.follow-along {
  background: var(--white-mushroom);
  padding: 6rem 0;
}

.follow-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.follow-inner h2 {
  margin-bottom: 1rem;
}

.follow-inner p {
  color: var(--text-mid);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-grid,
  .volunteer-inner,
  .location-grid { grid-template-columns: 1fr; gap: 2rem; }

  .offering-cards { grid-template-columns: 1fr 1fr; }

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

  .product-categories { grid-template-columns: repeat(2, 1fr); }

  .exp-card { grid-template-columns: 1fr; }
  .exp-card-visual { padding: 1.5rem; flex-direction: row; gap: 1.5rem; justify-content: flex-start; }

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

  /* About page */
  .land-stats { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .people-grid { grid-template-columns: 1fr 1fr; }
  .vision-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .value-strip { grid-template-columns: 60px 1fr; }
  .value-thumb { display: none; }

  /* Contact page */
  .find-us-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 0; }

  .nav-links { display: none; }

  .hero-stats { gap: 1.5rem; }

  .hero-logo { max-width: 220px; }

  .offering-cards { grid-template-columns: 1fr; }

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

  .product-categories { grid-template-columns: repeat(2, 1fr); }

  .volunteer-details { grid-template-columns: 1fr; }

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

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

  /* About page */
  .land-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .land-number { font-size: 2.5rem; }
  .people-grid { grid-template-columns: 1fr; }
  .value-strip { grid-template-columns: 1fr; }
  .value-letter { display: none; }
  .about-cta-actions { flex-direction: column; align-items: center; }

  /* Contact page */
  .map-embed-placeholder { height: 260px; }
  .social-buttons { flex-direction: column; align-items: center; }
}
