/* ========================================================
   BASE RESETS & TYPOGRAPHY
   ======================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Amulya';
  src: url('../fonts/Amulya-Bold.woff2') format('woff2'),
    url('../fonts/Amulya-Bold.woff') format('woff'),
    url('../fonts/Amulya-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ============================================================
   FIXED MOBILE BROWSER CHROME
   Safari (and Chrome on iOS) only auto-hide their address/tool
   bars in response to the *document/window* scrolling. As long
   as html/body never scroll, the bars stay pinned in place.
   All real scrolling happens inside #lenis-wrapper instead —
   Lenis is pointed at this element (see custom JS), and on
   touch devices the wrapper's native overflow-y:scroll gives
   the same native inertia as before, so mobile perf is
   unaffected.
   ============================================================ */
html, body {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

#lenis-wrapper {
  position: fixed;
  inset: 0;
  height: 100dvh; /* stays accurate even while the (now-static) browser chrome is on screen */
  overflow-y: scroll;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  /* Contain iOS rubber-band bounce at the top/bottom edges so the
     top-green-bar (pinned to the scrolled content's top:0) never gets
     pushed past its resting position, which was exposing a gap above it. */
  overscroll-behavior-y: contain;
  /* Hide the native scrollbar (still fully scrollable via wheel/touch/keys/drag) */
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* old Edge/IE */
}

#lenis-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
  width: 0;
  height: 0;
}

#lenis-content {
  min-height: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #111;
  color: #333;
}

/* ========================================================
   NO-FOUC PRE-HIDE
   Only hide reveal targets when JS is present, so if the
   scripts fail (or are blocked) the content stays visible.
   GSAP animates these to opacity:1 as they scroll in.
   ======================================================== */
html.js .hero-title,
html.js .bottom-nav,
html.js .bottom-right,
html.js .gallery-header,
html.js .gallery-carousel,
html.js .founder-content,
html.js .founder-image-wrapper,
html.js .founder-card,
html.js .founder-follow-card,
html.js .reviews-header,
html.js .quote-mark,
html.js .quote-slider,
html.js .cta-title,
html.js .cta-btn-group,
html.js .footer-content > div {
  opacity: 0;
}

/* ========================================================
   REDUCED MOTION FALLBACK
   No scroll-jacking, pins or scrubs. Horizontal / pinned
   sections collapse into readable, static layouts.
   ======================================================== */
@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  /* Everything is visible in place */
  html.js .hero-title,
  html.js .bottom-nav,
  html.js .bottom-right,
  html.js .gallery-header,
  html.js .gallery-item,
  html.js .founder-content,
  html.js .founder-image-wrapper,
  html.js .founder-card,
html.js .founder-follow-card,
  html.js .reviews-header,
  html.js .quote-mark,
  html.js .quote-slider,
  html.js .cta-title,
  html.js .cta-btn-group,
  html.js .footer-content > div {
    opacity: 1;
  }

  /* How We Build: vertical stack instead of horizontal scroll */
  .reduced-motion .hwb-wrapper {
    height: auto;
    padding: 60px 0;
  }

  .reduced-motion .hwb-track {
    flex-direction: column;
    width: 100%;
    transform: none !important;
  }

.reduced-motion .hwb-slide {
  width: 100%;
  flex: none;
  padding: 40px 5%;
}

  .reduced-motion .progress-wrapper {
    display: none;
  }

  /* Turiya: static image + feature notes in normal flow */
  .reduced-motion .turiya-pin-container {
    height: auto;
    flex-direction: column;
    padding: 40px 0 60px;
  }

  .reduced-motion .turiya-canvas {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
    width: min(90vw, 960px);
    height: auto;
    overflow: visible;
    margin: 0 auto;
  }

  /* Aerial image sits in normal flow so the notes can stack beneath it */
  .reduced-motion .tslide.slide0 {
    position: relative;
    inset: auto;
    height: 60vh;
    opacity: 1;
    visibility: visible;
  }

  .reduced-motion .tslide:not(.slide0) {
    display: none;
  }

  .reduced-motion .tbox {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-width: min(90vw, 960px);
    margin: 16px auto 0;
  }
}


/* ========================================================
   HERO SECTION
   ======================================================== */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #111;
}

.stage {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.7);
  /* Decorative background video: never capture wheel/touch, so scroll gestures
     reach the #lenis-wrapper scroller (Chrome-only hero scroll-stuck fix). */
  pointer-events: none;
}

.top-green-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #1a4f3b;
  z-index: 100;
}

.logo-dropdown {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1a4f3b;
  padding: 15px 30px;
  border-radius: 0 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.logo-dropdown::before,
.logo-dropdown::after {
  content: '';
  position: absolute;
  top: 0;
  width: 21px;
  height: 20px;
}

.logo-dropdown::before {
  left: -20px;
  background: radial-gradient(circle at 0 100%, transparent 19.5px, #1a4f3b 20px);
}

.logo-dropdown::after {
  right: -20px;
  background: radial-gradient(circle at 100% 100%, transparent 19.5px, #1a4f3b 20px);
}

.logo-dropdown img {
  height: 28px;
  width: auto;
  display: block;
}

.bottom-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1a4f3b;
  color: #fff;
  padding: 10px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 20px; */
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 100;
  width: max-content;
  max-width: 90vw;
  min-width: 280px;
  height: 50px;
}

.bottom-nav img {
  height: 40px !important;
}

@media (min-width: 1024px) {
  .bottom-nav {
    bottom: 30px;
    padding: 6px 15px;
    gap: 10px;
    font-size: 0.9rem;
  }
}

.hamburger {
  width: 24px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: white;
  transition: width 0.3s ease;
  margin-left: auto;
}

.bottom-nav:hover .hamburger span:nth-child(1) {
  width: 50%;
}

.bottom-nav:hover .hamburger span:nth-child(2) {
  width: 100%;
}

.bottom-nav:hover .hamburger span:nth-child(3) {
  width: 75%;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  position: absolute;
  bottom: 20%;
  width: 90%;
}

@media (min-width: 1024px) {
  .hero-title {
    bottom: 120px;
    width: 100%;
  }
}

.bottom-right {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 90%;
  text-align: center;
  pointer-events: none;
}

.bottom-right p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: 1.5;
  margin-bottom: 24px;
}

@media (min-width: 1024px) {
  .bottom-right {
    bottom: 120px;
    max-width: 450px;
    text-align: right;
    width: auto;
  }
}

.btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
}

@media (min-width: 1024px) {
  .btn-group {
    justify-content: flex-end;
  }
}

.btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 0;
  padding-bottom: 150%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background: transparent;
  border: 1px solid white;
  color: white;
}

.btn-outline::before {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-solid {
  background: #c8e65f;
  border: 1px solid #c8e65f;
  color: #111;
}

.btn-solid::before {
  background-color: #b1d249;
}

.btn-solid:hover {
  border-color: #b1d249;
  box-shadow: 0 8px 20px rgba(200, 230, 95, 0.4);
}

/* ========================================================
   OUR BELIEF & HOW WE BUILD
   ======================================================== */
.content-section {
  position: relative;
  background-color: #fff;
  z-index: 10;
  padding-top: 120px;
}
#belief.content-section {
  padding-bottom: 80px;
}
.belief-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.belief-subtitle {
  color: #1a4f3b;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
}

.belief-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  color: #222;
}

/* Contained cinematic video between the belief statement and How We Build */
.belief-video-band {
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 0 20px;
  overflow: hidden;
}

.belief-video-band video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  background-color: #111;
}

@media (max-width: 900px) {
  .belief-video-band {
    margin-top: 40px;
  }
}

.hwb-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: transparent;
  margin-top: -80px;
}

.hwb-header {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 15px;
}

@media (min-width: 1024px) {
  .hwb-header {
    flex-direction: row;
    margin-bottom: 100px;
  }
}

.hwb-header h3 {
  color: #1a4f3b;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  white-space: nowrap;
}

.progress-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  max-width: 300px;
}

.progress-bar-bg {
  flex-grow: 1;
  height: 2px;
  background-color: #e0e0e0;
  position: relative;
}

.progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 20%;
  background-color: #1a4f3b;
}

.progress-text {
  color: #1a4f3b;
  font-weight: 500;
}

.hwb-track {
  display: flex;
  width: 500%;
  align-items: center;
  will-change: transform;
}

.hwb-slide {
  width: 20%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5%;
}

@media (min-width: 1024px) {
  .hwb-slide {
    padding: 0 2%;
  }
}

/* Mobile First Stacked Layout */
.slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
}

@media (min-width: 1024px) {
  .slide-content {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1800px;
    gap: 60px;
  }
}

.slide-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  background-color: #d9d9d9;
  border-radius: 8px;
  object-fit: cover;
}

.slide-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

@media (min-width: 1024px) {
  .slide-image {
    width: 50%;
  }

  .slide-text {
    width: 40%;
    gap: 20px;
    text-align: left;
  }
}

.slide-text h4 {
  color: #f08b33;
  font-size: 2.2rem;
  font-weight: 400;
  white-space: normal;
}

@media (min-width: 1024px) {
  .slide-text h4 {
    white-space: normal;
  }
}

.slide-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #444;
  max-width: 500px;
}

/* Slider Controls */
.hwb-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hwb-nav {
  display: flex;
  gap: 8px;
}

.hwb-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #ccc;
  background: transparent;
  color: #333;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.hwb-arrow:hover {
  background: #1a4f3b;
  color: #fff;
  border-color: #1a4f3b;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(26, 79, 59, 0.25);
}

.hwb-arrow:active {
  transform: translateY(0);
  box-shadow: none;
}

.hwb-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  transform: none !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  .hwb-wrapper {
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-content: start;
    height: auto;
    /* min-height: 100vh; */
    margin-top: 0;
    padding: 70px 0 30px;
    gap: 0;
    /* Clip the wide (700%) sliding track so only the active slide shows.
       Without this the carousel spills off-screen on mobile and looks
       broken. Wrapper height is auto (fits its 3 grid rows) so hidden
       overflow never cuts vertical content. */
    overflow: hidden;
  }

  .hwb-track {
    /* Let the grid item shrink so overflow-x on the wrapper can clip it. */
    min-width: 0;
  }


  .hwb-header {
    display: contents;
  }

  .hwb-header h3 {
    grid-row: 1;
    justify-self: center;
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
  }

  .hwb-track {
    grid-row: 2;
    margin-top: 0;
    align-items: flex-start;
  }

  .hwb-slide {
    padding: 0;
  }

  .slide-content {
    width: min(100% - 40px, 370px);
    margin: 0 auto;
    gap: 20px;
  }

  .slide-image {
    width: 100%;
  }

  .slide-text {
    gap: 12px;
    align-items: center;
    text-align: center;
  }

  .slide-text p {
    margin: 0 auto;
  }

  .hwb-controls {
    grid-row: 3;
    justify-self: center;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
    width: max-content;
  }

  .hwb-nav {
    justify-content: center;
  }
}

/* ========================================================
   TURIYA SECTION - FIGMA MATCH
   ======================================================== */
.turiya-section {
  position: relative;
  background: #fff;
  z-index: 10;
  overflow: hidden;
}

.turiya-intro {
  min-height: 92vh;
  padding: 90px 20px 46px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.turiya-title {
  font-size: clamp(96px, 17vw, 250px);
  font-family: 'Amulya', 'Outfit', sans-serif;
  font-weight: 700;
  color: #b1d249;
  line-height: 0.78;
  letter-spacing: 0.01em;
  margin: 0;
}

.turiya-subtitle {
  font-size: clamp(2rem, 4.2vw, 4.25rem);
  font-weight: 500;
  color: #1a4f3b;
  line-height: 1.1;
  margin: 0;
}

.turiya-desc {
  font-size: clamp(1.05rem, 2.1vw, 1.9rem);
  line-height: 1.45;
  color: #333;
  margin: 18px 0 0;
  position: relative;
  z-index: 5;
}

.turiya-desc b {
  display: inline-block;
  font-weight: 700;
}

.turiya-top-green-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 10px;
  background-color: #1a4f3b;
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.turiya-features-active .turiya-top-green-line {
  opacity: 1;
  visibility: visible;
}

.turiya-pin-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #fff;
  margin-top: 0;
  z-index: 3;
}

.turiya-top-bar {
  position: fixed;
  top: 0;
  left: 50%;
  background-color: #1a4f3b;
  padding: 13px 32px 14px;
  border-radius: 0 0 14px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  max-width: calc(100vw - 32px);
  transform: translateX(-50%);
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

body.turiya-features-active .turiya-top-bar {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}

.turiya-top-bar::before,
.turiya-top-bar::after {
  content: '';
  position: absolute;
  top: 0;
  width: 18px;
  height: 18px;
}

.turiya-top-bar::before {
  left: -17px;
  background: radial-gradient(circle at 0 100%, transparent 17px, #1a4f3b 17.5px);
}

.turiya-top-bar::after {
  right: -17px;
  background: radial-gradient(circle at 100% 100%, transparent 17px, #1a4f3b 17.5px);
}

.turiya-top-bar a {
  color: white;
  text-decoration: none;
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.turiya-top-bar .divider {
  color: rgba(255, 255, 255, 0.55);
}

.turiya-canvas {
  /* Sized to the full viewport and shrunk down via transform:scale by GSAP.
     Scaling a composited transform avoids the per-frame layout/paint that
     animating width/height caused, and keeps the feature boxes crisp. */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  border-radius: 0;
  overflow: hidden;
  background: #e9e9e9;
  box-shadow: none;
}

.tslide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.06);
  transform-origin: center center;
  will-change: transform;
  transition: none;
}

.tslide::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.slide-location::before {
  background: linear-gradient(180deg, rgba(255, 244, 214, 0.12), rgba(26, 79, 59, 0.08));
}

.tslide.active,
.tslide.is-active {
  opacity: 1;
  visibility: visible;
  transition: none;
}

.tslide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.tbox {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  color: #1a4f3b;
  padding: 18px 26px;
  border-radius: 9px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  font-size: clamp(1rem, 1.55vw, 1.58rem);
  line-height: 1.42;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  z-index: 20;
  max-width: min(90vw, 500px);
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.tbox.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}

.tbox-empty,
.tbox-empty.is-active {
  display: none !important;
}

.box-pos-0 {
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.box-pos-1,
.box-pos-2,
.box-pos-3,
.box-pos-4,
.box-pos-5 {
  left: 50%;
  right: auto;
  top: auto;
  bottom: 13%;
  transform: translateX(-50%);
  text-align: center;
}


@media (min-width: 769px) {
  .turiya-canvas .box-pos-1 {
    top: 14%;
    right: 7.5%;
    bottom: auto;
    left: auto;
    transform: none;
  }

  .turiya-canvas .box-pos-2 {
    top: 15%;
    left: 6.5%;
    right: auto;
    bottom: auto;
    transform: none;
  }

  .turiya-canvas .box-pos-3 {
    top: 44%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translateX(-50%);
  }

  .turiya-canvas .box-pos-4 {
    top: 66%;
    left: 7.5%;
    right: auto;
    bottom: auto;
    transform: none;
  }

  .turiya-canvas .box-pos-5 {
    top: 75%;
    right: 8.5%;
    bottom: auto;
    left: auto;
    transform: none;
  }
}

.box-pos-4 ul {
  display: inline-block;
  text-align: left;
}

.tbox ul {
  list-style: none;
  padding-top: 8px;
}

.tbox ul li {
  margin-bottom: 4px;
}

.turiya-mobile-sequence {
  display: none;
}

.turiya-mobile-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.06);
  transform-origin: center center;
  will-change: transform;
  transition: none;
}

.turiya-mobile-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: none;
}

.turiya-mobile-pin {
  position: relative;
  height: 100%;
}

.tmobile-top-bar {
  display: none;
}

.tmobile-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.tmobile-media::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tmobile-location::before {
  background: linear-gradient(180deg, rgba(255, 244, 214, 0.12), rgba(26, 79, 59, 0.08));
}

.tmobile-video-wrap {
  background: #d9d9d9;
}

.tmobile-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tmobile-box {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  color: #1a4f3b;
  padding: 18px 26px;
  border-radius: 9px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  font-size: clamp(1rem, 1.55vw, 1.58rem);
  line-height: 1.42;
  text-align: left;
  z-index: 20;
  max-width: min(90vw, 500px);
}

.tmobile-box ul {
  list-style: none;
  padding-top: 8px;
}

.tmobile-box ul li {
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .turiya-intro {
    min-height: 86vh;
    padding-top: 70px;
    padding-bottom: 34px;
    gap: 14px;
  }

  .turiya-title {
    font-size: clamp(72px, 22vw, 125px);
  }

  .turiya-subtitle {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .turiya-desc {
    font-size: 1.05rem;
  }

  .turiya-pin-container {
    margin-top: 0;
  }

  .turiya-top-green-line {
    height: 8px;
  }

  .turiya-top-bar {
    top: 0;
    padding: 9px 14px 10px;
    gap: 9px;
    border-radius: 0 0 12px 12px;
    max-width: calc(100vw - 20px);
  }

  .turiya-top-bar a {
    font-size: 0.88rem;
  }

  .tbox,
  .tmobile-box {
    font-size: 1rem;
    padding: 13px 16px;
    max-width: 82vw;
  }

  .box-pos-1,
  .box-pos-2,
  .box-pos-3,
  .box-pos-4,
  .box-pos-5 {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 14%;
    transform: translateX(-50%);
    text-align: center;
  }
}



@media (max-width: 768px) {
  .turiya-section {
    overflow: visible;
  }

  .turiya-pin-container {
    display: none;
  }

  .turiya-mobile-sequence {
    display: block;
    position: relative;
    height: 100svh;
    background: #fff;
    overflow: hidden;
  }

  .turiya-mobile-panel {
    position: absolute;
    inset: 0;
    z-index: var(--mobile-order);
  }

  .turiya-mobile-pin {
    position: relative;
    height: 100svh;
    overflow: hidden;
    background: #fff;
    border-top: 8px solid #1a4f3b;
  }

  .tmobile-media,
  .tmobile-video-wrap,
  .tmobile-video {
    height: 100%;
  }

  .tmobile-top-bar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a4f3b;
    padding: 9px 14px 10px;
    border-radius: 0 0 12px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    z-index: 40;
    width: max-content;
    max-width: calc(100vw - 20px);
    white-space: nowrap;
  }

  .tmobile-top-bar a {
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
  }

  .tmobile-top-bar .divider {
    color: rgba(255, 255, 255, 0.55);
  }

  .tmobile-top-bar::before,
  .tmobile-top-bar::after {
    content: '';
    position: absolute;
    top: 0;
    width: 18px;
    height: 18px;
  }

  .tmobile-top-bar::before {
    left: -17px;
    background: radial-gradient(circle at 0 100%, transparent 17px, #1a4f3b 17.5px);
  }

  .tmobile-top-bar::after {
    right: -17px;
    background: radial-gradient(circle at 100% 100%, transparent 17px, #1a4f3b 17.5px);
  }
}

@media (max-width: 520px) {

  .bottom-right .btn-group {
    flex-wrap: wrap;
  }

  .turiya-intro {
    min-height: 60vh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .turiya-title {
    font-size: clamp(58px, 20vw, 92px);
    line-height: 0.84;
  }

  .turiya-subtitle {
    font-size: clamp(1.3rem, 6vw, 1.75rem);
  }

  .turiya-desc {
    font-size: 1rem;
    line-height: 1.45;
  }

  .turiya-top-bar,
  .tmobile-top-bar {
    padding: 8px 12px 9px;
    gap: 8px;
    top: 0;
    width: 60%;
  }

  .turiya-top-bar a,
  .tmobile-top-bar a {
    font-size: 0.78rem;
  }

  .tbox,
  .tmobile-box {
    width: min(86vw, 260px);
    font-size: 0.95rem;
    line-height: 1.38;
  }

  .tbox ul,
  .tmobile-box ul {
    text-align: left;
  }

  .founder-section {
    padding: 100px 5% 81px 5%;
  }

  .founder-section .founder-card {
    left: 0;
    right: 0;
    bottom: -20px;
    padding: 15px 20px;
  }

  .bottom-nav {
    bottom: max(14px, env(safe-area-inset-bottom));
  }
}

/* ========================================================
   GALLERY SECTION
   ======================================================== */
.gallery-section {
  background-color: #fff;
  padding: 100px 5%;
  position: relative;
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-header {
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gallery-subtitle {
  color: #1a4f3b;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
}

.gallery-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  color: #222;
}

.gallery-carousel {
  max-width: 1024px;
  margin: 0 auto;
}

.gallery-main {
  position: relative;
}

.gallery-main-stage {
  border-radius: 8px;
  overflow: hidden;
  background-color: #d9d9d9;
  aspect-ratio: 16 / 9;
  cursor: zoom-in;
}

.gallery-main-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-main-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(17, 17, 17, 0.5);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.gallery-main-arrow:hover {
  background: #1a4f3b;
  border-color: #1a4f3b;
}

.gallery-main-prev {
  left: 16px;
}

.gallery-main-next {
  right: 16px;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  flex: 0 0 auto;
  width: 100px;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  background: none;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}

.gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb:hover {
  opacity: 0.85;
}

.gallery-thumb.is-active {
  opacity: 1;
  border-color: #1a4f3b;
}

@media (max-width: 640px) {
  .gallery-main-arrow {
    width: 38px;
    height: 38px;
  }

  .gallery-thumb {
    width: 80px;
  }
}

@media (max-width: 767px) {
  .gallery-section {
    padding: 80px 5%;
  }

  .gallery-header {
    margin-bottom: 40px;
  }
}

/* ========================================================
   GALLERY LIGHTBOX
   ======================================================== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  padding: 60px 20px;
}

.gallery-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-figure {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  transform: scale(0.96);
  transition: transform 0.3s ease;
}

.gallery-lightbox.is-active .gallery-lightbox-figure {
  transform: scale(1);
}

.gallery-lightbox img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: fixed;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(17, 17, 17, 0.5);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: #1a4f3b;
  border-color: #1a4f3b;
}

.gallery-lightbox-close {
  top: 20px;
  right: 20px;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-prev {
  left: 20px;
}

.gallery-lightbox-next {
  right: 20px;
}

@media (max-width: 640px) {

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .gallery-lightbox-close {
    top: 12px;
    right: 12px;
  }

  .gallery-lightbox-prev {
    left: 8px;
  }

  .gallery-lightbox-next {
    right: 8px;
  }
}

/* ========================================================
   FOUNDER SECTION
   ======================================================== */
.founder-section {
  background-color: #f5f5f3;
  padding: 100px 5%;
  position: relative;
}

.founder-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 1024px) {
  .founder-container {
    flex-direction: row;
    gap: 80px;
  }
}

.founder-content {
  width: 100%;
  padding-right: 0;
}

@media (min-width: 1024px) {
  .founder-content {
    flex: 1;
    padding-right: 40px;
  }
}

.founder-content h4 {
  color: #1a4f3b;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.founder-content p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
}

.founder-image-wrapper {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  .founder-image-wrapper {
    flex: 1;
    display: block;
  }
}

.founder-image {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: #d9d9d9;
  background-image: url('../images/features-1.webp');
  background-size: cover;
  background-position: center;
}

.founder-cards-row {
  position: relative;
  margin-top: -60px;
  z-index: 10;
  width: 90%;
  display: flex;
  align-items: stretch;
  gap: 12px;
}

@media (min-width: 1024px) {
  .founder-cards-row {
    position: absolute;
    bottom: 40px;
    left: -50px;
    margin-top: 0;
    width: auto;
    gap: 16px;
  }
}

.founder-card {
  background: #fff;
  padding: 20px 30px;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  flex: 1;
}

@media (min-width: 1024px) {
  .founder-card {
    flex: none;
    padding: 25px 40px;
  }
}

.founder-card h3 {
  font-size: 1.2rem;
  color: #1a4f3b;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: 'Outfit', sans-serif;
}

.founder-card p {
  font-size: 1rem;
  color: #1a4f3b;
  margin: 0;
}

.founder-follow-card {
  flex-shrink: 0;
  background: #fff;
  padding: 14px 16px;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.founder-social-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #222;
}

.founder-social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #1a4f3b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a4f3b;
  transition: transform 0.3s ease;
}

.founder-social-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
}

.founder-follow-card:hover .founder-social-icon {
  transform: scale(1.08);
}

/* ========================================================
   CLIENT REVIEWS
   ======================================================== */
.reviews-section {
  background-color: #fff;
  padding: 100px 5% 100px;
  position: relative;
}

.reviews-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.reviews-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

@media (min-width: 1024px) {
  .reviews-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
}

.reviews-title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.reviews-title span {
  color: #1a4f3b;
  font-weight: 600;
}

.reviews-nav {
  display: flex;
  gap: 15px;
}

.nav-arrow {
  width: 45px;
  height: 45px;
  border: 1px solid #ccc;
  background: transparent;
  color: #333;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: #1a4f3b;
  color: #fff;
  border-color: #1a4f3b;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(26, 79, 59, 0.3);
}

.nav-arrow:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(26, 79, 59, 0.2);
}

.reviews-content {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.reviews-left-space {
  display: none;
}
.stack-mobile-controls {
  display: none;
}

@media (min-width: 1024px) {
  .reviews-left-space {
    flex: 0 0 200px;
    display: block;
  }
}

.quote-slider-wrapper {
  max-width: 1000px;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: 0;
  left: -50px;
  font-size: 3rem;
  color: #1a4f3b;
  line-height: 1;
}

.quote-slider {
  position: relative;
  z-index: 2;
}

/* Inactive slides overlay absolutely (so they can crossfade out) while the
   active slide stays in normal flow and defines the slider's real size. */
.quote-slide {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  /* Delay hide until after the outgoing slide has faded */
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}

.quote-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0s;
}

.quote-text {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.4;
  color: #333;
}

.quote-author {
  font-size: 1.4rem;
  color: #1a4f3b;
  font-weight: 500;
  margin-top: 30px;
}

.quote-designation {
  font-size: 0.95rem;
  color: #666;
}

/* ========================================================
   CTA SECTION
   ======================================================== */
.cta-section {
  background-color: #d8dad7;
  padding: 120px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.cta-title {
  font-size: 2.8rem;
  color: #1a4f3b;
  font-weight: 400;
}

.cta-btn-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

@media (min-width: 1024px) {
  .cta-btn-group {
    flex-direction: row;
    gap: 20px;
    width: auto;
  }
}

.cta-btn-group .btn {
  font-size: 0.9rem;
  padding: 15px 35px;
}

.cta-btn-group .btn-outline {
  border: 1px solid #1a4f3b;
  color: #1a4f3b;
}

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer {
  position: relative;
  color: #fff;
  padding: 120px 5% 60px;
  background-image: url('../images/footer_bg.webp');
  background-size: cover;
  background-position: center;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 79, 59, 0.85);
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.footer-top {
  text-align: center;
}

.footer-logo {
  height: 60px;
  margin-bottom: 30px;
}

.footer-tagline {
  font-size: 2.5rem;
  font-weight: 300;
  color: #fff;
}

.footer-tagline .tagline-top {
  margin-bottom: 30px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 40px 0;
}

@media (min-width: 1024px) {
  .footer-info {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    padding: 25px 0;
    margin: 50px 0;
  }
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  color: #fff;
}

.info-item svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.5;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (min-width: 1024px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}

@media (max-width: 767px) {
  .footer-tagline {
    font-size: 1.3rem;
  }

  .footer-info {
    margin: 25px 0px;
    align-items: flex-start;
  }

  .footer-tagline .tagline-top {
    font-size: 1.8rem;
  }

  .site-footer {
    padding: 120px 5% 100px;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}

.social-icon {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
}

.social-icon:hover {
  color: #b1d249;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #fff;
}

/* ========================================================
   MODALS & OVERLAYS
   ======================================================== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

.popup-box {
  background: #fff;
  padding: 50px 40px;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  position: relative;
  color: #333;
  transform: translateY(30px);
  transition: transform 0.4s ease;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.popup-overlay.active .popup-box {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #999;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.popup-close:hover {
  color: #111;
  transform: rotate(90deg);
}

.popup-title {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #1a4f3b;
  text-align: center;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #444;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #333;
  font-size: 1.1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #1a4f3b;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: #1a4f3b;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 0;
  padding-bottom: 150%;
  background-color: #111;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-submit:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-submit:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.success-message {
  text-align: center;
  display: none;
  padding: 20px 0;
}

.success-message h4 {
  font-size: 1.8rem;
  color: #1a4f3b;
  margin-bottom: 15px;
}

.success-message p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #666;
}

/* Full Screen Nav Menu */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  padding: 40px 0;
}

.nav-box {
  background: #1a4f3b;
  padding: 60px 50px;
  width: 90%;
  max-width: 450px;
  position: relative;
  color: #fff;
  text-align: left;
  margin: auto;
}

.nav-close {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3px;
}

.nav-close:hover {
  background: #fff;
  color: #111;
  transform: translateX(-50%) rotate(90deg);
}

.nav-menu-header {
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  margin-bottom: 40px;
  padding: 0;
}

.nav-links li {
  margin-bottom: 12px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: 300;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #b1d249;
}

.nav-footer-info {
  display: flex;
  gap: 40px;
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 40px;
}

.nav-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: #fff;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 500;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.nav-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 0;
  padding-bottom: 150%;
  background-color: #1a4f3b;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.nav-btn:hover {
  border-color: #1a4f3b;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 79, 59, 0.3);
}

.nav-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(26, 79, 59, 0.2);
}

@media (max-width: 900px) {
  .founder-card {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 15px 20px;
  }

  .quote-text {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .footer-info {
    flex-direction: column;
    gap: 20px;
  }

  .logo-dropdown {
    top: 9px;
  }
}

@media (max-width: 767px) {
  .hero-scroll-scene .hero-title {
      bottom: 15svh !important;
  }
  .hero-scroll-scene .bottom-right {
    padding: 14vh 0 10vh 0 !important;
  }
}