/* =========================================================
   NRL SEEDS — GLOBAL STYLESHEET
   Design tokens, reset, typography, layout + shared sections.
   Loaded on every page, before header.css / footer.css.
   ========================================================= */

:root {
  /* ---- Color tokens ---- */
  --cream: #F7F4E9;
  --cream-alt: #EFE9D4;
  --forest: #163C24;      /* deep primary green (headings, nav) */
  --forest-2: #1F6636;    /* mid green (buttons, gradient start) */
  --leaf: #86BC3B;        /* bright leaf green (gradient end, accents) */
  --leaf-soft: #E4EFD2;   /* pale leaf tint for chips/badges */
  --ink: #181712;         /* near-black warm charcoal, body text */
  --soil: #A8672E;        /* terracotta accent */
  --soil-soft: #F3E3D2;
  --paper: #FFFFFF;
  --muted: #5C5B4E;       /* muted text on cream */
  --line: #E2DCC5;        /* hairline borders */
  --line-strong: #CFC7A9;

  --grad-leaf: linear-gradient(135deg, var(--forest-2) 0%, var(--leaf) 100%);
  --grad-forest: linear-gradient(160deg, #1B4A2A 0%, #0F2E1A 100%);

  /* ---- Type ---- */
  --font-display: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  /* ---- Spacing / radius / shadow ---- */
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 34px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(22, 60, 36, 0.07);
  --shadow-md: 0 14px 34px rgba(22, 60, 36, 0.12);
  --shadow-lg: 0 26px 64px rgba(22, 60, 36, 0.16);

  --container: 1220px;
  --section-pad: 108px;
}

@media (max-width: 900px) {
  :root { --section-pad: 72px; }
}
@media (max-width: 560px) {
  :root { --section-pad: 56px; }
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2.5px solid var(--soil);
  outline-offset: 3px;
  border-radius: 4px;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main { display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 4.6vw, 3.9rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.55rem); }
h4 { font-size: 1.05rem; }

p { color: var(--muted); }
p.lead { font-size: 1.15rem; line-height: 1.7; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 560px) {
  .container { padding-inline: 20px; }
}

section { padding-block: var(--section-pad); position: relative; }
.section-alt { background: var(--cream-alt); }
.section-forest {
  background: var(--grad-forest);
  color: #EFEBD9;
}
.section-forest h2, .section-forest h3 { color: #FFFFFF; }
.section-forest p { color: rgba(239, 235, 217, 0.78); }

/* ---- Eyebrow / mono labels (lab-report signature detail) ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--soil);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--soil);
  display: inline-block;
}
.section-forest .eyebrow { color: var(--leaf); }
.section-forest .eyebrow::before { background: var(--leaf); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-leaf);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-dark {
  background: var(--forest);
  color: #FFFFFF;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--line-strong);
}
.btn-outline:hover { border-color: var(--forest); background: rgba(22,60,36,0.05); }
.section-forest .btn-outline { color: #fff; border-color: rgba(255,255,255,0.35); }
.section-forest .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---- Chips / tags (seed-packet stamp motif) ---- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--leaf-soft);
  color: var(--forest-2);
  border: 1px solid rgba(31, 102, 54, 0.18);
}
.tag-soil { background: var(--soil-soft); color: var(--soil); border-color: rgba(168,103,46,0.2); }

/* =========================================================
   HERO (Home)
   ========================================================= */
.hero {
  padding-top: 64px;
  padding-bottom: 90px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy h1 em {
  font-style: normal;
  background: var(--grad-leaf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy p.lead { max-width: 480px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--forest);
  font-weight: 700;
}
.hero-stat span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--cream-alt);
  border: 1px solid var(--line);
}
.hero-ring::after {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  border: 1.5px dashed var(--line-strong);
}
.hero-photo-frame {
  position: relative;
  width: 78%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid var(--paper);
  box-shadow: var(--shadow-lg);
  background: var(--grad-forest);
}
.hero-photo-frame svg { width: 100%; height: 100%; }
.hero-float-badge {
  position: absolute;
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
}
.hero-float-badge .dot {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--grad-leaf); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero-float-badge .dot svg { width: 18px; height: 18px; }
.hero-float-badge strong { display: block; font-family: var(--font-display); color: var(--forest); font-size: 0.95rem; }
.hero-float-badge span { font-size: 0.68rem; color: var(--muted); letter-spacing: 0.03em; }
.badge-top { top: 4%; left: -6%; }
.badge-bottom { bottom: 8%; right: -8%; }
.hero-leaf-deco {
  position: absolute;
  top: -6%;
  right: 6%;
  width: 70px;
  opacity: 0.9;
  animation: float-y 5s ease-in-out infinite;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin-inline: auto; }
  .hero-copy p.lead { max-width: none; }
}

/* =========================================================
   LOGO STRIP / TRUST BAR
   ========================================================= */
.trust-bar {
  padding-block: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust-bar span.label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.trust-items { display: flex; gap: 34px; flex-wrap: wrap; }
.trust-items span {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest);
  opacity: 0.75;
  font-size: 0.95rem;
}

/* =========================================================
   SECTION HEADER (reusable)
   ========================================================= */
.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.section-head-row .section-head { margin-bottom: 0; }

/* =========================================================
   FEATURE / VALUE GRID
   ========================================================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--leaf-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; color: var(--forest-2); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 0.95rem; }
.feature-card .tag { margin-top: 18px; }

@media (max-width: 900px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   PROCESS / TIMELINE (lab -> field steps)
   ========================================================= */
.process-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: step;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.process-step {
  padding: 34px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.process-step .step-index {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--soil);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 22px;
}
.process-step h4 { margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; }

@media (max-width: 900px) {
  .process-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process-strip { grid-template-columns: 1fr; }
}

/* =========================================================
   PRODUCT PREVIEW / GRID (Home preview + Products page)
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-media {
  aspect-ratio: 4/3;
  background: var(--cream-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-media svg { width: 58%; height: 58%; }
.product-media .tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--paper);
}
.product-body { padding: 20px 20px 24px; flex: 1; display: flex; flex-direction: column; }
.product-body .cat { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--soil); margin-bottom: 8px; }
.product-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.product-body p { font-size: 0.88rem; flex: 1; margin-bottom: 16px; }
.product-specs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.product-specs .tag { font-size: 0.66rem; padding: 4px 9px; }
.product-body .card-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--forest-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-body .card-link svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.product-card:hover .card-link svg { transform: translateX(4px); }

@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   STATS BAND
   ========================================================= */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-block { text-align: left; padding-right: 20px; }
.stat-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.stat-block span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(239,235,217,0.65);
}
@media (max-width: 800px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
}

/* =========================================================
   TESTIMONIAL
   ========================================================= */
.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 52px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
}
.testimonial-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grad-leaf);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-mark svg { width: 28px; height: 28px; color: #fff; }
.testimonial-card p.quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest);
  line-height: 1.5;
  margin-bottom: 18px;
  font-weight: 500;
}
.testimonial-who { display: flex; align-items: center; gap: 12px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted); }
.testimonial-who strong { color: var(--forest); font-family: var(--font-display); }
@media (max-width: 700px) {
  .testimonial-card { grid-template-columns: 1fr; padding: 34px 26px; text-align: left; }
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: var(--grad-leaf);
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-band .btn-dark { background: var(--forest); }
.cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 700px) {
  .cta-band { padding: 40px 28px; text-align: center; justify-content: center; }
}

/* =========================================================
   PAGE HERO (About / Products / Contact banner)
   ========================================================= */
.page-hero {
  padding-top: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.page-hero .container { max-width: 820px; text-align: center; }
.page-hero .eyebrow { justify-content: center; }
.page-hero .eyebrow::before { display: none; }
.page-hero p.lead { margin-inline: auto; max-width: 620px; margin-top: 18px; }
.breadcrumb {
  display: flex; justify-content: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted);
  margin-bottom: 22px; letter-spacing: 0.03em;
}
.breadcrumb a { color: var(--forest-2); }
.breadcrumb .sep { color: var(--line-strong); }

/* =========================================================
   ABOUT PAGE — story split
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  aspect-ratio: 4/3.2;
  border-radius: var(--radius-lg);
  background: var(--cream-alt);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.split-media svg { width: 100%; height: 100%; }
.split-copy h2 { margin-bottom: 20px; }
.split-copy p + p { margin-top: 14px; }
.split-list { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.split-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; color: var(--ink); }
.split-list svg { width: 20px; height: 20px; color: var(--forest-2); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
}

/* ---- Timeline (About) ---- */
.timeline { position: relative; max-width: 780px; margin-inline: auto; }
.timeline::before {
  content: "";
  position: absolute; left: 108px; top: 8px; bottom: 8px;
  width: 1.5px; background: var(--line-strong);
}
.timeline-row { display: grid; grid-template-columns: 90px 1fr; gap: 30px; position: relative; padding-bottom: 44px; }
.timeline-row:last-child { padding-bottom: 0; }
.timeline-year { font-family: var(--font-mono); font-size: 0.85rem; color: var(--soil); text-align: right; padding-top: 3px; }
.timeline-content { position: relative; padding-left: 32px; }
.timeline-content::before {
  content: "";
  position: absolute; left: -6px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--grad-leaf); border: 3px solid var(--cream);
  box-shadow: 0 0 0 1.5px var(--line-strong);
}
.timeline-content h4 { margin-bottom: 6px; }
.timeline-content p { font-size: 0.92rem; }

@media (max-width: 620px) {
  .timeline::before { left: 60px; }
  .timeline-row { grid-template-columns: 60px 1fr; gap: 18px; }
}

/* ---- Values grid ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.value-card { background: var(--paper); padding: 36px; }
.value-card .step-index { font-family: var(--font-mono); font-size: 0.75rem; color: var(--soil); display: block; margin-bottom: 16px; }
.value-card h3 { margin-bottom: 10px; }
.value-card p { font-size: 0.92rem; }
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }

/* ---- Team ---- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: left; }
.team-photo {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  background: var(--cream-alt);
  border: 1px solid var(--line);
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-photo svg { width: 62%; height: 62%; color: var(--forest-2); }
.team-card h4 { margin-bottom: 2px; }
.team-card span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--soil); letter-spacing: 0.03em; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   PRODUCTS PAGE — filter tabs
   ========================================================= */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--line-strong);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--muted);
  transition: all 0.25s ease;
  background: var(--paper);
}
.filter-btn:hover { border-color: var(--forest-2); color: var(--forest-2); }
.filter-btn.active {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}
.filter-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  display: none;
}
.filter-empty.show { display: block; }

/* ---- Product detail modal-ish inline panel ---- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table td { padding: 14px 4px; }
.spec-table td:first-child { font-family: var(--font-mono); font-size: 0.78rem; color: var(--soil); width: 40%; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info-card {
  background: var(--grad-forest);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  color: #EFEBD9;
}
.contact-info-card h3 { color: #fff; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(239,235,217,0.72); margin-bottom: 30px; font-size: 0.92rem; }
.contact-line {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-block: 18px;
  border-top: 1px solid rgba(239,235,217,0.14);
}
.contact-line:first-of-type { border-top: none; }
.contact-line .ic {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-line .ic svg { width: 18px; height: 18px; color: var(--leaf); }
.contact-line strong { display: block; font-family: var(--font-display); font-size: 0.92rem; color: #fff; margin-bottom: 3px; }
.contact-line span, .contact-line a { font-size: 0.87rem; color: rgba(239,235,217,0.75); }
.contact-social { display: flex; gap: 10px; margin-top: 28px; }
.contact-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.contact-social a:hover { background: var(--grad-leaf); }
.contact-social svg { width: 16px; height: 16px; color: #fff; }

.contact-form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line-strong);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--forest-2);
  background: var(--paper);
  outline: none;
}
.field-error {
  font-size: 0.78rem;
  color: #B3401F;
  margin-top: 6px;
  display: none;
  font-family: var(--font-mono);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #B3401F; }
.field.invalid .field-error { display: block; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  background: var(--leaf-soft);
  border: 1px solid rgba(31,102,54,0.2);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--forest-2);
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 22px; }
}

/* ---- Map / locations block ---- */
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.location-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  background: var(--paper);
}
.location-card .tag { margin-bottom: 14px; }
.location-card h4 { margin-bottom: 8px; }
.location-card p { font-size: 0.88rem; }
@media (max-width: 800px) { .locations-grid { grid-template-columns: 1fr; } }

/* ---- FAQ (contact page) ---- */
.faq-list { max-width: 780px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--forest);
}
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s ease; color: var(--soil); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p { padding: 0 4px 24px; font-size: 0.94rem; max-width: 640px; }
.faq-item.open .faq-a { max-height: 240px; }

/* =========================================================
   Reveal-on-scroll utility (used by main.js)
   Visible by DEFAULT — JS only adds .pending to elements that
   start off-screen, then removes it as they scroll into view.
   This way content is never hidden if JS is slow, blocked, or
   fails outright (progressive enhancement, not a gate).
   ========================================================= */
.reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.pending { opacity: 0; transform: translateY(24px); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
