@charset "UTF-8";
/* style.scss (global) */
/* IBM Plex Sans */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");
.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-wrap {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

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

/* _breakpoints.scss */
/* Fluid type + spacing */
:root {
  --space: clamp(12px, 1.8vw, 20px);
}

body {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
}

.btn, .chip {
  min-height: 44px;
  padding: 10px 16px;
}

/* Media helpers */
.media-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.aspect-16x9 {
  aspect-ratio: 16/9; /* safe fallback below */
}
@supports not (aspect-ratio: 16/9) {
  .aspect-16x9 {
    position: relative;
    padding-top: 56.25%;
  }
  .aspect-16x9 > * {
    position: absolute;
    inset: 0;
  }
}

body {
  font-family: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  color: #1f1f1f;
  line-height: 1.5;
}

.eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(55, 65, 81, 0.55);
  backdrop-filter: blur(11.1px);
  border-radius: 12px;
  margin-bottom: 0.5rem;
  padding: 5px 21px;
  color: rgba(55, 65, 81, 0.55);
}

/* =========================================
   Header
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200; /* above page content & overlay */
  background: #fff;
  /* --- Top bar layout --- */
}
.site-header__bar {
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | menu | burger */
  align-items: center;
  gap: 0;
  padding: 19px 0 16px;
}
.site-header {
  /* --- Desktop nav --- */
}
.site-header .site-nav {
  /* anchor for absolute .contact */
  display: flex;
  justify-content: center;
}
.site-header .menu {
  display: flex;
  gap: 3.5rem;
  list-style: none;
  margin-left: 200px;
  padding: 0;
  width: 100%;
  justify-content: center; /* center normal links */
}
.site-header .menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "IBM Plex Sans";
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: #1A2D36;
  text-decoration: none;
  /* tighter vertical rhythm */
  line-height: 1;
  padding: 10px 3px;
}
.site-header .menu > li > a:hover {
  color: #02AE54;
}
.site-header .menu > li.current-menu-item > a,
.site-header .menu > li.current-menu-ancestor > a {
  color: #3BAE5A;
}
.site-header {
  /* caret indicator for items with children (desktop) */
}
.site-header .menu > li.menu-item-has-children > a::after {
  content: "▾";
  font-size: 0.8rem;
  opacity: 0.7;
  transform: translateY(-1px);
}
.site-header {
  /* Hide desktop dropdowns for now (we're not using hover menus) */
}
.site-header .menu > li ul {
  display: none;
}
.site-header {
  /* --- Contact pill on the far right (desktop) --- */
}
.site-header .menu > li.contact {
  margin-left: auto;
}
.site-header .menu > li.contact > a {
  padding: 0.625rem 1.125rem;
  border-radius: 999px;
  background: #1A2D36;
  color: #EAF1F3;
  font-weight: 600;
}
.site-header .menu > li.contact > a:hover,
.site-header .menu > li.contact > a:focus {
  filter: brightness(0.95);
}
.site-header {
  /* --- Burger --- */
}
.site-header .burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
}
.site-header .burger span {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: #0F242A;
  transition: transform 0.22s ease, opacity 0.18s ease, width 0.22s ease;
}
.site-header .burger span:nth-child(1) {
  top: 14px;
}
.site-header .burger span:nth-child(2) {
  top: 21px;
}
.site-header .burger span:nth-child(3) {
  top: 28px;
}
.site-header {
  /* Burger -> X when open */
}
.site-header .burger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header .burger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}
.site-header .burger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.site-header {
  /* --- Mobile drawer (fixed, overlays content) --- */
}
.site-header .mobile-nav {
  position: fixed; /* key: no push-down */
  top: var(--hdr, 64px); /* set by JS; fallback 64px */
  right: 0;
  height: calc(100dvh - var(--hdr, 64px));
  width: min(86vw, 360px);
  background: #fff;
  box-shadow: -2px 0 24px rgba(0, 0, 0, 0.12);
  transform: translateX(100%); /* off-canvas */
  transition: transform 0.3s ease; /* CSS fallback; GSAP will override */
  z-index: 100;
  display: block; /* never toggle by display */
}
.site-header .mobile-nav.is-open {
  transform: translateX(0);
}
.site-header {
  /* Mobile list cosmetics */
}
.site-header .mobile-menu,
.site-header .mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .mobile-menu {
  padding: 12px 16px 24px;
  display: grid;
  gap: 0;
  --divider: #e6edf0;
}
.site-header .mobile-menu > li {
  border-top: 1px solid var(--divider);
}
.site-header .mobile-menu > li:last-child {
  border-bottom: 1px solid var(--divider);
}
.site-header .mobile-menu > li > a {
  display: block;
  padding: 14px 2px;
  text-decoration: none;
  color: #0F242A;
  font: 500 1.05rem/1.25 "IBM Plex Sans";
}
.site-header .mobile-menu .sub-menu {
  padding: 6px 0 10px 14px;
  border-top: 1px dashed var(--divider);
}
.site-header .mobile-menu .sub-menu > li {
  border: 0;
}
.site-header .mobile-menu .sub-menu a {
  padding: 10px 0;
  font: 400 0.98rem/1.25 "IBM Plex Sans";
  opacity: 0.9;
}
.site-header {
  /* Contact pill in mobile drawer */
}
.site-header .mobile-menu > li.contact {
  border: 0;
  margin-top: 10px;
}
.site-header .mobile-menu > li.contact > a {
  text-align: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0F242A;
  color: #EAF1F3;
  font-weight: 600;
}
.site-header {
  /* --- Responsive --- */
}
@media (max-width: 1024px) {
  .site-header__bar {
    grid-template-columns: auto 1fr;
  }
  .site-header { /* logo | spacer */ }
  .site-header .site-nav {
    display: none;
  }
  .site-header .burger {
    display: inline-block;
    grid-column: 2;
    justify-self: end;
  }
  .site-header {
    /* desktop-only spacing reset (menu is hidden anyway) */
  }
  .site-header .menu {
    padding-right: 0;
  }
  .site-header .menu > li.contact {
    position: static;
    transform: none;
  }
}

/* =========================================
   Overlay & body lock (must be top-level)
   ========================================= */
/* Dark overlay under the drawer, above page content; not covering header */
/* === MOBILE DRAWER HARD OVERRIDE (place LAST) ========================== */
/* Overlay (covers content, not header) */
.nav-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--hdr, 64px);
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(1px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 900;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer is FIXED and off-canvas by default */
#mobileNav {
  position: fixed;
  top: var(--hdr, 64px);
  right: 0 !important;
  left: auto;
  height: calc(100dvh - var(--hdr, 64px));
  width: min(86vw, 360px);
  background: #fff;
  box-shadow: -2px 0 24px rgba(0, 0, 0, 0.12);
  display: block !important; /* never use display:none for the drawer */
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000; /* above overlay/content */
}

#mobileNav.is-open {
  transform: translateX(0) !important;
}

/* Lock page scroll when open */
body.nav-open {
  overflow: hidden !important;
}

/* --- Fix stacking: header/drawer above overlay --- */
.site-header {
  z-index: 400;
} /* header (and its children) above overlay */
#mobileNav {
  z-index: 401;
} /* optional; within header context */
/* Overlay below header/drawer but above page content */
.nav-overlay {
  z-index: 300; /* must be LOWER than .site-header */
}

body {
  background: #1e1e1e;
}

.frow-container {
  width: 100%;
  margin-inline: auto;
  max-width: 1280px;
  padding-inline: 0;
}
@media (min-width: 1512px) {
  .frow-container {
    max-width: 1400px;
    padding-inline: 0;
  }
}
@media (min-width: 1728px) {
  .frow-container {
    max-width: 1500px;
    padding-inline: 0;
  }
}

.page-frame {
  /* this element creates the visual “margin” */
  max-width: 1680px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, calc(80px - 15px));
  box-sizing: border-box;
}

.wrapper {
  max-width: 1680px;
  padding: 0; /* or keep small padding if you like */
  margin: auto;
  background: #fff;
}

/* style.scss (global) */
.site-footer {
  /* replace with your soil image path */
  background: url("https://cultyvate.georgephilip.in/wp-content/uploads/2025/09/footer-bg.webp") center/cover no-repeat;
  color: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  padding: 180px 0;
}
.site-footer .footer__logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
}
.site-footer .footer__logo span {
  border-bottom: 2px solid #54AF42;
}
.site-footer .footer__credit {
  margin-top: 50px;
  font-size: 0.728125rem;
  color: #FFFFFF;
  opacity: 0.7;
}
.site-footer .footer__links {
  margin-top: 1rem;
}
.site-footer .footer__links a {
  font-size: 0.8rem;
  color: #ddd;
  text-decoration: none;
  margin-right: 16px;
}
.site-footer .footer__links a:hover {
  color: #54AF42;
}
.site-footer .footer__about {
  text-align: center;
}
.site-footer .footer__about .footer__copy {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0 0 1.25rem;
}
@media (max-width: 768px) {
  .site-footer .footer__about .footer__copy {
    text-align: left;
  }
}
.site-footer .footer__nav {
  text-align: right;
}
@media (max-width: 768px) {
  .site-footer .footer__nav {
    text-align: left;
  }
}
.site-footer .footer__nav h6 {
  font-size: 0.9rem;
  color: #54AF42;
  margin-bottom: 0.75rem;
}
.site-footer .footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.site-footer .footer__nav li {
  margin-bottom: 0.45rem;
}
.site-footer .footer__nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}
.site-footer .footer__nav a:hover {
  color: #54AF42;
}
.site-footer .footer__nav .footer__social {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  text-align: right;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .site-footer .footer__nav .footer__social {
    justify-content: flex-start;
  }
}
.site-footer .footer__nav .footer__social a {
  display: inline-flex;
  color: #fff;
  transition: color 0.3s ease;
}
.site-footer .footer__nav .footer__social a svg {
  width: 20px;
  height: 20px;
}
.site-footer .footer__nav .footer__social a:hover {
  color: #54AF42;
}

.footer__about {
  text-align: right;
}
.footer__about .footer__copy {
  text-align: right;
}

.footer__form-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #1db954; /* subtle green like the comp */
  margin-bottom: 0.25rem;
}

.footer__form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
}
.footer__form input {
  width: 100%;
  max-width: 720px;
  padding: 12px 16px;
  border: 1px solid #FFFFFF;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  outline: none;
}
.footer__form input::placeholder {
  color: #bbb;
}
.footer__form button {
  padding: 10px 20px;
  background: #FFFFFF;
  border-radius: 20px;
  font-size: 0.85625rem;
  color: #000000;
  font-weight: 400;
  width: 150px;
  position: relative;
  left: -130px;
  cursor: pointer;
}
.footer__form button:hover {
  background: #54AF42;
  color: #fff;
  border-color: #54AF42;
}
@media (max-width: 768px) {
  .footer__form button {
    position: absolute;
    right: 0;
    left: auto;
  }
}

/* Put this in utilities if you prefer (re-usable) */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

body.is-loading {
  overflow: hidden;
  height: 100vh;
}

/* Preloader wrapper */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff; /* or dark if you prefer */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Spinner animation */
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(70, 184, 101, 0.2); /* faded border */
  border-top-color: #46B865; /* brand green */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Hide preloader once loaded */
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/*# sourceMappingURL=style.css.map */
