/* =========================================
   SAJAII — Exact Site Replica Stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Lato:wght@300;400;700&display=swap');

:root {
  --dark:        #1a1a1a;
  --darker:      #111111;
  --darkest:     #0d0d0d;
  --green:       #4E8355;
  --green-hover: #3d6842;
  --green-light: #6aa870;
  --off-white:   #EDEDE7;
  --warm-grey:   #D9DACD;
  --mid-grey:    #888888;
  --dark-grey:   #444444;
  --light-grey:  #cccccc;
  --accent-light:#EDEAE7;
  --white:       #FFFFFF;
  --border:      rgba(255,255,255,0.08);
  --border-dark: rgba(0,0,0,0.12);
  --nav-h:       80px;
  --max-w:       1100px;
  --font-head:   'Inter', sans-serif;
  --font-body:   'Muli', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: #333;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPE ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight:500 }
h3 { font-size: clamp(1rem, 1.8vw, 1.25rem); font-weight: 500; }
h4 { font-size: 1rem; font-weight: 500; }
p  { line-height: 1.75; color: #555; }

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section    { padding: 80px 0; }

/* ── BUTTON ── */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-large {
  padding: 22px 32px;
  font-size: 1rem;
  font-weight: 700;
}
.btn-green:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
}
.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--dark-grey);
  color: var(--white);
  border-color: var(--dark-grey);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: #fff;
}

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--darkest);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  background: rgba(13,13,13,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo img {
  height: 96px;
  width: auto;
}
.nav-logo-fallback {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--off-white);
  letter-spacing: -0.02em;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li > a,
.nav-menu > li > span {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(237,237,231,0.75);
  padding: 10px 14px;
  border-radius: 4px;
  display: block;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}
.nav-menu > li > a:hover,
.nav-menu > li:hover > span {
  color: #fff;
}
/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after,
.has-dropdown > span::after {
  content: ' ▾';
  font-size: 1rem;
  opacity: 0.6;
}
.dropdown {
  position: absolute;
  top: calc(100%);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  min-width: 160px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: none;
}
.dropdown a {
  display: block;
  padding: 9px 14px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
}
.dropdown a:hover {
  color: var(--green);
  background: var(--white);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-login {
  font-family: var(--font-head);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.nav-login:hover { color: var(--green); }

/* Hide mobile panel on desktop */
.mobile-panel { display: none; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }




@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-menu, .nav-cta { display: none; }

  .site-nav.mobile-open .mobile-panel {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--darkest);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 32px 28px;
    gap: 0;
    z-index: 999;
  }

  .mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
  }
  .mobile-nav-menu li a {
    display: block;
    padding: 12px 0;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--off-white);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.18s;
  }
  .mobile-nav-menu li:last-child a { border-bottom: none; }
  .mobile-nav-menu li a:hover { color: var(--green-light); }

  .mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
  }
  .mobile-cta .nav-login {
    display: block;
    padding: 10px 0;
    font-family: var(--font-head);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--off-white);
    transition: color 0.18s;
  }
  .mobile-cta .nav-login:hover { color: var(--green-light); }
  .mobile-cta .btn { text-align: center; }
}

/* ═══════════════════════════════════
   HERO  (dark, full-height)
═══════════════════════════════════ */
.hero {
  background-image: url('https://www.sajaii.com/images/snacks-dark.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark);
  opacity: 0.5;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
  text-align: left; /* override your current center alignment */
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  max-width: 760px;
  
}
.hero h4 {
  color: var(--white);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  font-family: var(--font-body);
  margin-bottom: 36px;
  max-width: 560px;
  
}
.hero-actions { margin-bottom: 60px; }
.hero-video {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* remove overflow:hidden and box-shadow — they live on tour-thumb now */
}

.hero-video video,
.hero-video iframe {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero h1,
  .hero h4 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-video {
    order: 1; /* puts video above text on mobile if you prefer */
  }
}
/* Tour thumbnail */
.tour-wrap {
  width: 100%;
  text-align: center;
}
.tour-wrap h4 {
  color: var(--off-white);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-head);
  font-weight: 600;
}
.tour-thumb {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  max-width: 100%;
  width: 100%;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tour-thumb:hover {
  transform: scale(1.02);
  box-shadow: 0 32px 70px rgba(0,0,0,0.55);
}
.tour-thumb img { width: 100%; display: block; border-radius: 12px;height: auto; }
/*.tour-thumb::after {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.25);
  transition: background 0.2s;
}*/
.tour-thumb:hover::after { background: rgba(0,0,0,0.38); }

/* ═══════════════════════════════════
   MODULES GRID  (icons + labels)
═══════════════════════════════════ */
.modules-section {
  background: var(--accent-light);
  padding: 80px 0;
}
.modules-section h2 {
  text-align: center;
  color: var(--dark);
  margin-bottom: 48px;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  min-width: 0;
}
.modules-block {
  display: flex;
  gap: 24px;
}
@media (max-width: 900px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }

.module-item {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, transform 0.2s;
  background: rgba(255,255,255,0.02);
}

.module-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 14px;
  filter: brightness(0) invert(0) opacity(0.75);
}
.module-item h4 {
  color: var(--dark);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  font-family: var(--font-head);
  text-transform: uppercase;
}

/* ═══════════════════════════════════
   FEATURES LIST
═══════════════════════════════════ */
.features-section {
  background: var(--white);
  padding: 80px 0;
}
.features-section h2 {
  text-align: center;
  color: var(--dark);
  margin-bottom: 56px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 48px;
}
@media (max-width: 860px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-item {
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: box-shadow .52s, transform .52s, border-color .52s;
}
.feature-item:hover{
border: 2px solid var(--green);
background: linear-gradient(135deg, #4e8355 0%, #2e6e4a 40%, #1a3d2e 100%);
border-radius: var(--radius); padding: 32px;
transition: box-shadow .52s, transform .52s, border-color .52s;
}
.feature-item h3 {
  color: var(--dark-grey);
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: var(--font-head);
}
.feature-item p {
  font-size: 1rem;
  color: var(--dark-grey);
}
.feature-item:hover h3 {
  color: var(--off-white);
}
.feature-item:hover p {
  color: var(--off-white);
}
/* ═══════════════════════════════════
   SPLIT SECTIONS
═══════════════════════════════════ */
.split-section {
  padding: 80px 0;
}
.split-section.dark-bg {
  background: var(--dark-grey);
}
.split-section.darker-bg {
  background: var(--darker);
}
.split-section.light-bg {
  background: var(--off-white);
}
.split-section.white-bg {
  background: var(--white);
}
.split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split-inner.reverse { direction: rtl; }
.split-inner.reverse > * { direction: ltr; }

@media (max-width: 768px) {
  .split-inner { grid-template-columns: 1fr; gap: 36px; }
  .split-inner.reverse { direction: ltr; }
}

.split-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 20px;
  line-height: 1.25;
}
.dark-bg .split-text h2,
.darker-bg .split-text h2 { color: var(--off-white); }
.light-bg .split-text h2 { color: var(--dark); }
.white-bg .split-text h2 { color: var(--dark); }

.split-text h3 {
  font-size: clamp(1.25rem, 1.5vw, 1.1rem);
  font-weight: 400;
  font-family: var(--font-body);
  line-height: 1.75;
}
.dark-bg .split-text h3,
.darker-bg .split-text h3 { color: rgba(237,237,231,0.65); }
.light-bg .split-text h3 { color: #555; }
.white-bg .split-text h3 { color: #555; }

.split-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-img-placeholder {
  border-radius: 12px;
  background: rgba(78,131,85,0.1);
  border: 1px solid rgba(78,131,85,0.2);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* ═══════════════════════════════════
   DOUBLE SPLIT (text | img | text)
═══════════════════════════════════ */
.double-section {
  background: var(--darker);
  padding: 80px 0;
}
.double-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .double-inner { grid-template-columns: 1fr; }
}
.double-text h2 {
  color: var(--off-white);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 16px;
}
.double-text h3 {
  color: rgba(237,237,231,0.6);
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: var(--font-body);
  line-height: 1.75;
}
.double-img { border-radius: 12px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.double-img img { width: 100%; display: block; object-fit: cover; }

/* ═══════════════════════════════════
   CTA BANNER
═══════════════════════════════════ */
.cta-section {
  background: var(--dark);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  color: var(--off-white);
  margin-bottom: 12px;
}
.cta-section h4 {
  color: rgba(237,237,231,0.55);
  font-weight: 400;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  margin-bottom: 36px;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer {
  background: var(--darker);
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy {
  color: rgba(237,237,231,0.4);
  font-size: 0.875rem;
  font-family: var(--font-head);
  font-weight: 500;
}
.footer-copy a { color: rgba(237,237,231,0.55); transition: color 0.18s; }
.footer-copy a:hover { color: var(--green-light); }
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(237,237,231,0.45);
  transition: color 0.18s;
}
.footer-socials a:hover { color: var(--green-light); }

/* ═══════════════════════════════════
   PRICING PAGE
═══════════════════════════════════ */
.pricing-hero {
  background: var(--white);
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 72px;
  text-align: center;
}
.pricing-hero h2 { color: var(--dark); margin-bottom: 14px; }
.pricing-hero h3 {
  color: var(--dark);
  font-size: 1.0625rem;
  font-weight: 400;
  font-family: var(--font-body);
}
.pricing-section { background: var(--white); padding: 72px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: start;
}
/*@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }*/
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }

.plan-container {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 900px) { .plan-container { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }

.plan {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  flex:1 ;
  transition: border-color 0.2s, transform 0.2s;
}
.plan:hover { border-color: rgba(78,131,85,0.4); transform: translateY(-4px); }
.plan.featured {
  border-color: var(--green);
  background: var(--green);
  transform: scale(1.02);
  color: var(--white);
}
.plan-name {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--dark-grey);
  margin-bottom: 8px;
}
.plan-name.featured {
  color: var(--white)
}
.plan-tagline {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.6;
}
.plan-tagline.featured {
  color: var(--white)
}
.plan-price {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.plan-price.featured {
  color: var(--white)
}
.plan-period {
  font-size: 0.875rem;
  color: var(--dark);
  margin-bottom: 32px;
}
.plan-period.featured {
  color: var(--white)
}
.plan-features {
  flex: 1;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: --dark;
}
.plan-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.plan-features.featured li::before {
  content: '✓';
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}
.plan .btn { width: 100%; text-align: center; justify-content: center; display: flex; }

/* Why section */
.why-section { background: var(--white); padding: 64px 0; }
.why-section h2 { color: var(--dark); text-align: center; margin-bottom: 40px; }
.why-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.0625rem;
  color: var(--dark);
}
.why-list li::before {
  content: '→';
  color: var(--dark);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* FAQ */
.faq-section { background: var(--white); padding: 64px 0; }
.faq-section h2 { color: var(--dark); text-align: center; margin-bottom: 40px; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  font-family: var(--font-head); font-size: 0.9375rem; font-weight: 600;
  color: var(--dark); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  letter-spacing: 0.02em; transition: color 0.18s;
}
.faq-q:hover { color: var(--dark); }
.faq-arrow { font-size: 1.1rem; transition: transform 0.22s; color: var(--green); }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { font-size: 0.9375rem; color: var(--dark); padding-bottom: 20px; }
.faq-item.open .faq-a { max-height: 200px; }

/* ═══════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════ */
.about-hero {
  background: var(--white);
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 72px;
}
.about-hero-inner {
  display: block;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 768px) { .about-hero-inner { grid-template-columns: 1fr; gap: 40px; } }
.about-hero h3 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem,3vw,2rem);
  font-weight: 500;
  color: var(--green);
  margin-bottom: 24px;
  line-height: 1.3;
}
.about-hero p {
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-hero ul {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-hero ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--dark);
  font-size: 0.9375rem;
}
.about-hero ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.about-img { border-radius: 12px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.about-img img { width: 100%; display: block; object-fit: cover; aspect-ratio: 4/3; }

/* ═══════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════ */
.contact-hero {
  background: var(--white);
  padding-top: calc(var(--nav-h) + 200px);
  padding-bottom: 80px;
  text-align: left;
  vertical-align: middle;
  display: flex;
  flex:1;
  height:60vh;
}
.contact-hero h2 { color: var(--dark); margin-bottom: 20px; font-size: clamp(1.4rem,3vw,2rem); }
.contact-hero h4 {
  color: var(--dark-grey);
  font-size: 1.25rem;
  font-weight: 500;
  font-family: var(--font-head);
  letter-spacing: 0.02em;
}
.contact-hero h4 a { color: var(--dark); transition: color 0.18s; }
.contact-hero h4 a:hover { color: --dark; }

/* ═══════════════════════════════════
   BLOG PAGE
═══════════════════════════════════ */
.blog-hero {
  background: var(--darkest);
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 72px;
  text-align: center;
}
.blog-hero h1 { color: var(--off-white); margin-bottom: 16px; }
.blog-hero h4 {
  color: rgba(237,237,231,0.5);
  font-weight: 400;
  font-family: var(--font-body);
  font-size: 1.0625rem;
}
.blog-section { background: var(--dark); padding: 72px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.22s, transform 0.22s;
}
.blog-card:hover { border-color: rgba(78,131,85,0.45); transform: translateY(-4px); }
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: rgba(78,131,85,0.08);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px; }
.blog-card-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.blog-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green-light);
  font-family: var(--font-head);
}
.blog-card h3 {
  font-size: 0.9375rem;
  color: var(--off-white);
  margin-bottom: 10px;
  line-height: 1.45;
}
.blog-card h3 a { transition: color 0.18s; }
.blog-card h3 a:hover { color: var(--green-light); }
.blog-card p { font-size: 0.875rem; color: rgba(237,237,231,0.5); line-height: 1.65; margin-bottom: 14px; }
.blog-meta { font-size: 0.8rem; color: rgba(237,237,231,0.35); font-family: var(--font-head); font-weight: 500; }

/* ═══════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════
   VIDEO MODAL
═══════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  width: 90%;
  max-width: 880px;
  position: relative;
}
.modal-box video {
  width: 100%;
  border-radius: 10px;
  display: block;
}
.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.modal-close:hover { opacity: 1; }
