/* ==========================================================
   FARMWATCH HUB — Global Stylesheet
   Light design per client mockup: white/light-green surfaces,
   deep-green panels, gold accents, logo orange used sparingly.
   ========================================================== */

:root {
  --dark-950: #0b2a17;      /* topbar, footer */
  --dark-900: #0e3d21;      /* event card, impact band */
  --ink-green: #163a24;     /* headings */
  --green-700: #1b7a3d;     /* primary actions, links */
  --green-600: #22954a;
  --green-soft: #eaf5ec;    /* icon chips */
  --bg-soft: #f2f8f3;       /* tinted sections */
  --gold: #f0b429;
  --gold-dark: #c78d06;
  --orange: #e87722;
  --white: #ffffff;
  --ink: #22302a;
  --muted: #5c6b60;
  --line: #e3ece5;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(14, 61, 33, 0.10);
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-green);
  line-height: 1.18;
  font-weight: 800;
}

a { color: var(--green-700); text-decoration: none; }

.container { width: min(1160px, 92%); margin-inline: auto; }

section { padding: 76px 0; }

/* ---------- Icons ---------- */
.icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: -3px;
}

.icon-lg { width: 26px; height: 26px; }

/* ---------- Eyebrow / section headings ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-700);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  margin-bottom: 14px;
}

.section-intro { max-width: 720px; color: var(--muted); margin-bottom: 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.93rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn .icon { width: 16px; height: 16px; }

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-green { background: var(--green-700); color: var(--white); }
.btn-green:hover { background: var(--green-600); }

.btn-gold { background: var(--gold); color: var(--dark-950); }
.btn-gold:hover { background: #f6c452; }

.btn-outline-dark {
  background: transparent;
  color: var(--ink-green);
  border-color: var(--ink-green);
}
.btn-outline-dark:hover { background: var(--green-soft); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--dark-950);
  color: #d7e6dc;
  font-size: 0.8rem;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a { color: #d7e6dc; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--gold); }

.topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.topbar .icon { width: 14px; height: 14px; }

.social-mini { display: flex; gap: 12px; align-items: center; }

/* ---------- Google Translate widget (top bar) ---------- */
/* Hide the banner iframe Google injects at the top of the page */
body > .skiptranslate { display: none !important; }
body { top: 0 !important; position: static !important; }

/* Hide the "Powered by" gadget text but keep the language select */
.goog-te-gadget { color: transparent !important; font-size: 0 !important; }
.goog-te-gadget > span { display: none; }

.goog-te-combo {
  background: rgba(255, 255, 255, 0.08);
  color: #d7e6dc;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.78rem;
  font-family: var(--font-body);
  margin: 0 !important;
  cursor: pointer;
}

.goog-te-combo option { color: var(--ink); }

/* Suppress Google's hover tooltips and text highlights */
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
.social-mini a { opacity: 0.85; }
.social-mini a:hover { opacity: 1; color: var(--gold); }

/* ---------- Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(14, 61, 33, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand { display: flex; align-items: center; gap: 10px; }

.brand img { height: 52px; width: 52px; object-fit: contain; }

.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: 0.01em;
  color: var(--ink-green);
  line-height: 1.1;
}

.brand-text .lite { color: var(--green-600); }

.brand-text small {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.3em;
}

.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }

.nav-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active { color: var(--green-700); border-bottom-color: var(--green-700); }

.nav-cta a.btn { border-bottom: none; padding: 11px 20px; color: var(--white); }
.nav-cta a.btn:hover { color: var(--white); border-bottom-color: transparent; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink-green);
  border-radius: 2px;
  margin: 5px 0;
}

/* ---------- Home hero ---------- */
.hero {
  background:
    linear-gradient(90deg, #f0f7f1 0%, #f0f7f1 36%, rgba(240, 247, 241, 0.85) 52%, rgba(240, 247, 241, 0.3) 74%, rgba(240, 247, 241, 0.05) 100%),
    url('../images/hero.jpg') right center / cover no-repeat,
    linear-gradient(180deg, #f0f7f1 0%, #ffffff 100%);
  padding: 84px 0 130px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  margin-bottom: 20px;
}

.hero h1 .dot { color: var(--green-600); }

.hero .lede {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Event card ---------- */
.event-card {
  background: var(--dark-900);
  border-radius: 16px;
  padding: 30px 28px;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(14, 61, 33, 0.28);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.18), transparent 70%);
}

.event-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.event-label .badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark-950);
  display: grid;
  place-items: center;
}

.event-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.event-meta { display: grid; gap: 8px; margin-bottom: 20px; }

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #d7e6dc;
}

.event-meta .icon { color: var(--gold); }

.event-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.event-more .circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark-950);
  display: grid;
  place-items: center;
  transition: transform 0.15s ease;
}

.event-more:hover .circle { transform: translateX(4px); }

/* ---------- Feature strip (overlapping hero) ---------- */
.feature-strip {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(14, 61, 33, 0.12);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: -72px;
  position: relative;
  z-index: 5;
}

.feature-strip .feature {
  padding: 30px 22px;
  border-left: 1px solid var(--line);
}

.feature-strip .feature:first-child { border-left: none; }

.feature .chip {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-700);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.feature h3 { font-size: 0.95rem; margin-bottom: 6px; }
.feature p { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.media-panel {
  min-height: 320px;
  border-radius: 16px;
  background:
    linear-gradient(rgba(14, 61, 33, 0.45), rgba(14, 61, 33, 0.65)),
    url('../images/video-thumb.jpg') center / cover no-repeat,
    linear-gradient(150deg, #1b7a3d 0%, #0e3d21 70%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding: 40px;
  text-align: center;
}

.media-panel.playing {
  padding: 0;
  min-height: 0;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
}

.media-panel.playing iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
  display: block;
}

.media-panel h3 { color: var(--white); font-size: 1.4rem; }

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-700);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease;
}

.play-btn:hover { transform: scale(1.08); }
.play-btn .icon { width: 24px; height: 24px; fill: currentColor; stroke: none; margin-left: 3px; }

.bg-soft { background: var(--bg-soft); }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 4px 18px rgba(14, 61, 33, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.card .chip {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-700);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.94rem; }

.card ul { list-style: none; color: var(--muted); font-size: 0.92rem; }

.card ul li { padding: 4px 0 4px 24px; position: relative; }

.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--green-soft);
  border: 2px solid var(--green-600);
}

/* ---------- Organizing committee ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(14, 61, 33, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  display: flex;
  flex-direction: column;
}

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

.team-photo {
  background: var(--green-soft);
  flex-shrink: 0;
}

/* The square ratio lives on the image, not the wrapper: as a replaced element
   it combines aspect-ratio with object-fit to crop, whereas a wrapper with an
   indefinite height grows to the photo's natural ratio and leaves the rows of
   names misaligned. Portraits are anchored to the top so faces stay in frame. */
.team-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.team-body h3 { font-size: 1.05rem; margin-bottom: 4px; }

.team-role {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 12px;
}

.team-bio {
  color: var(--muted);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  margin-bottom: 10px;
}

.team-card.expanded .team-bio {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.bio-toggle {
  margin-top: auto;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-700);
}

.bio-toggle:hover { color: var(--gold-dark); text-decoration: underline; }

/* ---------- Checklist ---------- */
.checklist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px 28px;
  margin-top: 20px;
}

.checklist li {
  position: relative;
  padding-left: 32px;
  font-weight: 600;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-700);
}

.checklist li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

/* ---------- Pills ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }

.pill {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  color: var(--ink-green);
  box-shadow: 0 3px 10px rgba(14, 61, 33, 0.05);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pill .icon { color: var(--green-600); width: 16px; height: 16px; }

/* ---------- Dark band (impact, forms) ---------- */
.dark-band {
  background:
    radial-gradient(ellipse 800px 400px at 90% 0%, rgba(240, 180, 41, 0.10), transparent 60%),
    var(--dark-900);
  color: var(--white);
}

.dark-band .section-title, .dark-band h3 { color: var(--white); }
.dark-band .eyebrow { color: var(--gold); border-bottom-color: var(--gold); }
.dark-band .section-intro, .dark-band p.sub { color: #cfe0d5; }
.dark-band .pill { background: rgba(255,255,255,0.06); border-color: rgba(240,180,41,0.35); color: var(--white); }
.dark-band .pill .icon { color: var(--gold); }

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.counter {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(240, 180, 41, 0.3);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
}

.counter .num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: var(--gold);
}

.counter .label { margin-top: 6px; font-size: 0.87rem; color: #cfe0d5; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse 800px 400px at 85% 20%, rgba(34, 149, 74, 0.14), transparent 60%),
    linear-gradient(180deg, #eef6ef 0%, #ffffff 100%);
  padding: 66px 0 58px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.page-hero p { color: var(--muted); max-width: 640px; margin-top: 12px; }

/* ---------- Summit hero ---------- */
.summit-hero {
  background:
    radial-gradient(ellipse 900px 500px at 80% 0%, rgba(240, 180, 41, 0.14), transparent 60%),
    linear-gradient(160deg, #124d29 0%, var(--dark-900) 60%, var(--dark-950) 100%);
  color: var(--white);
  padding: 84px 0;
  text-align: center;
}

.summit-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  max-width: 880px;
  margin: 0 auto 18px;
}

.summit-hero .lede { color: #d7e6dc; max-width: 720px; margin: 0 auto 10px; }

.hero-eyebrow {
  display: inline-block;
  background: rgba(240, 180, 41, 0.14);
  border: 1px solid rgba(240, 180, 41, 0.45);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.summit-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.summit-meta span { display: inline-flex; align-items: center; gap: 8px; }

.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 36px 0;
  flex-wrap: wrap;
}

.countdown .unit {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(240, 180, 41, 0.4);
  border-radius: var(--radius);
  padding: 16px 10px;
  min-width: 92px;
}

.countdown .value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
}

.countdown .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cfe0d5;
}

/* ---------- Schedule timeline ---------- */
.schedule { border-left: 3px solid var(--gold); margin-top: 30px; }

.schedule-item { position: relative; padding: 0 0 30px 30px; }

.schedule-item::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
}

.schedule-item .time {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.schedule-item h3 { font-size: 1.05rem; margin: 4px 0; }
.schedule-item p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Newsroom ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.news-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(14, 61, 33, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: var(--ink);
}

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

.news-card .thumb {
  height: 190px;
  background-color: var(--green-soft);
  background-size: cover;
  background-position: center;
}

.news-card .body { padding: 20px 22px 24px; }

.news-meta {
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.news-card h3 { font-size: 1.08rem; margin-bottom: 8px; line-height: 1.35; }
.news-card p { color: var(--muted); font-size: 0.9rem; }

.article-wrap { max-width: 780px; margin: 0 auto; }

.article-wrap h1 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 12px; }

.article-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 16px;
  margin: 26px 0;
}

.article-body { color: var(--ink); font-size: 1.02rem; }
.article-body p { margin: 16px 0; }
.article-body h2, .article-body h3 { margin: 28px 0 12px; }
.article-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 20px 0; }
.article-body ul, .article-body ol { margin: 16px 0 16px 24px; }
.article-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 4px 0 4px 18px;
  margin: 20px 0;
  color: var(--muted);
  font-style: italic;
}
.article-body a { text-decoration: underline; }

.empty-state {
  padding: 64px 24px;
  text-align: center;
  color: var(--muted);
  background: var(--bg-soft);
  border-radius: var(--radius);
}

/* ---------- Pricing ---------- */
.price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--green-700);
  margin: 4px 0 2px;
}

.price .per { font-size: 0.82rem; color: var(--muted); font-weight: 600; }

.price-was {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 8px;
}

.tier-flag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-950);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 9px;
  margin-bottom: 10px;
}

.tier-flag.dark { background: var(--dark-900); color: var(--gold); }

.seats { font-size: 0.85rem; font-weight: 700; color: var(--ink-green); margin-bottom: 10px; }

.rate-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.rate-strip .rate {
  background: #fdf6e3;
  border: 1.5px solid #ecd9a0;
  border-radius: var(--radius);
  padding: 20px 24px;
}

.rate-strip .rate h4 { font-size: 0.98rem; margin-bottom: 6px; }
.rate-strip .rate p { font-size: 0.88rem; color: var(--muted); }

.rate-strip .rate .amt {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-dark);
  text-decoration: none;
  margin-bottom: 4px;
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  border-top: 5px solid var(--green-700);
  color: var(--ink);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--ink-green);
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d8e2dc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fafcfa;
  color: var(--ink);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green-700);
  background: var(--white);
}

textarea { resize: vertical; min-height: 120px; }

.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 14px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 600px 300px at 85% 10%, rgba(240, 180, 41, 0.16), transparent 60%),
    linear-gradient(130deg, #14602f, var(--dark-900));
  color: var(--white);
  text-align: center;
  border-radius: 16px;
  padding: 58px 30px;
}

.cta-band h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; }
.cta-band p { color: #d7e6dc; max-width: 620px; margin: 0 auto 28px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  align-items: start;
}

.contact-info .item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info .item .chip {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-700);
  display: grid;
  place-items: center;
}

.contact-info h3 { font-size: 0.95rem; margin-bottom: 2px; }
.contact-info p { color: var(--muted); font-size: 0.92rem; }

.map-frame {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 26px;
}

/* ---------- Newsletter ---------- */
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.newsletter-form input { flex: 1; min-width: 220px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark-950);
  color: #b9cfc2;
  padding: 60px 0 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 44px;
}

.footer-logo {
  background: var(--white);
  border-radius: 10px;
  padding: 10px;
  width: 150px;
  margin-bottom: 16px;
}

.site-footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.site-footer ul { list-style: none; }
.site-footer ul li { padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.site-footer a { color: #b9cfc2; }
.site-footer a:hover { color: var(--gold); }
.site-footer .icon { width: 15px; height: 15px; color: var(--gold); }

.footer-brand p { max-width: 300px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  font-size: 0.82rem;
}

.social-row { display: flex; gap: 10px; margin-top: 18px; }

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #d7e6dc;
}

.social-row a:hover { background: var(--gold); color: var(--dark-950); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .feature-strip { grid-template-columns: repeat(3, 1fr); }
  .feature-strip .feature:nth-child(4) { border-left: none; }
  .feature-strip .feature { border-top: 1px solid var(--line); }
  .feature-strip .feature:nth-child(-n+3) { border-top: none; }
}

@media (max-width: 900px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero {
    padding: 64px 0 120px;
    /* stacked layout puts text over the photo — wash it out for contrast */
    background:
      linear-gradient(rgba(240, 247, 241, 0.93), rgba(240, 247, 241, 0.88)),
      url('../images/hero.jpg') center / cover no-repeat,
      linear-gradient(180deg, #f0f7f1 0%, #ffffff 100%);
  }
}

@media (max-width: 820px) {
  .topbar .tagline { display: none; }

  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 4%;
    box-shadow: 0 14px 24px rgba(14, 61, 33, 0.12);
    display: none;
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-cta { margin: 12px 0; }

  section { padding: 56px 0; }
}

@media (max-width: 640px) {
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip .feature { border-left: none; border-top: 1px solid var(--line); }
  .feature-strip .feature:first-child { border-top: none; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .countdown .unit { min-width: 72px; }
}
