/* =====================================================================
   GET GROWN LABS — STYLESHEET
   Sections: 1. Tokens  2. Reset  3. Type  4. Layout utils  5. Cursor
   6. Header/Nav  7. Hero  8. Intro  9. Why-Grown  10. Why-Labs
   11. Services  12. Mixolab  13. Signature  14. Event types  15. USP
   16. Gallery  17. Brand story  18. Sustainability  19. Final CTA
   20. Contact  21. Footer  22. Buttons  23. Responsive  24. A11y
   ===================================================================== */

/* ---------- 1. TOKENS ---------- */
:root {

  --black: #050505;

  --dark: #080807;

  --surface: #0F0E0B;

  --surface-2: #17150F;

  --green: #CDA42E;

  --lime: #D2BE93;

  --gold: #CDA42E;

  --white: #F4F1E8;

  --muted: #9B978C;

  --border: rgba(205, 164, 46, 0.18);

  --font-display: 'Cormorant Garamond', serif;

  --font-body: 'Manrope', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1320px;

  --gutter: clamp(24px, 5vw, 72px);

}

/* ---------- 2. RESET ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

input,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--lime);
  color: var(--black);
  padding: 12px 20px;
  z-index: 999;
  font-weight: 600;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

/* ---------- 3. TYPE ---------- */
.label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--lime);
  font-weight: 600;
  margin-bottom: 18px;
}

.reveal-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 2.8vw, 3.6rem);
  line-height: 1.12;
  max-width: 15ch;
  color: var(--white);
}

.reveal-heading::first-letter {
  color: var(--gold);
}

.reveal-heading.small {
  max-width: 20ch;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
}

.accent-block {
  display: block;
  color: var(--lime);
  margin-top: 6px;
}

.body-copy {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 46ch;
  margin-top: 20px;
}

.body-copy.wide {
  max-width: 62ch;
}

/* ---------- 4. LAYOUT UTILS ---------- */
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px var(--gutter);
}

section {
  position: relative;
}

/* ---------- 5. CUSTOM CURSOR ---------- */
.cursor-dot,
.cursor-label {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s var(--ease-out), height .25s var(--ease-out), background .25s;
}

.cursor-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime);
  mix-blend-mode: difference;
}

.cursor-dot.is-hover {
  width: 52px;
  height: 52px;
  background: rgba(166, 214, 90, 0.25);
  border: 1px solid var(--lime);
}

.cursor-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--black);
  background: var(--lime);
  opacity: 0;
}

.cursor-label.is-active {
  opacity: 1;
}

@media (hover:none),
(pointer:coarse) {

  .cursor-dot,
  .cursor-label {
    display: none;
  }
}

/* ---------- grain ---------- */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================================================
   6. HEADER
========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 100;

  padding: 22px var(--gutter);

  transition:
    background .4s var(--ease-out),
    backdrop-filter .4s var(--ease-out),
    padding .4s var(--ease-out),
    border-color .4s var(--ease-out);

  border-bottom: 1px solid transparent;
}


/* =========================================================
   SCROLLED HEADER
========================================================= */

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.82);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  padding: 14px var(--gutter);

  border-bottom-color: var(--border);
}


/* =========================================================
   HEADER INNER
========================================================= */

.header-inner {
  width: 100%;
  max-width: var(--container);

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 32px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
  display: flex;
  align-items: center;

  gap: 12px;

  flex-shrink: 0;

  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;

  object-fit: contain;

  filter:
    drop-shadow(0 0 10px rgba(205, 164, 46, 0.25));

  transition:
    transform .4s var(--ease-out);
}

.logo:hover .logo-mark {
  transform: rotate(8deg);
}

.logo-word {
  font-family: var(--font-display);

  font-size: 1.15rem;

  letter-spacing: 0.01em;

  white-space: nowrap;

  color: var(--white);
}

.logo-word em {
  color: var(--gold);

  font-style: normal;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.nav-desktop {
  margin-left: auto;
}

.nav-desktop ul {
  display: flex;

  align-items: center;

  gap: 36px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.nav-desktop a {
  position: relative;

  display: inline-block;

  font-size: 0.92rem;

  color: var(--white);

  text-decoration: none;

  white-space: nowrap;
}

.nav-desktop a::after {
  content: '';

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition:
    width .3s var(--ease-out);
}

.nav-desktop a:hover::after {
  width: 100%;
}


/* =========================================================
   HEADER CTA
========================================================= */

.nav-cta {
  flex-shrink: 0;

  white-space: nowrap;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
  display: none;

  width: 42px;
  height: 38px;

  padding: 6px 0;

  flex-direction: column;
  justify-content: space-between;

  border: 0;

  background: transparent;

  cursor: pointer;

  flex-shrink: 0;

  z-index: 110;
}

.menu-toggle span {
  display: block;

  width: 100%;
  height: 1px;

  background: var(--white);

  transform-origin: center;

  transition:
    transform .35s var(--ease-out),
    opacity .25s ease,
    background .3s ease;
}


/* =========================================================
   HAMBURGER → X
========================================================= */

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform:
    translateY(12px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform:
    translateY(-12px) rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
  position: fixed;

  inset: 0;

  z-index: 99;

  width: 100%;
  height: 100dvh;

  background:
    radial-gradient(circle at 80% 20%,
      rgba(205, 164, 46, 0.07),
      transparent 35%),
    var(--black);

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: flex-start;

  padding:
    100px var(--gutter) 40px;

  overflow-y: auto;

  transform: translateY(-100%);

  opacity: 0;

  visibility: hidden;

  transition:
    transform .55s var(--ease-out),
    opacity .4s ease,
    visibility .55s;

  pointer-events: none;
}

.mobile-menu.is-open {
  transform: translateY(0);

  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}


/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-menu nav {
  width: 100%;
}

.mobile-menu ul {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 18px;

  margin: 0 0 36px;
  padding: 0;

  list-style: none;
}

.mobile-menu li {
  width: 100%;
}

.mobile-menu nav a {
  display: inline-block;

  font-family: var(--font-display);

  font-size: clamp(2.2rem, 10vw, 3.5rem);

  font-weight: 400;

  line-height: 1;

  color: var(--white);

  text-decoration: none;

  transition:
    color .3s ease,
    transform .3s var(--ease-out);
}

.mobile-menu nav a:hover {
  color: var(--gold);

  transform: translateX(8px);
}


/* =========================================================
   MOBILE CTA
========================================================= */

.mobile-menu>.btn {
  margin-top: 4px;
}


/* =========================================================
   MOBILE FOOTER
========================================================= */

.mobile-menu-footer {
  display: flex;

  flex-direction: column;

  gap: 8px;

  margin-top: 38px;

  padding-top: 22px;

  border-top: 1px solid var(--border);

  width: min(100%, 320px);
}

.mobile-menu-footer a {
  font-family: var(--font-body);

  font-size: 0.82rem;

  line-height: 1.5;

  color: var(--muted);

  text-decoration: none;
}

.mobile-menu-footer a:hover {
  color: var(--gold);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

  .nav-desktop ul {
    gap: 22px;
  }

  .nav-desktop a {
    font-size: 0.84rem;
  }

  .nav-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .site-header {
    padding:
      16px var(--gutter);
  }

  .site-header.is-scrolled {
    padding:
      12px var(--gutter);

    background:
      rgba(5, 5, 5, 0.92);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }


  /* Header */

  .header-inner {
    gap: 16px;
  }


  /* Logo */

  .logo {
    gap: 9px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
  }

  .logo-word {
    font-size: 1.05rem;
  }


  /* Hide desktop navigation */

  .nav-desktop {
    display: none;
  }


  /* Hide desktop CTA */

  .nav-cta {
    display: none;
  }


  /* Show hamburger */

  .menu-toggle {
    display: flex;
  }


  /* Mobile menu */

  .mobile-menu {
    padding:
      100px var(--gutter) 35px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .site-header {
    padding:
      14px 20px;
  }

  .site-header.is-scrolled {
    padding:
      11px 20px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
  }

  .logo-word {
    font-size: 1rem;
  }

  .menu-toggle {
    width: 38px;
    height: 34px;
  }

  .mobile-menu {
    padding:
      90px 20px 30px;
  }

  .mobile-menu ul {
    gap: 16px;

    margin-bottom: 30px;
  }

  .mobile-menu nav a {
    font-size: 2.45rem;
  }

  .mobile-menu-footer {
    margin-top: 30px;
  }

}

/* ---------- 7. HERO ---------- */

.hero {
  min-height: 100vh;

  display: flex;
  align-items: flex-end;

  position: relative;

  overflow: hidden;
}


/* ==========================================
   HERO VIDEO
========================================== */

.hero-video {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  /*
     * Starting scale
     */
  transform: scale(1.05);

  /*
     * Smooth zoom IN → OUT → IN
     */
  animation: heroVideoZoom 12s ease-in-out infinite;

  will-change: transform;
}


/* ==========================================
   HERO POSTER / VIDEO ZOOM
========================================== */

@keyframes heroVideoZoom {

  0% {
    transform: scale(1.05);
  }

  50% {
    transform: scale(1.14);
  }

  100% {
    transform: scale(1.05);
  }

}


/* ==========================================
   HERO OVERLAY
========================================== */

.hero-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(5, 5, 5, 0.55) 0%,
      rgba(5, 5, 5, 0.35) 40%,
      rgba(5, 5, 5, 0.92) 100%);
}


/* ==========================================
   HERO GLOW
========================================== */

.hero-glow {
  position: absolute;

  top: 20%;
  left: 50%;

  width: 60vw;
  height: 60vw;

  max-width: 800px;
  max-height: 800px;

  transform: translate(-50%, -50%);

  background:
    radial-gradient(circle,
      rgba(205, 164, 46, 0.14),
      transparent 65%);

  filter: blur(10px);

  pointer-events: none;
}


/* ==========================================
   PARTICLES
========================================== */

.hero-particles {
  position: absolute;

  inset: 0;

  pointer-events: none;
}

.hero-particles span {
  position: absolute;

  width: 3px;
  height: 3px;

  border-radius: 50%;

  background: var(--lime);

  opacity: 0.5;
}


/* ==========================================
   HERO CONTENT
========================================== */

.hero-content {
  position: relative;

  z-index: 2;

  max-width: var(--container);

  margin: 0 auto;

  width: 100%;

  padding:
    0 var(--gutter) 140px;
}


/* ==========================================
   EYEBROW
========================================== */

.hero-eyebrow {
  font-size: 0.8rem;

  letter-spacing: 0.16em;

  color: var(--lime);

  font-weight: 600;

  margin-bottom: 20px;

  opacity: 0;

  transform: translateY(16px);
}


/* ==========================================
   HEADLINE
========================================== */

.hero-headline {
  font-family: var(--font-display);

  font-weight: 500;

  font-size:
    clamp(2.6rem,
      7vw,
      5.4rem);

  line-height: 1.05;

  margin-bottom: 26px;
}

.hero-headline .line {
  display: block;

  overflow: hidden;
}

.hero-headline .line span {
  display: block;

  transform: translateY(110%);
}


/* ==========================================
   DESCRIPTION
========================================== */

.hero-desc {
  max-width: 44ch;

  color: var(--muted);

  font-size: 1.08rem;

  margin-bottom: 36px;

  opacity: 0;

  transform: translateY(20px);
}


/* ==========================================
   HERO BUTTONS
========================================== */

.hero-actions {
  display: flex;

  gap: 18px;

  flex-wrap: wrap;
}

.hero-actions .btn {
  opacity: 0;

  transform: translateY(16px);
}


/* ==========================================
   SCROLL INDICATOR
========================================== */

.scroll-indicator {
  position: absolute;

  left: var(--gutter);
  bottom: 32px;

  z-index: 2;

  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 0.72rem;

  letter-spacing: 0.12em;

  color: var(--muted);
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

  .hero {
    min-height: 100svh;
  }

  .hero-video {
    /*
         * Slightly stronger zoom on mobile
         * prevents empty edges during scaling
         */
    transform: scale(1.08);

    animation-name: heroVideoZoomMobile;
  }

  .hero-content {
    padding:
      0 var(--gutter) 110px;
  }

}


/* ==========================================
   MOBILE ZOOM
========================================== */

@keyframes heroVideoZoomMobile {

  0% {
    transform: scale(1.08);
  }

  50% {
    transform: scale(1.17);
  }

  100% {
    transform: scale(1.08);
  }

}


/* ==========================================
   REDUCED MOTION
========================================== */

@media (prefers-reduced-motion: reduce) {

  .hero-video {
    animation: none;

    transform: scale(1.05);
  }

}

/* =========================================================
   8. INTRO — PREMIUM LAB SECTION
========================================================= */

.intro {
  position: relative;
  overflow: hidden;
}


/* =========================================================
   GRID
========================================================= */

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}


/* =========================================================
   VISUAL
========================================================= */

.intro-visual {
  position: relative;
  width: min(100%, 590px);
  margin-left: auto;
  padding: 38px 38px 38px 0;
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.intro-image-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface);
}


/* =========================================================
   IMAGE
========================================================= */

.intro-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;

  transform: scale(1.02);

  transition:
    transform 1.5s var(--ease-out),
    filter 1.2s ease;
}


/* Premium slow zoom */

.intro-visual:hover .intro-image-wrap img {
  transform: scale(1.075);
  filter: brightness(0.88) contrast(1.04);
}


/* =========================================================
   IMAGE SHADE
========================================================= */

.intro-image-shade {
  position: absolute;
  inset: 0;
  z-index: 4;

  pointer-events: none;

  background:
    linear-gradient(135deg,
      rgba(5, 5, 5, 0.12),
      transparent 40%,
      rgba(5, 5, 5, 0.28));
}


/* =========================================================
   GOLD OFFSET FRAME
========================================================= */

.intro-frame {
  position: absolute;

  width: calc(100% - 38px);
  height: calc(100% - 38px);

  border: 1px solid var(--gold);

  pointer-events: none;

  transition:
    transform 1s var(--ease-out),
    opacity 0.6s ease;
}


/* Top/right frame */

.intro-frame-top {
  top: 0;
  right: 0;

  opacity: 0.8;

  transform: translate(10px, -10px);
}


/* Bottom/left frame */

.intro-frame-bottom {
  bottom: 0;
  left: -10px;

  opacity: 0.32;

  transform: translate(-8px, 10px);
}


/* Hover frame movement */

.intro-visual:hover .intro-frame-top {
  transform: translate(16px, -16px);
}

.intro-visual:hover .intro-frame-bottom {
  transform: translate(-14px, 16px);
}


/* =========================================================
   FRAME CORNER DETAILS
========================================================= */

.intro-frame-top::before,
.intro-frame-top::after {
  content: "";

  position: absolute;

  width: 26px;
  height: 1px;

  background: var(--gold);
}

.intro-frame-top::before {
  top: -1px;
  left: -1px;
}

.intro-frame-top::after {
  bottom: -1px;
  right: -1px;
}


/* =========================================================
   VERTICAL NUMBER
========================================================= */

.intro-number {
  position: absolute;

  left: -18px;
  top: 50%;

  transform: translateY(-50%);

  z-index: 6;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;

  font-family: var(--font-body);

  color: var(--gold);

  font-size: 0.62rem;
  letter-spacing: 0.18em;

  writing-mode: vertical-rl;
}


.intro-number i {
  width: 1px;
  height: 55px;

  display: block;

  background: var(--gold);

  opacity: 0.7;
}


/* =========================================================
   FLOATING LABEL
========================================================= */

.intro-floating-label {
  position: absolute;

  right: -4px;
  bottom: 70px;

  z-index: 7;

  display: flex;
  flex-direction: column;

  padding: 15px 18px;

  background: var(--surface);

  border: 1px solid var(--border);

  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.35);

  transform: translateY(0);

  transition:
    transform 0.8s var(--ease-out);
}


.intro-floating-label span {
  font-family: var(--font-body);

  font-size: 0.55rem;
  letter-spacing: 0.2em;

  color: var(--muted);
}


.intro-floating-label strong {
  margin-top: 3px;

  font-family: var(--font-body);

  font-size: 0.72rem;
  letter-spacing: 0.12em;

  color: var(--gold);
}


.intro-visual:hover .intro-floating-label {
  transform: translateY(-8px);
}


/* =========================================================
   CONTENT
========================================================= */

.intro-copy {
  position: relative;

  max-width: 620px;

  padding: 30px 0;
}


/* =========================================================
   LABEL
========================================================= */

.intro-copy .label {
  margin-bottom: 15px;
}


/* =========================================================
   SMALL GOLD LINE
========================================================= */

.intro-title-line {
  width: 70px;
  height: 1px;

  margin-bottom: 28px;

  background: var(--border);
}


.intro-title-line span {
  display: block;

  width: 28px;
  height: 1px;

  background: var(--gold);
}


/* =========================================================
   HEADING
========================================================= */

.intro-copy .reveal-heading {
  max-width: 620px;

  margin-bottom: 30px;

  font-size: clamp(2.8rem,
      2.8vw,
      5rem);

  line-height: 0.98;

  letter-spacing: -0.025em;
}


/* Accent statement */

.intro-copy .accent-block {
  display: block;

  margin-top: 12px;

  color: var(--gold);
}


/* =========================================================
   BODY
========================================================= */

.intro-copy .body-copy {
  max-width: 52ch;

  margin-bottom: 16px;

  color: var(--muted);

  line-height: 1.8;
}


.intro-copy .body-copy strong {
  color: var(--white);

  font-weight: 500;
}


/* =========================================================
   META INFORMATION
========================================================= */

.intro-meta {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 28px;

  margin-top: 45px;

  padding-top: 28px;

  border-top: 1px solid var(--border);
}


.intro-meta-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}


.intro-meta-number {
  font-family: var(--font-display);

  font-size: 1.25rem;

  color: var(--gold);

  line-height: 1;
}


.intro-meta-item div {
  display: flex;
  flex-direction: column;

  gap: 5px;
}


.intro-meta-item small {
  font-family: var(--font-body);

  font-size: 0.58rem;

  letter-spacing: 0.16em;

  color: var(--muted);
}


.intro-meta-item strong {
  font-family: var(--font-body);

  font-size: 0.82rem;

  font-weight: 500;

  color: var(--white);
}


/* =========================================================
   FOOTER
========================================================= */

.intro-footer {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-top: 42px;

  font-family: var(--font-body);

  font-size: 0.58rem;

  letter-spacing: 0.16em;

  color: var(--muted);
}


.intro-footer-line {
  width: 55px;
  height: 1px;

  background: var(--border);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .intro-grid {
    grid-template-columns: 1fr 1fr;

    gap: 45px;
  }

  .intro-visual {
    padding: 28px 28px 28px 0;
  }

  .intro-copy .reveal-heading {
    font-size: clamp(2.5rem,
        5vw,
        4rem);
  }

  .intro-floating-label {
    right: -8px;
    bottom: 45px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .intro-grid {
    display: flex;
    flex-direction: column;

    gap: 55px;
  }


  /* Image FIRST */

  .intro-visual {
    order: 1;

    width: 100%;

    margin: 0;

    padding: 25px 20px 25px 0;
  }


  /* Content SECOND */

  .intro-copy {
    order: 2;

    width: 100%;

    padding: 0;
  }


  /* Mobile image */

  .intro-image-wrap {
    aspect-ratio: 4 / 5;
  }


  /* Frames */

  .intro-frame {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }


  .intro-frame-top {
    transform: translate(8px, -8px);
  }


  .intro-frame-bottom {
    left: -5px;

    transform: translate(-5px, 8px);
  }


  /* Number */

  .intro-number {
    left: -13px;

    font-size: 0.52rem;
  }


  .intro-number i {
    height: 35px;
  }


  /* Floating label */

  .intro-floating-label {
    right: -2px;
    bottom: 35px;

    padding: 12px 14px;
  }


  .intro-floating-label span {
    font-size: 0.48rem;
  }


  .intro-floating-label strong {
    font-size: 0.62rem;
  }


  /* Heading */

  .intro-copy .reveal-heading {
    font-size: clamp(2.6rem,
        11vw,
        4rem);

    line-height: 1;

    margin-bottom: 25px;
  }


  .intro-copy .body-copy {
    font-size: 0.92rem;

    line-height: 1.7;
  }


  /* Meta */

  .intro-meta {
    grid-template-columns: 1fr;

    gap: 18px;

    margin-top: 35px;

    padding-top: 24px;
  }


  /* Footer */

  .intro-footer {
    margin-top: 32px;

    font-size: 0.5rem;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .intro-grid {
    gap: 45px;
  }

  .intro-visual {
    padding-right: 14px;
  }

  .intro-copy .reveal-heading {
    font-size: 2.45rem;
  }

  .intro-floating-label {
    bottom: 25px;
  }

}

/* =========================================================
   9. WHY GET GROWN
========================================================= */

.why-grown {
  position: relative;

  background: var(--surface);

  overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND DETAIL
========================================================= */

.why-grown::before {
  content: "GROW";

  position: absolute;

  right: -80px;
  top: 12%;

  font-family: var(--font-display);

  font-size: clamp(10rem, 25vw, 28rem);

  line-height: 0.7;

  color: transparent;

  -webkit-text-stroke: 1px rgba(205, 164, 46, 0.035);

  pointer-events: none;

  user-select: none;
}


/* =========================================================
   INTRO
========================================================= */

.why-grown-intro {
  display: grid;

  grid-template-columns: 0.7fr 1.3fr;

  gap: clamp(50px, 10vw, 150px);

  align-items: start;

  margin-bottom: 80px;
}


.why-grown-label {
  display: flex;

  flex-direction: column;

  gap: 18px;
}


.why-grown-label .label {
  margin: 0;
}


.label-line {
  display: block;

  width: 55px;
  height: 1px;

  background: var(--gold);

  opacity: 0.7;
}


.why-grown-description {
  max-width: 720px;
}


.why-grown-description .body-copy {
  margin: 0;

  max-width: 62ch;

  font-size: clamp(1rem,
      1.5vw,
      1.2rem);

  line-height: 1.8;

  color: var(--muted);
}


/* =========================================================
   GROWTH EXPERIENCE
========================================================= */

.growth-experience {
  position: relative;

  padding-left: 50px;
}


/* =========================================================
   PROGRESS LINE
========================================================= */

.growth-progress {
  position: absolute;

  left: 0;
  top: 0;
  bottom: 80px;

  width: 1px;

  background: var(--border);
}


.growth-progress-fill {
  position: absolute;

  left: 0;
  top: 0;

  width: 1px;
  height: 25%;

  background: var(--gold);

  transition:
    height 0.8s var(--ease-out);
}


/* =========================================================
   LIST
========================================================= */

.growth-stack {
  position: relative;

  margin: 0;

  padding: 0;

  list-style: none;

  border-top: 1px solid var(--border);
}


/* =========================================================
   ITEM
========================================================= */

.growth-item {
  position: relative;

  display: grid;

  grid-template-columns: 70px 1fr 50px;

  align-items: center;

  min-height: clamp(120px,
      14vw,
      180px);

  padding: 20px 0;

  border-bottom: 1px solid var(--border);

  cursor: pointer;

  transition:
    padding 0.7s var(--ease-out);
}


/* =========================================================
   NUMBER
========================================================= */

.growth-number {
  align-self: start;

  padding-top: 9px;

  font-family: var(--font-body);

  font-size: 0.62rem;

  letter-spacing: 0.16em;

  color: var(--muted);

  opacity: 0.45;

  transition:
    color 0.5s ease,
    opacity 0.5s ease;
}


/* =========================================================
   WORD WRAPPER
========================================================= */

.growth-word-wrap {
  display: flex;

  flex-direction: column;

  gap: 5px;
}


/* =========================================================
   SMALL LABEL
========================================================= */

.growth-small {
  font-family: var(--font-body);

  font-size: 0.56rem;

  letter-spacing: 0.2em;

  color: var(--muted);

  opacity: 0.4;

  transform: translateY(5px);

  transition:
    opacity 0.5s ease,
    transform 0.5s var(--ease-out);
}


/* =========================================================
   MAIN WORD
========================================================= */

.growth-word {
  display: inline-block;

  font-family: var(--font-display);

  font-weight: 500;

  font-size: clamp(3rem,
      3vw,
      6.8rem);

  line-height: 0.9;

  letter-spacing: -0.025em;

  color: var(--muted);

  opacity: 0.28;

  transform: translateX(0);

  transition:
    color 0.7s ease,
    opacity 0.7s ease,
    transform 0.8s var(--ease-out);
}


/* =========================================================
   ARROW
========================================================= */

.growth-arrow {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border: 1px solid var(--border);

  border-radius: 50%;

  color: var(--muted);

  font-size: 0.7rem;

  opacity: 0.3;

  transform: rotate(0deg);

  transition:
    color 0.5s ease,
    border-color 0.5s ease,
    opacity 0.5s ease,
    transform 0.7s var(--ease-out);
}


/* =========================================================
   ACTIVE STATE
========================================================= */

.growth-item.is-active {
  padding-left: 12px;
}


.growth-item.is-active .growth-number {
  color: var(--gold);

  opacity: 1;
}


.growth-item.is-active .growth-small {
  opacity: 0.8;

  transform: translateY(0);
}


.growth-item.is-active .growth-word {
  color: var(--lime);

  opacity: 1;

  transform: translateX(10px);
}


.growth-item.is-active .growth-arrow {
  color: var(--gold);

  border-color: var(--gold);

  opacity: 1;

  transform: rotate(45deg);
}


/* =========================================================
   HOVER
========================================================= */

.growth-item:hover .growth-word {
  opacity: 0.85;

  transform: translateX(7px);
}


.growth-item:hover .growth-arrow {
  opacity: 0.8;

  border-color: var(--gold);
}


/* =========================================================
   FOOTER
========================================================= */

.growth-footer {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-top: 35px;

  font-family: var(--font-body);

  font-size: 0.55rem;

  letter-spacing: 0.18em;

  color: var(--muted);

  opacity: 0.7;
}


.growth-footer-line {
  width: 60px;
  height: 1px;

  background: var(--border);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .why-grown-intro {
    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 55px;
  }

  .why-grown-description {
    max-width: 650px;
  }

  .growth-experience {
    padding-left: 35px;
  }

  .growth-item {
    grid-template-columns: 55px 1fr 45px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .why-grown::before {
    right: -50px;
    top: 20%;
  }


  .why-grown-intro {
    gap: 22px;

    margin-bottom: 45px;
  }


  .why-grown-description .body-copy {
    font-size: 0.92rem;

    line-height: 1.75;
  }


  .growth-experience {
    padding-left: 25px;
  }


  .growth-progress {
    bottom: 60px;
  }


  .growth-item {
    grid-template-columns: 38px 1fr 35px;

    min-height: 110px;

    padding: 18px 0;
  }


  .growth-item.is-active {
    padding-left: 7px;
  }


  .growth-number {
    font-size: 0.52rem;

    padding-top: 7px;
  }


  .growth-small {
    font-size: 0.48rem;

    letter-spacing: 0.14em;
  }


  .growth-word {
    font-size: clamp(2.8rem,
        12vw,
        4.5rem);
  }


  .growth-item.is-active .growth-word {
    transform: translateX(5px);
  }


  .growth-arrow {
    width: 30px;
    height: 30px;

    font-size: 0.55rem;
  }


  .growth-footer {
    font-size: 0.46rem;

    gap: 10px;
  }


  .growth-footer-line {
    width: 35px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .growth-experience {
    padding-left: 20px;
  }

  .growth-item {
    grid-template-columns: 32px 1fr 30px;
  }

  .growth-word {
    font-size: 2.6rem;
  }

  .growth-arrow {
    width: 26px;
    height: 26px;
  }

}

/* =========================================================
   10. WHY LABS
========================================================= */

.why-labs {
  position: relative;

  min-height: 220vh;

  overflow: clip;

  background: var(--black);
}


/* =========================================================
   STICKY BACKGROUND
========================================================= */

.labs-sticky-bg {
  position: sticky;

  top: 0;

  height: 100vh;

  width: 100%;

  overflow: hidden;

  pointer-events: none;

  z-index: 0;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.labs-bg-image {
  position: absolute;

  inset: -5%;

  background-image:
    url("../images/lab-background.webp");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  transform: scale(1.08);

  animation: labsImageBreath 14s ease-in-out infinite;

  will-change: transform;
}


/* Slow premium movement */

@keyframes labsImageBreath {

  0% {
    transform: scale(1.08);
  }

  50% {
    transform: scale(1.14);
  }

  100% {
    transform: scale(1.08);
  }

}


/* =========================================================
   DARK OVERLAY
========================================================= */

.labs-bg-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(5, 5, 5, 0.92) 0%,
      rgba(5, 5, 5, 0.68) 45%,
      rgba(5, 5, 5, 0.78) 100%);
}


/* =========================================================
   BOTTOM / TOP GRADIENT
========================================================= */

.labs-bg-gradient {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(180deg,
      var(--black) 0%,
      transparent 18%,
      transparent 72%,
      var(--black) 100%);
}


/* =========================================================
   HUGE BACKGROUND WORD
========================================================= */

.labs-bg-word {
  position: absolute;

  right: -5vw;
  bottom: 5vh;

  font-family: var(--font-display);

  font-size: clamp(12rem,
      30vw,
      32rem);

  line-height: 0.7;

  color: transparent;

  -webkit-text-stroke:
    1px rgba(205, 164, 46, 0.08);

  opacity: 0.8;

  user-select: none;
}


/* =========================================================
   CONTENT LAYER
========================================================= */

.why-labs-content {
  position: relative;

  z-index: 2;

  margin-top: -100vh;

  padding-top: 100vh;

  padding-bottom: 120px;
}


/* =========================================================
   INTRO
========================================================= */

.labs-intro {
  display: grid;

  grid-template-columns: 0.65fr 1.35fr;

  gap: clamp(50px,
      10vw,
      150px);

  align-items: start;

  min-height: 55vh;

  padding-top: 12vh;
}


.labs-intro-label {
  display: flex;

  flex-direction: column;

  gap: 18px;
}


.labs-intro-label .label {
  margin: 0;
}


.labs-intro-line {
  display: block;

  width: 55px;
  height: 1px;

  background: var(--gold);
}


.labs-intro-copy {
  max-width: 750px;
}


.labs-intro-copy .reveal-heading {
  margin-bottom: 30px;

  max-width: 700px;

  font-size: clamp(3rem,
      3vw,
      6rem);

  line-height: 0.95;
}


.labs-intro-copy .reveal-heading span {
  display: block;

  color: var(--gold);
}


.labs-intro-copy .body-copy {
  max-width: 55ch;

  color: var(--white);

  opacity: 0.72;

  line-height: 1.8;
}


/* =========================================================
   CARDS
========================================================= */

.lab-cards {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 24px;

  max-width: 1100px;

  margin-left: auto;

  margin-top: 10vh;
}


/* =========================================================
   CARD
========================================================= */

.lab-card {
  position: relative;

  min-height: 440px;

  padding: 30px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  overflow: hidden;

  border: 1px solid rgba(205, 164, 46, 0.22);

  background:
    linear-gradient(145deg,
      rgba(15, 14, 11, 0.82),
      rgba(5, 5, 5, 0.64));

  backdrop-filter: blur(14px);

  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28);

  transform:
    translateY(100px);

  opacity: 0;

  transition:
    transform 1s var(--ease-out),
    opacity 1s ease,
    border-color 0.5s ease;
}


/* =========================================================
   CARD REVEALED
========================================================= */

.lab-card.is-visible {
  transform: translateY(0);

  opacity: 1;
}


/* Stagger */

.lab-card:nth-child(1) {
  transition-delay: 0.05s;
}

.lab-card:nth-child(2) {
  transition-delay: 0.15s;
}

.lab-card:nth-child(3) {
  transition-delay: 0.25s;
}

.lab-card:nth-child(4) {
  transition-delay: 0.35s;
}


/* =========================================================
   CARD GLOW
========================================================= */

.lab-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%),
      rgba(205, 164, 46, 0.13),
      transparent 65%);

  opacity: 0;

  transition:
    opacity 0.5s ease;

  pointer-events: none;
}


.lab-card:hover::before {
  opacity: 1;
}


/* =========================================================
   CARD TOP
========================================================= */

.lab-card-top {
  position: relative;

  z-index: 2;

  display: flex;

  justify-content: space-between;

  align-items: center;
}


.lab-card-number {
  font-family: var(--font-display);

  font-size: 1.2rem;

  color: var(--gold);
}


.lab-card-category {
  font-family: var(--font-body);

  font-size: 0.55rem;

  letter-spacing: 0.18em;

  color: var(--muted);
}


/* =========================================================
   ICON
========================================================= */

.lab-card-icon {
  position: relative;

  z-index: 2;

  width: 68px;
  height: 68px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid var(--border);

  border-radius: 50%;

  color: var(--gold);

  font-size: 1.35rem;

  transition:
    transform 0.7s var(--ease-out),
    background 0.5s ease;
}


.lab-card:hover .lab-card-icon {
  transform:
    rotate(8deg) scale(1.08);

  background:
    rgba(205, 164, 46, 0.08);
}


/* =========================================================
   CONTENT
========================================================= */

.lab-card-content {
  position: relative;

  z-index: 2;

  max-width: 390px;
}


.lab-card h3 {
  margin: 0 0 14px;

  font-family: var(--font-display);

  font-size: clamp(2rem,
      3vw,
      3rem);

  font-weight: 500;

  line-height: 1;

  color: var(--white);
}


.lab-card p {
  margin: 0;

  max-width: 38ch;

  color: var(--muted);

  font-size: 0.92rem;

  line-height: 1.7;
}


/* =========================================================
   GOLD LINE
========================================================= */

.lab-card-line {
  position: absolute;

  left: 30px;
  right: 30px;

  bottom: 77px;

  height: 1px;

  background:
    linear-gradient(90deg,
      var(--gold),
      transparent);

  opacity: 0.3;
}


/* =========================================================
   FOOTER
========================================================= */

.lab-card-footer {
  position: relative;

  z-index: 2;

  display: flex;

  justify-content: space-between;

  align-items: center;

  padding-top: 22px;

  font-family: var(--font-body);

  font-size: 0.55rem;

  letter-spacing: 0.18em;

  color: var(--muted);
}


.lab-card-footer i {
  color: var(--gold);

  font-size: 0.7rem;

  transition:
    transform 0.5s var(--ease-out);
}


.lab-card:hover .lab-card-footer i {
  transform:
    translate(3px, -3px);
}


/* =========================================================
   SECTION FOOTER
========================================================= */

.labs-footer {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-top: 70px;

  font-family: var(--font-body);

  font-size: 0.55rem;

  letter-spacing: 0.18em;

  color: var(--muted);
}


.labs-footer-line {
  width: 60px;
  height: 1px;

  background: var(--border);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .why-labs {
    min-height: 190vh;
  }

  .labs-intro {
    grid-template-columns: 1fr;

    gap: 25px;

    min-height: 45vh;
  }

  .lab-cards {
    margin-top: 5vh;
  }

  .lab-card {
    min-height: 400px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .why-labs {
    min-height: auto;

    background: var(--black);
  }


  .labs-sticky-bg {
    position: absolute;

    top: 0;

    height: 75vh;
  }


  .labs-bg-image {
    background-position: center;

    transform: scale(1.05);

    animation-duration: 18s;
  }


  .labs-bg-overlay {
    background:
      linear-gradient(180deg,
        rgba(5, 5, 5, 0.55) 0%,
        rgba(5, 5, 5, 0.78) 55%,
        var(--black) 100%);
  }


  .labs-bg-gradient {
    background:
      linear-gradient(180deg,
        transparent 20%,
        var(--black) 95%);
  }


  .labs-bg-word {
    right: -20px;

    bottom: 10%;

    font-size: 10rem;
  }


  .why-labs-content {
    margin-top: 0;

    padding-top: 0;

    padding-bottom: 70px;
  }


  .labs-intro {
    display: block;

    min-height: 80vh;

    padding-top: 22vh;
  }


  .labs-intro-label {
    margin-bottom: 30px;
  }


  .labs-intro-copy .reveal-heading {
    font-size: clamp(2.7rem,
        11vw,
        4rem);

    line-height: 0.96;
  }


  .labs-intro-copy .body-copy {
    font-size: 0.9rem;

    line-height: 1.7;
  }


  .lab-cards {
    display: flex;

    flex-direction: column;

    gap: 16px;

    margin-top: 0;
  }


  .lab-card {
    min-height: 360px;

    padding: 24px;

    transform:
      translateY(60px);
  }


  .lab-card-icon {
    width: 58px;
    height: 58px;
  }


  .lab-card h3 {
    font-size: 2.2rem;
  }


  .lab-card p {
    font-size: 0.86rem;
  }


  .lab-card-line {
    left: 24px;
    right: 24px;

    bottom: 70px;
  }


  .labs-footer {
    margin-top: 45px;

    font-size: 0.48rem;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .labs-bg-image {
    animation: none;

    transform: scale(1.05);
  }

  .lab-card {
    opacity: 1;

    transform: none;

    transition: none;
  }

}


/* =========================================================
   11. SERVICES — PREMIUM EDITORIAL SHOWCASE
========================================================= */

.services {
  position: relative;

  overflow: hidden;

  background: var(--black);
}


/* =========================================================
   BACKGROUND ATMOSPHERE
========================================================= */

.services::before {
  content: "FORMULA";

  position: absolute;

  top: 8%;
  right: -8%;

  font-family: var(--font-display);

  font-size: clamp(10rem,
      28vw,
      30rem);

  line-height: 0.7;

  color: transparent;

  -webkit-text-stroke:
    1px rgba(205, 164, 46, 0.035);

  pointer-events: none;

  user-select: none;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.services-heading {
  display: grid;

  grid-template-columns: 0.65fr 1.35fr;

  gap: clamp(50px,
      10vw,
      150px);

  align-items: start;

  margin-bottom: 100px;
}


.services-heading-label {
  display: flex;

  flex-direction: column;

  gap: 18px;
}


.services-heading-label .label {
  margin: 0;
}


.services-heading-line {
  width: 55px;
  height: 1px;

  background: var(--gold);
}


.services-heading-copy {
  max-width: 750px;
}


.services-heading-copy .reveal-heading {
  margin-bottom: 30px;

  max-width: 720px;

  font-size: clamp(3rem,
      2.8vw,
      6rem);

  line-height: 0.95;
}


.services-heading-copy .body-copy {
  max-width: 55ch;

  color: var(--muted);

  line-height: 1.8;
}


/* =========================================================
   SHOWCASE
========================================================= */

.services-showcase {
  position: relative;
}


/* =========================================================
   SCENE
========================================================= */

.service-scene {
  position: relative;

  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr) minmax(0, 1.1fr);

  align-items: center;

  min-height: 760px;

  margin-bottom: 10vh;

  padding: 80px 0;
}


/* Alternating layout */

.service-scene-left {
  direction: rtl;
}

.service-scene-left>* {
  direction: ltr;
}


/* =========================================================
   LARGE BACKGROUND NUMBER
========================================================= */

.service-scene-number {
  position: absolute;

  top: 15px;

  font-family: var(--font-display);

  font-size: clamp(12rem,
      26vw,
      25rem);

  line-height: 0.7;

  color: transparent;

  -webkit-text-stroke:
    1px rgba(205, 164, 46, 0.06);

  pointer-events: none;

  user-select: none;

  z-index: 0;
}


.service-scene-right .service-scene-number {
  right: -5%;
}


.service-scene-left .service-scene-number {
  left: -5%;
}


/* =========================================================
   CONTENT
========================================================= */

.service-scene-content {
  position: relative;

  z-index: 3;

  padding: 40px clamp(20px,
      5vw,
      90px);
}


.service-kicker {
  display: block;

  margin-bottom: 24px;

  font-family: var(--font-body);

  font-size: 0.58rem;

  letter-spacing: 0.2em;

  color: var(--gold);
}


.service-scene-content h3 {
  margin: 0 0 28px;

  font-family: var(--font-display);

  font-size: clamp(3.2rem,
      2.8vw,
      6.5rem);

  font-weight: 500;

  line-height: 0.9;

  letter-spacing: -0.025em;

  color: var(--white);
}


.service-scene-content h3 span {
  display: block;

  color: var(--gold);
}


.service-scene-content p {
  max-width: 42ch;

  margin: 0;

  color: var(--muted);

  font-family: var(--font-body);

  font-size: 0.98rem;

  line-height: 1.85;
}


/* =========================================================
   DETAIL
========================================================= */

.service-detail {
  display: flex;

  align-items: center;

  gap: 14px;

  margin-top: 40px;

  font-family: var(--font-body);

  font-size: 0.55rem;

  letter-spacing: 0.18em;

  color: var(--muted);
}


.service-detail span:first-child {
  color: var(--gold);
}


.service-detail i {
  display: block;

  width: 45px;
  height: 1px;

  background: var(--border);
}


/* =========================================================
   IMAGE
========================================================= */

.service-scene-image {
  position: relative;

  z-index: 2;

  width: 100%;

  aspect-ratio: 4 / 5;

  max-height: 650px;

  overflow: hidden;

  background: var(--surface);

  border: 1px solid var(--border);

  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.4);
}


/* =========================================================
   IMAGE INNER
========================================================= */

.service-image-inner {
  position: absolute;

  inset: -5%;

  overflow: hidden;
}


.service-image-inner img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  filter:
    brightness(0.72) saturate(0.82) contrast(1.05);

  transform: scale(1.12);

  transition:
    transform 1.8s var(--ease-out),
    filter 1.2s ease;
}


/* =========================================================
   ACTIVE IMAGE
========================================================= */

.service-scene.is-visible .service-image-inner img {
  transform: scale(1);
}


/* =========================================================
   IMAGE HOVER
========================================================= */

.service-scene-image:hover .service-image-inner img {
  transform: scale(1.06);

  filter:
    brightness(0.82) saturate(0.95) contrast(1.04);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.service-image-overlay {
  position: absolute;

  inset: 0;

  z-index: 2;

  background:
    linear-gradient(135deg,
      rgba(5, 5, 5, 0.08),
      transparent 45%,
      rgba(5, 5, 5, 0.48));

  pointer-events: none;
}


/* =========================================================
   IMAGE GOLD EDGE
========================================================= */

.service-scene-image::before {
  content: "";

  position: absolute;

  z-index: 5;

  inset: 18px;

  border: 1px solid rgba(205, 164, 46, 0.28);

  pointer-events: none;
}


/* =========================================================
   IMAGE LABEL
========================================================= */

.service-image-label {
  position: absolute;

  z-index: 6;

  bottom: 25px;
  left: 25px;

  font-family: var(--font-body);

  font-size: 0.55rem;

  letter-spacing: 0.18em;

  color: var(--white);

  opacity: 0.75;
}


/* =========================================================
   DESKTOP REVEAL — FROM OPPOSITE SIDES
========================================================= */

.service-scene-content {
  opacity: 0;

  transform: translateX(-100px);

  transition:
    opacity 1s ease,
    transform 1.1s var(--ease-out);
}


.service-scene-image {
  opacity: 0;

  transform: translateX(100px);

  transition:
    opacity 1s ease,
    transform 1.2s var(--ease-out);
}


/* LEFT SCENE */

.service-scene-left .service-scene-content {
  transform: translateX(100px);
}


.service-scene-left .service-scene-image {
  transform: translateX(-100px);
}


/* VISIBLE */

.service-scene.is-visible .service-scene-content {
  opacity: 1;

  transform: translateX(0);
}


.service-scene.is-visible .service-scene-image {
  opacity: 1;

  transform: translateX(0);
}


/* =========================================================
   ACTIVE SCENE NUMBER
========================================================= */

.service-scene.is-visible .service-scene-number {
  animation:
    serviceNumberReveal 1.4s var(--ease-out) both;
}


@keyframes serviceNumberReveal {

  from {
    opacity: 0;

    transform:
      translateY(50px) scale(0.95);
  }

  to {
    opacity: 1;

    transform:
      translateY(0) scale(1);
  }

}


/* =========================================================
   SERVICES FOOTER
========================================================= */

.services-footer {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-top: 40px;

  font-family: var(--font-body);

  font-size: 0.55rem;

  letter-spacing: 0.18em;

  color: var(--muted);
}


.services-footer-line {
  width: 60px;
  height: 1px;

  background: var(--border);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .services-heading {
    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 60px;
  }


  .service-scene {
    grid-template-columns:
      1fr 1fr;

    min-height: 600px;

    margin-bottom: 70px;

    padding: 50px 0;
  }


  .service-scene-content {
    padding: 25px;
  }


  .service-scene-content h3 {
    font-size: clamp(2.8rem,
        6vw,
        4.5rem);
  }


  .service-scene-number {
    font-size: 15rem;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .services {
    overflow: hidden;
  }


  .services::before {
    top: 5%;

    right: -30%;

    font-size: 11rem;
  }


  .services-heading {
    margin-bottom: 55px;
  }


  .services-heading-copy .reveal-heading {
    font-size: clamp(2.7rem,
        11vw,
        4rem);

    line-height: 0.96;
  }


  .services-heading-copy .body-copy {
    font-size: 0.9rem;

    line-height: 1.7;
  }


  /* ---------------------------------
       SCENE
    --------------------------------- */

  .service-scene,
  .service-scene-left,
  .service-scene-right {

    display: flex;

    flex-direction: column;

    direction: ltr;

    min-height: auto;

    margin-bottom: 100px;

    padding: 40px 0;
  }


  /* ---------------------------------
       IMAGE FIRST ON MOBILE
    --------------------------------- */

  .service-scene-image {

    order: 1;

    width: 100%;

    aspect-ratio: 4 / 5;

    max-height: none;

    transform: translateX(70px);

    opacity: 0;
  }


  /* Content */

  .service-scene-content {

    order: 2;

    width: 100%;

    padding:
      35px 8px 0;

    transform: translateX(-70px);

    opacity: 0;
  }


  /* ---------------------------------
       MOBILE VISIBLE
    --------------------------------- */

  .service-scene.is-visible .service-scene-image {

    transform: translateX(0);

    opacity: 1;
  }


  .service-scene.is-visible .service-scene-content {

    transform: translateX(0);

    opacity: 1;
  }


  /* ---------------------------------
       NUMBER
    --------------------------------- */

  .service-scene-number {

    top: 5px;

    left: auto !important;
    right: -30px !important;

    font-size: 12rem;

    z-index: 0;
  }


  /* ---------------------------------
       KICKER
    --------------------------------- */

  .service-kicker {
    margin-bottom: 18px;

    font-size: 0.52rem;
  }


  /* ---------------------------------
       TITLE
    --------------------------------- */

  .service-scene-content h3 {

    margin-bottom: 20px;

    font-size: clamp(2.7rem,
        12vw,
        4rem);

    line-height: 0.92;
  }


  /* ---------------------------------
       DESCRIPTION
    --------------------------------- */

  .service-scene-content p {

    font-size: 0.88rem;

    line-height: 1.7;
  }


  /* ---------------------------------
       IMAGE BORDER
    --------------------------------- */

  .service-scene-image::before {

    inset: 12px;
  }


  .service-image-label {

    bottom: 18px;
    left: 18px;

    font-size: 0.48rem;
  }


  /* ---------------------------------
       DETAIL
    --------------------------------- */

  .service-detail {

    margin-top: 28px;

    font-size: 0.48rem;
  }


  /* ---------------------------------
       FOOTER
    --------------------------------- */

  .services-footer {

    margin-top: 0;

    font-size: 0.48rem;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .service-scene-image {

    aspect-ratio: 3 / 4;
  }


  .service-scene-content {

    padding-top: 28px;
  }


  .service-scene-content h3 {

    font-size: 2.55rem;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .service-scene-content,
  .service-scene-image {

    opacity: 1;

    transform: none;

    transition: none;
  }


  .service-image-inner img {

    transform: scale(1);

    transition: none;
  }

}

/* ---------- 12. MIXOLAB ---------- */
.mixolab {
  background: var(--surface);
}

.mixolab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mixolab-visual {
  position: relative;
  aspect-ratio: 1/1;
}

.mixolab-svg {
  width: 100%;
  height: 100%;
}

.mixolab-lines line {
  stroke: var(--border);
  stroke-width: 1;
}

.mixolab-core {
  fill: #cda42e38;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.mixolab-nodes circle {
  fill: var(--lime);
}

.node-label {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}


/* =========================================================
   13. SIGNATURE EXPERIENCE
========================================================= */

.signature-experience {
  position: relative;
  padding-bottom: 70px;
  overflow: hidden;
}

.signature-experience .section-inner {
  padding-bottom: 0;
}


/* =========================================================
   TRACK
========================================================= */

.signature-track {
  display: flex;
  gap: 24px;

  width: max-content;

  padding: 60px var(--gutter);

  overflow: visible;

  user-select: none;
  -webkit-user-select: none;

  pointer-events: none;
}


/* =========================================================
   PANEL
========================================================= */

.signature-panel {
  position: relative;

  flex: 0 0 560px;

  width: 560px;
  height: 700px;

  overflow: hidden;

  border-radius: 6px;

  background: var(--surface);
}


/* =========================================================
   IMAGE
========================================================= */

.signature-panel img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transform: scale(1.03);

  filter:
    brightness(0.78) saturate(0.88);

  animation:
    signatureImageZoom 8s ease-in-out infinite alternate;
}


@keyframes signatureImageZoom {

  0% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1.08);
  }

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.signature-panel::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: 1;

  pointer-events: none;

  background:
    linear-gradient(180deg,
      rgba(5, 5, 5, 0.05) 20%,
      rgba(5, 5, 5, 0.12) 45%,
      rgba(5, 5, 5, 0.92) 100%);
}


/* =========================================================
   PREMIUM BORDER
========================================================= */

.signature-panel::after {
  content: "";

  position: absolute;

  inset: 16px;

  z-index: 4;

  border: 1px solid rgba(205, 164, 46, 0.28);

  pointer-events: none;
}


/* =========================================================
   CAPTION
========================================================= */

.signature-caption {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  z-index: 5;

  padding: 90px 30px 30px;
}


.signature-caption h3 {
  margin: 0 0 8px;

  font-family: var(--font-display);

  font-size: 1.8rem;

  font-weight: 600;

  line-height: 1.05;

  color: var(--white);
}


.signature-caption h3::after {
  content: "";

  display: block;

  width: 36px;
  height: 1px;

  margin-top: 14px;

  background: var(--gold);
}


.signature-caption p {
  max-width: 420px;

  margin: 0;

  color: var(--muted);

  font-size: 0.9rem;

  line-height: 1.6;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

  .signature-track {
    gap: 18px;

    padding-top: 45px;
    padding-bottom: 45px;
  }

  .signature-panel {
    flex-basis: 480px;

    width: 480px;
    height: 600px;
  }

}


@media (max-width: 600px) {

  .signature-experience {
    padding-bottom: 40px;
  }

  .signature-track {
    gap: 14px;

    padding-top: 35px;
    padding-bottom: 35px;
  }

  .signature-panel {

    flex: 0 0 82vw;

    width: 82vw;

    height: 110vw;

    max-height: 560px;

    border-radius: 4px;
  }

  .signature-panel::after {
    inset: 12px;
  }

  .signature-caption {
    padding: 80px 20px 22px;
  }

  .signature-caption h3 {
    font-size: 1.45rem;
  }

  .signature-caption p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .signature-panel img {
    animation: none;
  }

}




/* =========================================================
   14. EVENT TYPES — PREMIUM EDITORIAL
========================================================= */
/* ========================================================= EVENT TYPES ========================================================= */
.event-types {
  position: relative;
  background: var(--surface);
  overflow: hidden;
}

/* ========================================================= LIST ========================================================= */
.event-list {
  position: relative;
  max-width: 850px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
  counter-reset: event;
}

.event-list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 94px;
  padding: 20px 60px 20px 58px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 400;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  transition: color .45s ease, padding-left .45s ease, background .45s ease;
}

.event-list li::before {
  counter-increment: event;
  content: counter(event, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: .5;
}

/* ========================================================= HOVER ========================================================= */
.event-list li:hover,
.event-list li.is-active {
  color: var(--lime);
  padding-left: 78px;
  background: linear-gradient(90deg, rgba(205, 164, 46, .055), transparent 75%);
}

/* ========================================================= PREVIEW ========================================================= */
.event-preview {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  width: clamp(280px, 23vw, 360px);
  height: clamp(360px, 31vw, 470px);
  transform: translateY(-50%) rotate(2deg);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: opacity .45s ease, transform .7s ease;
}

.event-preview.is-visible {
  opacity: 1;
  transform: translateY(-50%) rotate(0deg);
}

/* ========================================================= IMAGE WRAPPER ========================================================= */
.event-preview-images {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* ========================================================= BOTH IMAGES ========================================================= */
.preview-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.84) saturate(.9);
  will-change: transform;
}

/* Current */
.preview-image.current {
  z-index: 1;
  transform: translateX(0);
}

/* Next */
.preview-image.next {
  z-index: 2;
  transform: translateX(100%);
}

/* ========================================================= NEXT SLIDE ========================================================= */
.event-preview.animating-next .preview-image.current {
  animation: currentToLeft .6s ease forwards;
}

.event-preview.animating-next .preview-image.next {
  animation: nextFromRight .6s ease forwards;
}

@keyframes currentToLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes nextFromRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

/* ========================================================= PREVIOUS SLIDE ========================================================= */
.event-preview.animating-prev .preview-image.current {
  animation: currentToRight .6s ease forwards;
}

.event-preview.animating-prev .preview-image.next {
  animation: nextFromLeft .6s ease forwards;
}

@keyframes currentToRight {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes nextFromLeft {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

/* ========================================================= DECORATIVE FRAME ========================================================= */
.event-preview::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(205, 164, 46, .28);
  z-index: 5;
  pointer-events: none;
}

/* ========================================================= DARK GRADIENT ========================================================= */
.event-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, .05), rgba(5, 5, 5, .2) 50%, rgba(5, 5, 5, .55));
  z-index: 4;
  pointer-events: none;
}

/* ========================================================= NUMBER ========================================================= */
.event-preview-number {
  position: absolute;
  left: 30px;
  bottom: 27px;
  z-index: 10;
  color: white;
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: 3px;
}

/* ========================================================= CORNER ========================================================= */
.event-preview-corner {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 28px;
  height: 28px;
  z-index: 10;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

/* ========================================================= TABLET + MOBILE ========================================================= */
@media (max-width: 850px) {
  .event-preview {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 420px;
    height: 420px;
    margin: 50px auto 0;
    transform: none !important;
    opacity: 1 !important;
    display: block;
    visibility: visible;
  }
}

/* ========================================================= MOBILE ========================================================= */
@media (max-width: 600px) {
  .event-types {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .event-list li {
    min-height: 76px;
    padding: 18px 25px 18px 44px;
    font-size: clamp(1.75rem, 9vw, 2.5rem);
  }

  .event-list li:hover,
  .event-list li.is-active {
    padding-left: 54px;
  }

  .event-preview {
    height: 390px;
    margin-top: 40px;
  }

  .event-preview::before {
    inset: 10px;
  }
}

/* =========================================================
   MOBILE / TABLET INLINE IMAGE
========================================================= */

.mobile-event-preview {
  display: none;
}


/* =========================================================
   MOBILE + TABLET
========================================================= */

@media (max-width: 850px) {

  .event-list li.event-item {

    display: block;

    min-height: 0;

    padding: 22px 25px 22px 44px;

    overflow: hidden;

  }


  .event-list li.event-item>span {

    display: block;

    font-family: var(--font-display);

    font-size:
      clamp(1.75rem, 8vw, 2.5rem);

    line-height: 1.1;

  }


  /* -----------------------------------------
       IMAGE
    ----------------------------------------- */

  .event-list li.event-item .mobile-event-preview {

    position: relative;

    display: none;

    width: 100%;

    height: 390px;

    margin-top: 25px;

    overflow: hidden;

    border-radius: 5px;

    background: var(--black);

  }


  /* Show image only for active item */

  .event-list li.event-item.is-active .mobile-event-preview {

    display: block;

  }


  .event-list li.event-item .mobile-event-preview img {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    opacity: 1;

  }


  /* -----------------------------------------
       Decorative frame
    ----------------------------------------- */

  .event-list li.event-item .mobile-event-preview::before {

    content: "";

    position: absolute;

    inset: 10px;

    border:
      1px solid rgba(205, 164, 46, .3);

    z-index: 2;

    pointer-events: none;

  }


  /* -----------------------------------------
       SLIDE IN
    ----------------------------------------- */

  .event-list li.event-item.preview-enter .mobile-event-preview {

    animation:
      mobilePreviewOpen .55s cubic-bezier(.22, .61, .36, 1) forwards;

  }


  @keyframes mobilePreviewOpen {

    from {

      opacity: 0;

      transform:
        translateX(100%);

    }

    to {

      opacity: 1;

      transform:
        translateX(0);

    }

  }


  /* -----------------------------------------
       ACTIVE ITEM
    ----------------------------------------- */

  .event-list li.event-item.is-active {

    color: var(--lime);

    padding-left: 54px;

  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

  .event-list li.event-item .mobile-event-preview {

    height: 330px;

    margin-top: 20px;

  }

}

/* ---------- 15. USP ---------- */
.usp-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.usp-item {
  background: var(--black);
  padding: 40px 32px;
}

.usp-num {
  font-family: var(--font-display);
  color: var(--lime);
  font-size: 1rem;
}

.usp-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 16px 0 10px;
}

.usp-item p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---------- 16. GALLERY ---------- */
.gallery-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item.span-tall {
  grid-row: span 2;
}

.gallery-item.span-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(5, 5, 5, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

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

.lightbox img {
  max-width: min(900px, 90vw);
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 32px;
  font-size: 1.6rem;
  color: var(--white);
}

/* ---------- 17. BRAND STORY ---------- */
.brand-story {
  text-align: center;
}

.brand-story .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.equation {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--muted);
}

.equation .op {
  color: var(--lime);
}

.equation-result {
  color: var(--white);
  font-weight: 500;
}

/* ---------- 18. SUSTAINABILITY ---------- */
.sustainability {
  background: linear-gradient(180deg, #0B140A, #060905);
  position: relative;
  overflow: hidden;
}

.sustain-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sustain-list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
  max-width: 820px;
}

.sustain-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.96rem;
}

.sustain-list i {
  color: var(--lime);
}

/* ---------- 19. FINAL CTA ---------- */

.final-cta {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
}


/* ==========================================
   VIDEO GRID
========================================== */

.cta-video-grid {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  overflow: hidden;
}


/* ==========================================
   INDIVIDUAL VIDEOS
========================================== */

.cta-video-grid video {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  margin: 0;
  padding: 0;

  min-width: 0;
  min-height: 0;

  filter: brightness(0.85) saturate(0.9);

  transform: scale(1.01);
}


/* ==========================================
   OPTIONAL VIDEO SEPARATORS
========================================== */

.cta-video-grid video {
  border: 1px solid rgba(255, 255, 255, 0.04);
}


/* ==========================================
   DARK OVERLAY
========================================== */

.cta-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background:
  linear-gradient(208deg, rgb(5 5 5 / 12%), rgb(5 5 5 / 12%), rgb(5 5 5 / 21%));

  pointer-events: none;
}


/* ==========================================
   CENTER CONTENT
========================================== */

.cta-content {
  position: relative;

  z-index: 2;

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;

  width: 100%;
}


/* ==========================================
   CTA BUTTONS
========================================== */

.cta-content .hero-actions {
  justify-content: center;
  margin-top: 32px;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 850px) {

  .final-cta {
    min-height: 75vh;
  }

  .cta-video-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .cta-overlay {
    background: rgba(5, 5, 5, 0.72);
  }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 600px) {

  .final-cta {
    min-height: 80vh;
  }

  .cta-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }

  .cta-video-grid video {
    object-fit: cover;
  }

  .cta-overlay {
    background: rgb(5 5 5 / 9%);
  }

  .cta-content {
    padding: 60px 20px;
  }

}

/* ---------- 20. CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.contact-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.contact-details span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.contact-details a {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.contact-details a:hover {
  color: var(--lime);
}

.quote-form {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  background: rgba(244, 244, 239, 0.02);
}

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

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color .25s;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--lime);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.btn-full {
  width: 100%;
  margin-top: 6px;
}

.form-status {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.form-status.is-success {
  background: rgba(166, 214, 90, 0.12);
  color: var(--lime);
  border: 1px solid rgba(166, 214, 90, 0.3);
}

.form-status.is-error {
  background: rgba(200, 80, 80, 0.1);
  color: #E38585;
  border: 1px solid rgba(200, 80, 80, 0.3);
}

/* ---------- 21. FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px var(--gutter) 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.footer-logo-mark {
  width: 44px;
  height: auto;
  object-fit: contain;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.footer-logo em {
  color: var(--gold);
  font-style: normal;
}

.footer-tagline {
  width: 100%;
}

.footer-tagline {
  color: var(--muted);
  margin-top: 10px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a:hover {
  color: var(--lime);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  text-align: right;
}

.footer-contact a:hover {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--gutter);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

/* ---------- 22. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform .3s var(--ease-out), background .3s, color .3s, border-color .3s;
}

.btn-primary {
  background: var(--lime);
  color: var(--black);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #B7E36E;
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn-ghost {
  border: 1px solid rgba(244, 244, 239, 0.3);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn-glow {
  background: var(--lime);
  color: var(--black);
  position: relative;
  box-shadow: 0 0 0 0 rgba(166, 214, 90, 0.5);
  animation: glow-pulse 2.6s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(166, 214, 90, 0.35);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(166, 214, 90, 0);
  }
}

/* ---------- Scroll-triggered base states ---------- */
.fade-up,
.reveal-heading,
.equation,
.sustain-list,
.usp-grid,
.lab-cards,
.event-list {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

.fade-up.is-visible,
.reveal-heading.is-visible,
.equation.is-visible,
.sustain-list.is-visible,
.usp-grid.is-visible,
.lab-cards.is-visible,
.event-list.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 23. RESPONSIVE ---------- */
@media (max-width:1199px) {
  .lab-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-preview {
    display: none;
  }

  .mixolab-grid {
    grid-template-columns: 1fr;
  }

  .mixolab-visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .sustain-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width:900px) {

  .nav-desktop,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-visual {
    order: -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-preview {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-contact {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width:767px) {
  .section-inner {
    padding: 80px var(--gutter);
  }

  .lab-cards {
    grid-template-columns: 1fr;
  }

  .usp-grid {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .sustain-list {
    grid-template-columns: 1fr;
  }

  .signature-panel {
    flex: 0 0 88vw;
  }

  .quote-form {
    padding: 26px;
  }

  .cursor-dot,
  .cursor-label {
    display: none;
  }
}

/* ---------- 24. ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .hero-headline .line span {
    transform: none;
  }

  .fade-up,
  .reveal-heading,
  .equation,
  .sustain-list,
  .usp-grid,
  .lab-cards,
  .event-list {
    opacity: 1;
    transform: none;
  }
}