﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* Page transition: white between-page gap prevents flash */
html { background: #ffffff; }

/* ============================================================
   GRASSTEX â€” BRAND TOKENS  (forest green #3b4f2d)
   Light theme â€” part of Greenblade Group family
   ============================================================ */
:root {
  --bg-0: #ffffff;
  --bg-1: #f7faf5;
  --bg-2: #eff4eb;
  --bg-3: #e6ede0;
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-card-hover: rgba(247, 250, 245, 1.0);

  --green-900: #1e2e14;
  --green-800: #2a3d1c;
  --green-700: #3b4f2d;   /* Grasstex brand forest green */
  --green-600: #4f6b3a;
  --green-500: #6a8e4a;
  --green-400: #8ab56a;
  --green-300: #aed08a;
  --green-200: #cfe5b0;

  --gold: #3d6b34;
  --gold-light: #4e8843;

  --lime: #7ab040;
  --lime-dark: #5a8c2e;
  --brown-900: #eff4eb;   /* light sage â€” alt section background */
  --brown-800: #e6ede0;

  /* Brand accent â€” used by HTML via var(--accent) */
  --accent: #7ab040;
  --accent-glow: rgba(122, 176, 64, 0.12);

  --text-100: #1a2614;
  --text-200: #2d3d22;
  --text-300: #4a6035;
  --text-400: #6b8050;
  --text-500: #8fa070;

  --border: rgba(59, 79, 45, 0.18);
  --border-hover: rgba(59, 79, 45, 0.45);
  --glow: rgba(59, 79, 45, 0.08);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --nav-h: 96px;
  --section-gap: 100px;
  --max-w: 1280px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--bg-0);
  color: var(--text-100);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
}
body::-webkit-scrollbar { display: none; }

/* Force light text on dark image sections */
.hero,
.page-hero,
.photo-band {
  color: #f0f5ec;
}
.hero .label { color: var(--green-300); }
.hero .hero__sub { color: rgba(240,245,236,0.88); }
.page-hero .label { color: var(--green-300); }
.page-hero .body-lg,
.page-hero .body-md { color: rgba(240,245,236,0.85); }
.page-hero .page-hero__breadcrumb,
.page-hero .page-hero__breadcrumb a,
.page-hero .page-hero__breadcrumb .sep { color: rgba(240,245,236,0.65); }
.page-hero .page-hero__breadcrumb a:hover { color: var(--green-300); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* â”€â”€ SHIMMER â”€â”€ */
@keyframes gb-shimmer {
  0%   { transform: translateX(-120%) skewX(-18deg); }
  100% { transform: translateX(300%)  skewX(-18deg); }
}
.card, .service-card, .news-card, .job-card,
.invest-block, .industry-card, .nav__cta, .btn {
  position: relative;
  overflow: hidden;
}
.card::after, .service-card::after, .news-card::after,
.job-card::after, .invest-block::after, .industry-card::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(174,208,138,0.08), rgba(255,255,255,0.06), transparent);
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none;
}
.card:hover::after, .service-card:hover::after, .news-card:hover::after,
.job-card:hover::after, .invest-block:hover::after, .industry-card:hover::after {
  animation: gb-shimmer 6.5s ease forwards;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none;
}
.btn:hover::after { animation: gb-shimmer 5s ease forwards; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.15;
}
.label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700);
}
.body-lg { font-size: 1.125rem; line-height: 1.75; color: var(--text-300); }
.body-md { font-size: 1rem; line-height: 1.7; color: var(--text-300); }
.text-lime { color: var(--lime) !important; }
.text-accent { color: var(--lime); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section { padding: var(--section-gap) 0; }
.section--warm {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--alt { background: var(--bg-1); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.gap-32 { gap: 32px; } .gap-48 { gap: 48px; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }
.section-header { margin-bottom: 64px; }
.section-header .label { margin-bottom: 16px; display: block; }
.section-header p { max-width: 600px; margin-top: 16px; color: var(--text-300); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid rgba(59,79,45,0.15);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "navleft logo navright";
  align-items: center;
}
.nav__logo { grid-area: logo; display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 0 16px; }
.nav__logo img {
  height: 70px; width: auto;
  filter: brightness(1.05) drop-shadow(0 0 8px rgba(59,79,45,0.15));
  transition: filter 0.3s;
}
.nav__logo:hover img { filter: brightness(1.15) drop-shadow(0 0 14px rgba(90,140,46,0.3)); }
.nav__group-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-400); border: 1px solid var(--border);
  border-radius: 100px; padding: 4px 10px;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.nav__group-badge:hover { color: var(--green-700); border-color: var(--border-hover); }
.nav__group-badge img { height: 16px; width: auto; opacity: 0.6; }
.nav__links { grid-area: navleft; display: flex; align-items: center; gap: 2px; justify-self: end; }
.nav__right { grid-area: navright; display: flex; align-items: center; gap: 12px; justify-self: start; }
.nav__link {
  padding: 8px 10px;
  font-size: 0.84rem; font-weight: 400; color: var(--text-300);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active {
  color: var(--green-700);
  background: rgba(59, 79, 45, 0.08);
}
.nav__cta {
  padding: 10px 22px;
  background: var(--lime-dark);
  color: #0a1a00 !important;
  border-radius: var(--radius-sm);
  font-size: 0.875rem; font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav__cta:hover { background: var(--lime); color: #0a1a00 !important; transform: translateY(-1px); }
.nav__burger {
  grid-area: navright; justify-self: end;
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-300); border-radius: 2px; transition: all 0.3s;
}
.nav__mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300;
  color: var(--text-200); padding: 8px 24px; transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--green-700); }

/* Nav weather pill */
.nav-weather {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.73rem; color: var(--text-400);
  pointer-events: none; white-space: nowrap;
  letter-spacing: 0.01em; margin-left: 4px;
}
.nav-weather__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 7px rgba(106,142,74,0.65);
  animation: pulse 2.5s ease-in-out infinite; flex-shrink: 0;
}
.nav-weather__icon { font-size: 0.85rem; line-height: 1; }
@media (max-width: 960px) { .nav-weather { display: none; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.01em;
  transition: all 0.25s ease; border: none; cursor: pointer;
}
.btn-primary { background: var(--lime-dark); color: #0a1a00; font-weight: 600; }
.btn-primary:hover {
  background: var(--lime); color: #0a1a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122, 176, 64, 0.35);
}
.btn-outline {
  background: transparent; color: var(--text-200);
  border: 1.5px solid var(--border-hover);
}
.btn-outline:hover {
  background: rgba(59, 79, 45, 0.08); color: var(--text-100);
  border-color: var(--green-600);
}
/* btn-outline on dark hero image */
.hero .btn-outline {
  background: rgba(240,245,236,0.12);
  color: #f0f5ec;
  border-color: rgba(240,245,236,0.4);
}
.hero .btn-outline:hover {
  background: rgba(240,245,236,0.22);
  border-color: rgba(240,245,236,0.65);
}
.btn-ghost { background: transparent; color: var(--lime); border: 1px solid var(--border-hover); }
.btn-ghost:hover { background: rgba(122,176,64,0.08); }
.btn-gold { background: var(--lime-dark); color: #0a1a00; font-weight: 600; }
.btn-gold:hover {
  background: var(--lime);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(122,176,64,0.35);
}
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn svg { width: 16px; height: 16px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 4px 4px 16px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
}
.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 8px 8px 32px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
}
.card-body { padding: 32px; }
.card-img { width: 100%; height: 220px; object-fit: cover; transition: opacity 0.3s; }

/* ============================================================
   DIVIDER
   ============================================================ */
.line-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.08);
}
.stat-item {
  background: var(--bg-card); padding: 44px 32px; text-align: center;
  transition: background 0.3s; border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-1); }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 300;
  color: var(--text-100); line-height: 1;
}
.stat-number span { color: var(--lime); }
.stat-label { font-size: 0.8rem; color: var(--text-400); margin-top: 8px; letter-spacing: 0.05em; }

/* Stats bar */
.stats-bar { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-bar__inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stats-bar .stat-item { background: transparent; }
.stats-bar .stat-item:hover { background: var(--bg-3); }

/* ============================================================
   TICKER
   ============================================================ */
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.ticker-inner {
  display: flex; gap: 48px;
  white-space: nowrap; flex-shrink: 0;
}
.ticker-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-400); flex-shrink: 0;
}
.ticker-item .dot { width: 4px; height: 4px; background: var(--lime); border-radius: 50%; }
.ticker { overflow: hidden; background: var(--bg-2); border-top: 1px solid var(--border); padding: 14px 0; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  padding-bottom: 100px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img, .hero__bg video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(8, 20, 8, 0.18) 0%, rgba(6, 15, 6, 0.12) 100%),
    linear-gradient(to top, rgba(4, 10, 4, 0.75) 0%, rgba(4, 10, 4, 0.40) 30%, rgba(4, 10, 4, 0.08) 60%, transparent 100%),
    linear-gradient(to right, rgba(4, 10, 4, 0.45) 0%, transparent 55%);
}
#shader-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.18; z-index: 1; }
.hero__content {
  position: relative; z-index: 3;
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px; width: 100%;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px;
  background: rgba(59, 79, 45, 0.15);
  border: 1px solid rgba(122,176,64,0.3);
  border-radius: 100px; margin-bottom: 40px;
  font-size: 1rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-300);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.75rem, 7.5vw, 7.25rem);
  font-weight: 600; line-height: 1.0;
  max-width: 900px;
  text-shadow: 0 2px 24px rgba(2,8,2,0.75), 0 1px 6px rgba(2,8,2,0.55);
}
.hero__title em { font-style: italic; color: var(--green-300); }
.hero__sub {
  max-width: 560px; margin-top: 28px;
  font-size: 1.25rem; line-height: 1.7;
  text-shadow: 0 1px 12px rgba(2,8,2,0.85);
}
.hero__actions { display: flex; gap: 16px; margin-top: 48px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 32px; right: 32px; z-index: 3;
  display: flex; align-items: center; gap: 8px;
  color: rgba(240,245,236,0.5); font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.hero__scroll-line { width: 40px; height: 1px; background: rgba(240,245,236,0.4); }

/* Hero entrance animations */
.hero-word {
  display: inline-block; opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-word.revealed { opacity: 1; transform: translateY(0); }
.hero-reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-reveal.revealed { opacity: 1; transform: translateY(0); }

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  min-height: 60vh; display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 80px); padding-bottom: 80px;
  position: relative; overflow: hidden; background: var(--bg-1);
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(59, 79, 45, 0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero--img { background-size: cover; background-position: center; }
.page-hero--img::before {
  background: linear-gradient(135deg, rgba(6,11,4,0.88) 0%, rgba(6,11,4,0.65) 60%, rgba(6,11,4,0.8) 100%);
  z-index: 0;
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero__breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-400); margin-bottom: 32px;
}
.page-hero__breadcrumb a { color: var(--text-400); transition: color 0.2s; }
.page-hero__breadcrumb a:hover { color: var(--green-600); }

/* ============================================================
   SERVICE / FEATURE CARDS
   ============================================================ */
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-top: 3px solid var(--green-600);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 4px 4px 16px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
}
.service-card:hover {
  border-color: var(--border-hover); border-top-color: var(--lime);
  transform: translateY(-4px);
  box-shadow: 8px 8px 32px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.06);
}
.service-card__icon {
  width: 48px; height: 48px;
  background: rgba(59,79,45,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 1.4rem;
}
.service-card__title {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  margin-bottom: 12px; color: var(--text-100);
}
.service-card__desc { font-size: 0.875rem; color: var(--text-300); line-height: 1.7; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 20px;
  font-size: 0.78rem; font-weight: 600; color: var(--lime);
  letter-spacing: 0.05em; text-transform: uppercase; transition: gap 0.2s;
}
.service-card:hover .service-card__link { gap: 12px; }

/* ============================================================
   NEWS / BLOG CARD
   ============================================================ */
.news-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s ease; display: flex; flex-direction: column;
  box-shadow: 4px 4px 16px rgba(0,0,0,0.07);
}
.news-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 8px 8px 32px rgba(0,0,0,0.12); }
.news-card__img {
  height: 200px; overflow: hidden;
  background: var(--bg-2); display: flex; align-items: center; justify-content: center;
}
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-card__img img { transform: scale(1.05); }
.news-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.news-card__date { font-size: 0.75rem; color: var(--text-400); letter-spacing: 0.06em; margin-bottom: 10px; }
.news-card__title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 500;
  line-height: 1.25; color: var(--text-100); margin-bottom: 12px;
}
.news-card__excerpt { font-size: 0.85rem; color: var(--text-300); line-height: 1.65; flex: 1; }
.news-card__read {
  margin-top: 20px; font-size: 0.78rem; font-weight: 500;
  color: var(--green-600); letter-spacing: 0.06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s;
}
.news-card:hover .news-card__read { gap: 12px; }

/* ============================================================
   INDUSTRY CARD
   ============================================================ */
.industry-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.3s ease; position: relative;
  box-shadow: 4px 4px 16px rgba(0,0,0,0.07);
}
.industry-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: 8px 8px 32px rgba(0,0,0,0.12);
}
.industry-card__img { height: 200px; overflow: hidden; }
.industry-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.industry-card:hover .industry-card__img img { transform: scale(1.05); }
.industry-card__body { padding: 28px; }
.industry-card__icon {
  width: 44px; height: 44px; background: rgba(59, 79, 45, 0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.industry-card__title {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  margin-bottom: 10px; color: var(--text-100);
}
.industry-card__desc { font-size: 0.875rem; color: var(--text-300); line-height: 1.65; }
.industry-card__services { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }

/* ============================================================
   TAG
   ============================================================ */
.tag {
  display: inline-block; padding: 4px 12px;
  background: rgba(59, 79, 45, 0.08);
  border: 1px solid var(--border);
  border-radius: 100px; font-size: 0.72rem;
  color: var(--text-300); letter-spacing: 0.04em;
}

/* ============================================================
   SPLIT LAYOUT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split__img { border-radius: var(--radius-lg); overflow: hidden; height: 480px;
  box-shadow: 6px 6px 24px rgba(0,0,0,0.14), 2px 2px 8px rgba(0,0,0,0.07);
}
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.split__content .label { margin-bottom: 16px; display: block; }
.split__list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.split__list-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--text-200);
}
.split__list-item::before {
  content: ''; width: 6px; height: 6px; background: var(--green-500);
  border-radius: 50%; margin-top: 8px; flex-shrink: 0;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer; position: relative;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item.wide, .gallery-item--wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item--tall { aspect-ratio: 4/5; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease; filter: saturate(0.85);
}
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.1); }
.gallery-item__overlay {
  position: absolute; inset: 0; background: rgba(20, 40, 12, 0.35);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-600);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 4px 4px 16px rgba(0,0,0,0.09), 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.job-card:hover {
  border-color: var(--border-hover);
  border-left-color: var(--lime);
  background: var(--bg-card-hover);
  transform: translateX(4px);
  box-shadow: 6px 6px 22px rgba(0,0,0,0.14), 0 2px 5px rgba(0,0,0,0.07);
}
.job-card__meta { display: flex; gap: 16px; flex-wrap: wrap; }
.job-card__tag {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}
.job-card__tag--type { background: rgba(59, 79, 45, 0.1); color: var(--green-700); border: 1px solid rgba(59, 79, 45, 0.22); }
.job-card__tag--loc { background: rgba(59, 79, 45, 0.05); color: var(--text-400); border: 1px solid var(--border); }

.invest-block {
  background: linear-gradient(135deg, rgba(59,79,45,0.06) 0%, rgba(255,255,255,0) 60%);
  border: 1px solid rgba(59,79,45,0.18);
  border-radius: var(--radius-xl);
  padding: 72px;
  position: relative;
  overflow: hidden;
}
.invest-block::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(144, 182, 84, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .invest-block { padding: 48px; }
  .job-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .invest-block { padding: 32px 24px; }
}

/* ============================================================
   INSTAGRAM FOLLOW CARD
   ============================================================ */
.insta-follow-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 56px; text-align: center;
}
.insta-follow-card__thumbs { display: flex; justify-content: center; gap: 14px; margin-bottom: 32px; }
.insta-follow-card__thumbs img {
  width: 110px; height: 110px; object-fit: cover; border-radius: var(--radius-md);
  box-shadow: 4px 4px 16px rgba(0,0,0,0.14), 0 1px 3px rgba(0,0,0,0.06);
}
.insta-follow-card p { max-width: 480px; margin: 12px auto 0; }
@media (max-width: 600px) {
  .insta-follow-card { padding: 36px 24px; }
  .insta-follow-card__thumbs img { width: 78px; height: 78px; }
}

/* ============================================================
   PHOTO BAND
   ============================================================ */
.photo-band {
  position: relative; height: 480px;
  background-size: cover; background-position: center;
  background-attachment: fixed; overflow: hidden;
}
.photo-band--short { height: 320px; }
.photo-band--tall  { height: 600px; }
.photo-band__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(4,10,4,0.45) 0%, rgba(4,10,4,0.28) 50%, rgba(4,10,4,0.48) 100%);
}
.photo-band__content {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 40px;
}
.photo-band__quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300; font-style: italic;
  max-width: 700px; line-height: 1.4;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
@media (max-width: 768px) {
  .photo-band { background-attachment: scroll; height: 280px; }
  .photo-band--tall { height: 360px; }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0; text-align: center;
}
.cta-band__actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px;
}

/* ============================================================
   ACCREDITATIONS
   ============================================================ */
.accred-strip { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.accred-item {
  display: flex; align-items: center; gap: 12px; padding: 14px 20px;
  border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg-card);
  box-shadow: 2px 2px 8px rgba(0,0,0,0.05);
}
.accred-item img { height: 36px; width: auto; filter: saturate(0.8); }
.accred-item span { font-size: 0.78rem; color: var(--text-300); line-height: 1.3; }
.accred-strip-simple { display: flex; flex-wrap: wrap; align-items: center; gap: 32px; margin-top: 32px; }
.accred-strip-simple img { height: 52px; width: auto; opacity: 0.8; transition: opacity 0.2s; }
.accred-strip-simple img:hover { opacity: 1; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-300);
}
.form-field input, .form-field select, .form-field textarea {
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 16px;
  color: var(--text-100); font-family: var(--font-body);
  font-size: 0.9rem; transition: border-color 0.2s; outline: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(59, 79, 45, 0.08);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field select option { background: var(--bg-1); color: var(--text-100); }

/* ============================================================
   GROUP BANNER (cross-promotion)
   ============================================================ */
.group-banner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px 48px; margin-top: 80px;
}
.group-banner__text { font-size: 0.85rem; color: var(--text-400); }
.group-banner__text strong { color: var(--text-200); display: block; font-size: 1rem; margin-bottom: 4px; }
.group-banner__logos { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.group-banner__logos a { opacity: 0.6; transition: opacity 0.2s; }
.group-banner__logos a:hover { opacity: 1; }
.group-banner__logos img { height: 28px; width: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 0; position: relative; overflow: hidden;
}
.footer__accent {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--green-700) 20%, var(--lime) 50%, var(--green-700) 80%, transparent 100%);
}
.footer__inner { padding: 64px 0 0; position: relative; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 0;
}
.footer__brand, .footer__col { padding-right: 40px; }
.footer__col { border-left: 1px solid var(--border); padding-left: 40px; padding-right: 0; }
.footer__brand img { height: 68px; width: auto; }
.footer__brand p {
  font-size: 0.85rem; color: var(--text-400); line-height: 1.75;
  margin-top: 16px; max-width: 280px;
}
.footer__brand .group-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green-700); transition: opacity 0.2s;
}
.footer__brand .group-link:hover { opacity: 0.75; }
.footer__col h5 {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green-700);
  margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.875rem; color: var(--text-400);
  transition: color 0.2s, padding-left 0.2s; display: inline-block;
}
.footer__links a:hover { color: var(--green-700); padding-left: 4px; }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: var(--text-400); margin-bottom: 12px;
}
.footer__contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--green-600); }
.footer__sister-sites { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.footer__sister-link { font-size: 0.78rem; color: var(--text-400); transition: color 0.2s; padding: 4px 0; }
.footer__sister-link:hover { color: var(--green-700); }
.footer__sister-link.current { color: var(--lime); }
.footer__address { font-size: 0.78rem; color: var(--text-500); line-height: 1.7; margin-top: 10px; }
.footer__brand-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.footer__brand-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.68rem; font-weight: 500; letter-spacing: 0.04em; color: var(--text-400); border: 1px solid var(--border); border-radius: 100px; padding: 4px 10px; background: var(--accent-glow); }
.footer__brand-badge svg { width: 10px; height: 10px; color: var(--accent); flex-shrink: 0; }
.footer__bottom {
  border-top: 1px solid var(--border); padding: 24px 0; margin-top: 56px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 0.78rem; color: var(--text-400); }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: 0.78rem; color: var(--text-400); transition: color 0.2s; }
.footer__bottom-links a:hover { color: var(--green-700); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.12s; }
.fade-up-delay-2 { transition-delay: 0.22s; }
.fade-up-delay-3 { transition-delay: 0.32s; }
.fade-up-delay-4 { transition-delay: 0.42s; }

/* ============================================================
   CURSOR
   ============================================================ */
#gb-cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 42px; height: 42px;
  border: 1.5px solid rgba(122, 176, 64, 0.45);
  border-radius: 50%; pointer-events: none; z-index: 100000;
  will-change: transform;
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, opacity 0.3s ease;
}
#gb-cursor-ring.gb-cursor--hover { width: 56px; height: 56px; border-color: rgba(122, 176, 64, 0.85); }
@media (hover: none), (pointer: coarse) {
  #gb-cursor-ring, #gb-custom-cursor { display: none !important; }
}

/* ============================================================
   LIVE WEATHER OVERLAY
   ============================================================ */
.hero__weather {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden;
}
.hero__weather-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; transition: opacity 1s ease;
}
.weather-badge {
  position: absolute; top: var(--nav-h); left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; align-items: center; gap: 10px;
  white-space: nowrap; padding: 9px 18px 9px 16px;
  border: 1px solid rgba(122,176,64,0.28); border-top: none;
  border-radius: 0 0 14px 14px;
  background: rgba(255,255,255,0.88); box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  backdrop-filter: blur(16px); color: var(--text-200); cursor: pointer;
  transition: background 0.2s, border-color 0.2s; font-family: inherit; font-size: inherit;
}
.weather-badge:hover { background: rgba(255,255,255,0.97); border-color: rgba(122,176,64,0.45); }
.weather-badge__arrow {
  font-size: 1.1rem; line-height: 1; color: var(--green-600);
  transition: transform 0.22s; display: inline-block; margin-left: 2px;
}
.weather-badge[aria-expanded="true"] .weather-badge__arrow { transform: scaleY(-1); }
.weather-forecast-panel {
  position: absolute; top: calc(var(--nav-h) + 50px); left: 50%; transform: translateX(-50%);
  z-index: 900; display: none; min-width: 420px;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(24px);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 20px 22px 18px; box-shadow: 0 24px 60px rgba(0,0,0,0.14); color: var(--text-100);
}
.weather-forecast-panel.is-open { display: block; animation: wf-slide 0.22s ease; }
@keyframes wf-slide { from { opacity: 0; transform: translateX(-50%) translateY(-6px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.weather-forecast-panel__head { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-700); opacity: 0.8; margin-bottom: 14px; }
.weather-forecast-days { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }
.weather-forecast-day { text-align: center; padding: 12px 6px 10px; border-radius: 10px; background: var(--bg-1); border: 1px solid var(--border); }
.weather-forecast-day__name { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-400); margin-bottom: 8px; }
.weather-forecast-day__icon { font-size: 1.5rem; line-height: 1; margin-bottom: 6px; }
.weather-forecast-day__temp { font-size: 0.78rem; color: var(--text-300); margin-bottom: 4px; }
.weather-forecast-day__temp strong { color: var(--text-100); font-weight: 600; }
.weather-forecast-day__rain { font-size: 0.65rem; color: var(--text-400); }
.weather-badge__live { display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-700); }
.weather-badge__live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 12px rgba(106,142,74,0.85); animation: pulse 2s infinite; }
.weather-badge__main { font-size: 0.78rem; color: var(--text-300); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.weather-badge__main strong { color: var(--text-100); font-weight: 600; }
.weather-particle { position: absolute; pointer-events: none; will-change: transform, opacity; }
.weather-raindrop { top: -10vh; width: 1.5px; height: var(--h,50px); border-radius: 999px; background: linear-gradient(to bottom, rgba(200,230,255,0), rgba(200,230,255,0.90)); opacity: var(--o,0.65); transform: translate3d(var(--x,0), -12vh, 0) rotate(12deg); animation: weather-rain-fall var(--d,1.0s) linear infinite; animation-delay: var(--delay,0s); }
@keyframes weather-rain-fall { to { transform: translate3d(calc(var(--x,0) - 12vw), 116vh, 0) rotate(12deg); } }
.weather-snowflake { top: -8vh; width: var(--s,9px); height: var(--s,9px); border-radius: 0; background: linear-gradient(rgba(235,248,255,0.96),rgba(235,248,255,0.96)) center / 2px 100% no-repeat, linear-gradient(rgba(235,248,255,0.96),rgba(235,248,255,0.96)) center / 100% 2px no-repeat; box-shadow: 0 0 8px rgba(200,235,255,0.90), 0 0 22px rgba(170,220,255,0.45); opacity: var(--o,0.90); transform: translate3d(var(--x,0), -8vh, 0) rotate(var(--rot,0deg)); animation: weather-snow-fall var(--d,9s) linear infinite; animation-delay: var(--delay,0s); }
@keyframes weather-snow-fall { 0% { transform: translate3d(var(--x,0), -8vh, 0); } 50% { transform: translate3d(calc(var(--x,0) + var(--drift,4vw)), 54vh, 0); } 100% { transform: translate3d(calc(var(--x,0) - var(--drift,4vw)), 112vh, 0); } }
.weather-fog-band { width: 80vw; height: 22vh; left: -90vw; border-radius: 50%; background: rgba(200,220,210,0.22); filter: blur(32px); opacity: var(--o,0.45); transform: translate3d(0, var(--y,40vh), 0); animation: weather-fog-drift var(--d,32s) linear infinite; animation-delay: var(--delay,0s); }
@keyframes weather-fog-drift { to { transform: translate3d(200vw, var(--y,40vh), 0); } }
.weather-cloud { width: var(--w,38vw); height: var(--h,14vh); left: -50vw; top: var(--y,20vh); border-radius: 999px; background: rgba(180,200,180,0.22); filter: blur(28px); animation: weather-cloud-drift var(--d,44s) linear infinite; animation-delay: var(--delay,0s); }
@keyframes weather-cloud-drift { to { transform: translateX(150vw); } }
.weather-leaf { width: var(--s,20px); height: auto; left: -10vw; top: -12vh; opacity: var(--o,0.22); filter: drop-shadow(0 3px 4px rgba(0,0,0,0.18)); transform: translate3d(-16vw, var(--start-y,20vh), 0) rotate(0deg); animation: weather-leaf-blow var(--d,28s) linear infinite; animation-delay: var(--delay,0s); }
@keyframes weather-leaf-blow { 0% { transform: translate3d(-10vw, var(--start-y,20vh), 0) rotate(0deg); } 20% { transform: translate3d(16vw, calc(var(--start-y,20vh) + 5vh), 0) rotate(110deg); } 45% { transform: translate3d(46vw, calc(var(--start-y,20vh) - 4vh), 0) rotate(260deg); } 70% { transform: translate3d(78vw, calc(var(--start-y,20vh) + 7vh), 0) rotate(430deg); } 100% { transform: translate3d(112vw, calc(var(--start-y,20vh) - 2vh), 0) rotate(620deg); } }
.weather-raindrop--drizzle { filter: blur(0.5px); }
.weather-sunrays { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.weather-sunray { position: absolute; top: 0; right: 10%; width: 2px; height: var(--len,28vw); background: linear-gradient(to bottom, rgba(255,235,150,0.55), rgba(255,220,100,0.08), transparent); transform-origin: top center; transform: rotate(var(--angle,0deg)); opacity: var(--o,0.18); animation: weather-sun-pulse var(--delay,2s) ease-in-out infinite alternate; animation-delay: var(--delay,0s); }
@keyframes weather-sun-pulse { 0% { opacity: var(--o,0.18); } 100% { opacity: calc(var(--o,0.18) * 1.8); } }
.weather-star { position: absolute; left: var(--x,50vw); top: var(--y,20vh); width: var(--s,2px); height: var(--s,2px); border-radius: 50%; background: rgba(255,255,255,1); box-shadow: 0 0 5px rgba(220,235,255,0.95), 0 0 14px rgba(180,210,255,0.55); opacity: var(--o,0.85); animation: weather-star-twinkle var(--d,3s) ease-in-out infinite alternate; animation-delay: var(--delay,0s); }
@keyframes weather-star-twinkle { 0% { opacity: calc(var(--o,0.85) * 0.25); transform: scale(0.7); } 100% { opacity: var(--o,0.85); transform: scale(1.3); } }
.weather-hailstone { position: absolute; top: -6vh; width: var(--s,4px); height: var(--s,4px); border-radius: 50%; background: rgba(220,235,255,0.9); opacity: var(--o,0.65); transform: translate3d(var(--x,0), -6vh, 0) rotate(5deg); animation: weather-hail-fall var(--d,0.6s) linear infinite; animation-delay: var(--delay,0s); }
@keyframes weather-hail-fall { 0% { transform: translate3d(var(--x,0), -6vh, 0); } 85% { opacity: var(--o,0.65); } 100% { transform: translate3d(calc(var(--x,0) - 6vw), 110vh, 0); opacity: 0; } }
.weather-lightning { position: absolute; inset: 0; background: rgba(220,245,255,0.80); opacity: 0; mix-blend-mode: screen; animation: weather-lightning 6s infinite; }
@keyframes weather-lightning { 0%, 88%, 91.5%, 93%, 100% { opacity: 0; } 89% { opacity: 0.65; } 90% { opacity: 0.04; } 92% { opacity: 0.45; } }
.weather-sun-glow { position: absolute; top: -35vw; right: calc(10% - 35vw); width: 70vw; height: 70vw; border-radius: 50%; pointer-events: none; z-index: 1; background: radial-gradient(circle, rgba(255,248,180,0.65) 0%, rgba(255,235,130,0.32) 20%, rgba(255,215,90,0.12) 44%, transparent 70%); animation: weather-sun-glow-pulse 5s ease-in-out infinite alternate; }
@keyframes weather-sun-glow-pulse { 0% { opacity: 0.72; transform: scale(0.96); } 100% { opacity: 1.00; transform: scale(1.05); } }
.weather-ice-layer { position: absolute; bottom: 0; left: 0; right: 0; height: 32%; pointer-events: none; background: linear-gradient(to top, rgba(185,220,242,0.50) 0%, rgba(172,210,235,0.22) 45%, transparent 100%); filter: blur(2px); }
.weather-ice-spike { position: absolute; bottom: 0; border-radius: 40% 40% 0 0 / 20% 20% 0 0; background: linear-gradient(to top, rgba(210,238,255,0.72), rgba(190,225,248,0.30), transparent); filter: blur(1.5px); }
.weather-wind-streak { position: absolute; top: var(--y,50vh); left: -28vw; width: var(--w,18vw); height: 3px; border-radius: 999px; background: linear-gradient(to right, transparent, rgba(215,235,215,0.60), transparent); opacity: var(--o,0.30); pointer-events: none; animation: weather-wind-streak var(--d,1.4s) ease-in-out infinite; animation-delay: var(--delay,0s); }
@keyframes weather-wind-streak { 0% { transform: translateX(0); opacity: 0; } 15% { opacity: var(--o,0.30); } 85% { opacity: var(--o,0.30); } 100% { transform: translateX(155vw); opacity: 0; } }
.weather-test-helper { position: absolute; left: 32px; bottom: 32px; z-index: 7; padding: 8px 12px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255,255,255,0.88); color: var(--text-300); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; backdrop-filter: blur(12px); pointer-events: none; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }
@media (max-width: 768px) {
  .weather-badge { top: auto; bottom: 0; left: 50%; transform: translateX(-50%); border-top: 1px solid var(--border); border-bottom: none; border-radius: 14px 14px 0 0; max-width: calc(100vw - 24px); overflow: hidden; }
  .weather-forecast-panel { top: auto; bottom: 52px; left: 8px; right: 8px; transform: none; min-width: auto; }
  .weather-forecast-panel.is-open { animation: wf-slide-up 0.22s ease; }
  @keyframes wf-slide-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
}
@media (prefers-reduced-motion: reduce) {
  .weather-particle, .weather-lightning { animation: none !important; display: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-gap: 80px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__col { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 32px; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split__img { height: 360px; }
  .group-banner { padding: 24px; }
}
@media (max-width: 768px) {
  :root { --section-gap: 64px; }
  .nav__links, .nav__right { display: none !important; }
  .nav__burger { display: flex; }
  .nav__inner { display: flex; justify-content: space-between; align-items: center; }
  .nav__logo { flex: 1; justify-content: center; padding: 0; }
  .nav__logo img { height: 60px; }
  .container { padding: 0 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__inner { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide, .gallery-item--wide { grid-column: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
  .stats-strip { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
}

