/* ============================================
   SOLVENDRA DIGITAL - MAIN STYLESHEET
   Duotone Bold: Forest Green + Lime Yellow
   ============================================ */

@layer base, layout, components, utilities;

@layer base {
  :root {
    --c-forest: #1a3a2a;
    --c-lime: #c8e63c;
    --c-cream: #f5f0e8;
    --c-dark: #0f2218;
    --c-lime-dark: #a8c520;
    --c-forest-mid: #2d5a3d;
    --c-forest-light: #3d7a52;
    --c-cream-dark: #ede8e0;
    --c-text-muted: rgba(26,58,42,0.6);

    --ff-head: 'Bitter', serif;
    --ff-body: 'Plus Jakarta Sans', sans-serif;

    --r-xs: 4px;
    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 40px;
    --r-2xl: 60px;

    --sp-xs: 8px;
    --sp-sm: 16px;
    --sp-md: 24px;
    --sp-lg: 48px;
    --sp-xl: 80px;
    --sp-2xl: 120px;

    --shadow-xs: 0 1px 3px rgba(10,30,18,0.08);
    --shadow-sm: 0 2px 8px rgba(10,30,18,0.08), 0 4px 16px rgba(10,30,18,0.06);
    --shadow-card: 0 2px 8px rgba(10,30,18,0.08), 0 8px 32px rgba(10,30,18,0.12), 0 24px 64px rgba(10,30,18,0.06);
    --shadow-float: 0 4px 16px rgba(10,30,18,0.14), 0 16px 48px rgba(10,30,18,0.18);
    --shadow-pill: 0 2px 12px rgba(10,30,18,0.22), 0 8px 24px rgba(10,30,18,0.16);
    --shadow-lime: 0 4px 20px rgba(200,230,60,0.35), 0 2px 8px rgba(200,230,60,0.2);

    --trans-fast: 0.15s ease;
    --trans-base: 0.25s ease;
    --trans-slow: 0.4s cubic-bezier(0.4,0,0.2,1);
  }

  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    font-family: var(--ff-body);
    background: var(--c-cream);
    color: var(--c-forest);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    & main {
      flex: 1;
    }
  }

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

  a {
    color: inherit;
    transition: color var(--trans-base);
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--ff-head);
    line-height: 1.15;
    letter-spacing: -0.025em;
  }
}

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

@layer components {

  .siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--trans-slow);

    &.scrolled {
      transform: translateY(-100%);
    }

    & .siteHeader_logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;

      & img {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
      }

      & .siteHeader_logoText {
        font-family: var(--ff-head);
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--c-cream);
        letter-spacing: -0.02em;
      }
    }

    & .siteHeader_nav {
      display: flex;
      align-items: center;
      gap: 4px;

      & a, & .siteHeader_navLink {
        color: var(--c-cream);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        padding: 8px 16px;
        border-radius: var(--r-sm);
        transition: all var(--trans-base);
        cursor: pointer;

        &:hover {
          background: rgba(200,230,60,0.15);
          color: var(--c-lime);
        }
      }
    }

    & .siteHeader_cta {
      background: var(--c-lime);
      color: var(--c-forest);
      padding: 10px 22px;
      border-radius: var(--r-xl);
      font-weight: 600;
      font-size: 0.88rem;
      text-decoration: none;
      transition: all var(--trans-base);
      box-shadow: var(--shadow-lime);

      &:hover {
        background: var(--c-lime-dark);
        transform: translateY(-1px);
        box-shadow: 0 6px 24px rgba(200,230,60,0.45);
      }
    }

    & .siteHeader_hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      color: var(--c-cream);
      border-radius: var(--r-sm);
      transition: background var(--trans-base);

      &:hover {
        background: rgba(200,230,60,0.15);
      }
    }
  }

  
  .siteHeader_navItem--mega {
    position: relative;

    & .megaMenu {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%) translateY(-8px);
      width: 520px;
      background: var(--c-forest);
      border: 1px solid rgba(200,230,60,0.2);
      border-radius: var(--r-lg);
      padding: 28px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
      box-shadow: var(--shadow-float);
      pointer-events: none;
    }

    &:hover .megaMenu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
      pointer-events: all;
    }
  }

  .megaMenu_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .megaMenu_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: background var(--trans-base);

    &:hover {
      background: rgba(200,230,60,0.1);
    }

    & .megaMenu_itemIcon {
      width: 36px;
      height: 36px;
      background: rgba(200,230,60,0.15);
      border-radius: var(--r-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--c-lime);
      font-size: 1rem;
      transition: background var(--trans-base);
    }

    &:hover .megaMenu_itemIcon {
      background: rgba(200,230,60,0.25);
    }

    & .megaMenu_itemText {
      & strong {
        display: block;
        color: var(--c-cream);
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 2px;
        font-family: var(--ff-body);
      }

      & span {
        color: rgba(245,240,232,0.6);
        font-size: 0.78rem;
      }
    }
  }

  
  .miniNav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: all var(--trans-slow);
    transform: translateY(-8px);

    &.visible {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
    }

    & .miniNav_pill {
      background: var(--c-forest);
      border: 1px solid rgba(200,230,60,0.25);
      border-radius: var(--r-xl);
      padding: 10px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      box-shadow: var(--shadow-pill);
      transition: all var(--trans-base);

      &:hover {
        background: var(--c-forest-mid);
        box-shadow: var(--shadow-float);
      }

      & span {
        color: var(--c-lime);
        font-size: 0.82rem;
        font-weight: 600;
        font-family: var(--ff-body);
      }

      & i {
        color: var(--c-lime);
        font-size: 1rem;
      }
    }
  }

  
  .mobileMenu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;

    & .mobileMenu_overlay {
      position: absolute;
      inset: 0;
      background: var(--c-dark);
      clip-path: circle(0% at calc(100% - 32px) 32px);
      transition: clip-path 0.6s cubic-bezier(0.4,0,0.2,1);
    }

    &.open {
      pointer-events: all;

      & .mobileMenu_overlay {
        clip-path: circle(150% at calc(100% - 32px) 32px);
      }

      & .mobileMenu_content {
        opacity: 1;
      }
    }

    & .mobileMenu_content {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 8px;
      opacity: 0;
      transition: opacity 0.3s ease 0.4s;
    }

    & .mobileMenu_close {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      color: var(--c-lime);
      font-size: 1.5rem;
      cursor: pointer;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--r-sm);
      transition: background var(--trans-base);

      &:hover {
        background: rgba(200,230,60,0.1);
      }
    }

    & .mobileMenu_link {
      color: var(--c-cream);
      text-decoration: none;
      font-family: var(--ff-head);
      font-size: clamp(1.6rem, 5vw, 2.4rem);
      font-weight: 700;
      padding: 12px 32px;
      border-radius: var(--r-md);
      transition: all var(--trans-base);
      text-align: center;

      &:hover {
        color: var(--c-lime);
        background: rgba(200,230,60,0.08);
      }
    }
  }

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

  .btn-primary {
    background: var(--c-lime);
    color: var(--c-forest);
    padding: 14px 32px;
    border-radius: var(--r-xl);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--trans-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lime);
    font-family: var(--ff-body);
    cursor: pointer;
    border: none;

    &:hover {
      background: var(--c-lime-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(200,230,60,0.45);
    }

    &.btn-primary--lg {
      padding: 18px 40px;
      font-size: 1.05rem;
    }
  }

  .btn-outline {
    border: 2px solid rgba(200,230,60,0.4);
    color: var(--c-cream);
    padding: 12px 28px;
    border-radius: var(--r-xl);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--trans-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-body);

    &:hover {
      border-color: var(--c-lime);
      color: var(--c-lime);
      background: rgba(200,230,60,0.08);
    }

    &.btn-outline--light {
      border-color: rgba(200,230,60,0.5);
      color: rgba(245,240,232,0.8);

      &:hover {
        border-color: var(--c-lime);
        color: var(--c-lime);
      }
    }
  }

  /* ============================================
     SECTION UTILITIES
     ============================================ */

  .sectionTag {
    display: inline-block;
    background: rgba(26,58,42,0.08);
    border: 1px solid rgba(26,58,42,0.15);
    border-radius: var(--r-xl);
    padding: 5px 14px;
    color: var(--c-forest-mid);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;

    &.sectionTag--light {
      background: rgba(200,230,60,0.12);
      border-color: rgba(200,230,60,0.3);
      color: var(--c-lime);
    }
  }

  .sectionTitle {
    font-family: var(--ff-head);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--c-forest);
    line-height: 1.15;
    letter-spacing: -0.03em;

    &.sectionTitle--light {
      color: var(--c-cream);
    }
  }

  /* ============================================
     WAVE DIVIDERS
     ============================================ */

  .waveDivider {
    background: var(--c-forest);
    line-height: 0;
    overflow: hidden;

    & svg {
      width: 100%;
      height: 80px;
      display: block;
    }

    &.waveDivider--flip {
      background: var(--c-cream);
    }
  }

  /* ============================================
     HERO SECTION (homepage)
     ============================================ */

  .mainHero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    & .mainHero_bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #0f2218 0%, #1a3a2a 30%, #2d5a3d 60%, #1a3a2a 100%);
      background-size: 400% 400%;
      animation: heroGrad 12s ease infinite;
    }

    & .mainHero_inner {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 120px 40px 80px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    & .mainHero_badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(200,230,60,0.12);
      border: 1px solid rgba(200,230,60,0.3);
      border-radius: var(--r-xl);
      padding: 6px 16px;
      margin-bottom: 20px;

      & span {
        color: var(--c-lime);
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      & i {
        color: var(--c-lime);
        font-size: 0.75rem;
      }
    }

    & .mainHero_title {
      font-family: var(--ff-head);
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 700;
      color: var(--c-cream);
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 24px;

      & .accent { color: var(--c-lime); }

      & .char {
        display: inline-block;
        opacity: 0;
        transform: translateY(20px);
        animation: charReveal 0.6s ease forwards;
      }
    }

    & .mainHero_desc {
      color: rgba(245,240,232,0.75);
      font-size: clamp(1rem, 1.5vw, 1.15rem);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 480px;
    }

    & .mainHero_actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    & .mainHero_visual {
      position: relative;
    }

    & .mainHero_imgWrap {
      border-radius: var(--r-lg);
      overflow: hidden;
      aspect-ratio: 4/3;
      position: relative;
      box-shadow: var(--shadow-float);

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        mix-blend-mode: luminosity;
        filter: contrast(1.1) brightness(0.9);
        transition: transform 0.6s ease;
      }

      &::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(26,58,42,0.5) 0%, rgba(200,230,60,0.1) 100%);
        z-index: 1;
        mix-blend-mode: multiply;
      }

      &:hover img {
        transform: scale(1.03);
      }
    }

    & .mainHero_floatCard {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: var(--c-lime);
      border-radius: var(--r-md);
      padding: 16px 20px;
      box-shadow: var(--shadow-card);
      z-index: 2;

      & strong {
        display: block;
        color: var(--c-forest);
        font-family: var(--ff-head);
        font-size: 1.4rem;
        font-weight: 700;
        line-height: 1;
      }

      & span {
        color: rgba(15,34,24,0.7);
        font-size: 0.78rem;
        font-weight: 500;
      }
    }

    & .mainHero_floatCard2 {
      position: absolute;
      top: -20px;
      right: -20px;
      background: var(--c-dark);
      border: 1px solid rgba(200,230,60,0.2);
      border-radius: var(--r-md);
      padding: 14px 18px;
      box-shadow: var(--shadow-card);
      z-index: 2;

      & span {
        color: rgba(245,240,232,0.6);
        font-size: 0.75rem;
        display: block;
        margin-bottom: 4px;
      }

      & strong {
        color: var(--c-cream);
        font-size: 0.88rem;
        font-weight: 600;
        font-family: var(--ff-body);
      }
    }
  }

  @keyframes heroGrad {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  @keyframes charReveal {
    to { opacity: 1; transform: translateY(0); }
  }

  /* ============================================
     BENTO SECTION
     ============================================ */

  .bentoSection {
    background: var(--c-cream);
    padding: var(--sp-2xl) 40px;

    & .bentoSection_inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    & .bentoSection_header {
      margin-bottom: 48px;
      max-width: 600px;
    }
  }

  .bentoGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 20px;

    & .bentoCard {
      background: var(--c-cream-dark);
      border: 1px solid rgba(26,58,42,0.1);
      border-radius: var(--r-lg);
      padding: 32px;
      position: relative;
      overflow: hidden;
      transition: all var(--trans-base);
      box-shadow: var(--shadow-xs);

      &:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-card);
        border-color: rgba(26,58,42,0.2);
      }

      & h3 {
        font-family: var(--ff-head);
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--c-forest);
        margin-bottom: 12px;
      }

      & p {
        color: var(--c-text-muted);
        font-size: 0.92rem;
        line-height: 1.65;
      }

      & .bentoCard_icon {
        width: 44px;
        height: 44px;
        background: rgba(26,58,42,0.08);
        border-radius: var(--r-md);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: var(--c-forest);
        font-size: 1.1rem;
        transition: all var(--trans-base);
      }

      &:hover .bentoCard_icon {
        background: var(--c-lime);
        color: var(--c-forest);
      }

      &.bentoCard--wide {
        grid-column: span 2;
      }

      &.bentoCard--dark {
        background: var(--c-forest);
        border-color: transparent;

        & h3 { color: var(--c-cream); }
        & p { color: rgba(245,240,232,0.65); }
        & .bentoCard_icon { background: rgba(200,230,60,0.15); color: var(--c-lime); }
        &:hover .bentoCard_icon { background: var(--c-lime); color: var(--c-forest); }
        &:hover { border-color: rgba(200,230,60,0.2); }
      }

      &.bentoCard--lime {
        background: var(--c-lime);
        border-color: transparent;

        & h3 { color: var(--c-forest); }
        & p { color: rgba(15,34,24,0.7); }
        & .bentoCard_icon--dark { background: rgba(15,34,24,0.1); color: var(--c-forest); }
        &:hover { background: var(--c-lime-dark); }
        &:hover .bentoCard_icon--dark { background: rgba(15,34,24,0.2); }
      }

      &.bentoCard--imgFull {
        padding: 0;
        overflow: hidden;
        position: relative;

        & img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          min-height: 240px;
          transition: transform 0.6s ease;
          filter: contrast(1.05);
          mix-blend-mode: multiply;
        }

        &::before {
          content: '';
          position: absolute;
          inset: 0;
          background: linear-gradient(135deg, rgba(26,58,42,0.6), rgba(200,230,60,0.2));
          z-index: 1;
        }

        &:hover img { transform: scale(1.05); }

        & .bentoCard_imgOverlay {
          position: absolute;
          bottom: 20px;
          left: 20px;
          z-index: 2;
          color: var(--c-cream);
          font-size: 0.88rem;
          font-weight: 600;
          background: rgba(15,34,24,0.6);
          padding: 6px 12px;
          border-radius: var(--r-sm);
          backdrop-filter: blur(4px);
        }
      }

      & .bentoCard_tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 20px;

        & span {
          background: rgba(200,230,60,0.15);
          color: var(--c-lime);
          padding: 4px 12px;
          border-radius: var(--r-xl);
          font-size: 0.78rem;
          font-weight: 600;
          border: 1px solid rgba(200,230,60,0.25);
        }
      }

      & .bentoCard_img {
        margin-top: 24px;
        border-radius: var(--r-md);
        overflow: hidden;
        height: 160px;

        & img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.4s ease;
        }
      }

      &:hover .bentoCard_img img { transform: scale(1.04); }
    }
  }

  /* ============================================
     FLOW SECTION (dark bg)
     ============================================ */

  .flowSection {
    background: var(--c-forest);
    padding: var(--sp-2xl) 40px;

    & .flowSection_inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    & .flowSection_text {
      color: rgba(245,240,232,0.72);
      font-size: 1rem;
      line-height: 1.75;

      & + .flowSection_text {
        margin-top: 16px;
      }
    }

    & .flowSection_right {
      position: relative;
    }

    & .flowSection_imgStack {
      position: relative;

      & > img {
        border-radius: var(--r-lg);
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        box-shadow: var(--shadow-float);
        filter: contrast(1.05);
        mix-blend-mode: luminosity;
      }

      &::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(26,58,42,0.35);
        border-radius: var(--r-lg);
        z-index: 1;
      }

      & .flowSection_imgAccent {
        position: absolute;
        bottom: -24px;
        right: -24px;
        width: 55%;
        border-radius: var(--r-md);
        overflow: hidden;
        box-shadow: var(--shadow-float);
        border: 3px solid var(--c-forest);
        z-index: 2;

        & img {
          width: 100%;
          aspect-ratio: 4/3;
          object-fit: cover;
          filter: contrast(1.05);
        }
      }
    }
  }

  /* ============================================
     CONTINUOUS SECTION (invisible boundary)
     ============================================ */

  .continuousSection {
    background: var(--c-cream);
    padding: var(--sp-2xl) 40px calc(var(--sp-2xl) + 40px);

    & .continuousSection_inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    & .continuousSection_copy {
      max-width: 700px;
      margin-bottom: 56px;

      & p {
        color: var(--c-text-muted);
        font-size: 1.05rem;
        line-height: 1.75;
        margin-top: 16px;
      }
    }

    & .continuousSection_cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
  }

  .climateCard {
    background: var(--c-cream-dark);
    border: 1px solid rgba(26,58,42,0.1);
    border-radius: var(--r-lg);
    padding: 28px 24px;
    transition: all var(--trans-base);
    position: relative;
    overflow: hidden;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--c-lime);
      transform: scaleX(0);
      transition: transform var(--trans-base);
      transform-origin: left;
    }

    &:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-card);
      border-color: rgba(26,58,42,0.2);

      &::before { transform: scaleX(1); }
    }

    & i {
      font-size: 1.5rem;
      color: var(--c-forest-mid);
      margin-bottom: 16px;
      display: block;
      transition: color var(--trans-base);
    }

    &:hover i { color: var(--c-lime-dark); }

    & strong {
      display: block;
      font-family: var(--ff-head);
      font-size: 1rem;
      font-weight: 700;
      color: var(--c-forest);
      margin-bottom: 8px;
    }

    & p {
      font-size: 0.88rem;
      color: var(--c-text-muted);
      line-height: 1.6;
    }
  }

  /* ============================================
     GALLERY SECTION
     ============================================ */

  .gallerySection {
    background: var(--c-forest);
    padding: var(--sp-2xl) 40px;

    & .gallerySection_inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    & .gallerySection_header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 56px;

      & .sectionTitle { color: var(--c-cream); }
      & p {
        color: rgba(245,240,232,0.65);
        font-size: 1rem;
        line-height: 1.7;
        margin-top: 12px;
      }
    }
  }

  .galleryGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 260px 260px;
    gap: 16px;

    & .galleryItem {
      border-radius: var(--r-md);
      overflow: hidden;
      position: relative;
      cursor: pointer;

      &::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(15,34,24,0.7) 0%, transparent 50%);
        z-index: 1;
        opacity: 0.7;
        transition: opacity var(--trans-base);
      }

      &:hover::before { opacity: 1; }

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        filter: contrast(1.05);
      }

      &:hover img { transform: scale(1.06); }

      & .galleryItem_label {
        position: absolute;
        bottom: 16px;
        left: 16px;
        z-index: 2;
        color: var(--c-cream);
        font-size: 0.85rem;
        font-weight: 600;
        background: rgba(15,34,24,0.5);
        padding: 5px 12px;
        border-radius: var(--r-sm);
        backdrop-filter: blur(4px);
        border: 1px solid rgba(200,230,60,0.2);
      }

      &.galleryItem--tall {
        grid-row: span 2;
      }

      &.galleryItem--wide {
        grid-column: span 2;
      }
    }
  }

  /* ============================================
     CTA SPLIT
     ============================================ */

  .ctaSplit {
    background: var(--c-forest);
    padding: var(--sp-xl) 40px;

    & .ctaSplit_inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 80px;
      align-items: center;
    }

    & .ctaSplit_heading {
      font-family: var(--ff-head);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700;
      color: var(--c-cream);
      line-height: 1.2;
      margin-top: 12px;
      margin-bottom: 16px;
    }

    & .ctaSplit_sub {
      color: rgba(245,240,232,0.7);
      font-size: 1rem;
      line-height: 1.7;
    }

    & .ctaSplit_right {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
    }

    & .ctaSplit_support {
      color: rgba(245,240,232,0.55);
      font-size: 0.88rem;
      line-height: 1.6;
      margin-bottom: 20px;
    }
  }

  /* ============================================
     PAGE HERO (inner pages)
     ============================================ */

  .pageHero {
    background: var(--c-forest);
    padding: 160px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;

    &::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 100%, rgba(200,230,60,0.06) 0%, transparent 70%);
    }

    & .pageHero_tag {
      display: inline-block;
      background: rgba(200,230,60,0.12);
      border: 1px solid rgba(200,230,60,0.3);
      border-radius: var(--r-xl);
      padding: 6px 16px;
      color: var(--c-lime);
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 20px;
    }

    & .pageHero_title {
      font-family: var(--ff-head);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      color: var(--c-cream);
      margin-bottom: 20px;
      letter-spacing: -0.03em;
      position: relative;
    }

    & .pageHero_desc {
      color: rgba(245,240,232,0.7);
      max-width: 640px;
      margin: 0 auto;
      font-size: 1.05rem;
      line-height: 1.7;
      position: relative;
    }
  }

  /* ============================================
     TRAYECTORIA PAGE
     ============================================ */

  .traySection {
    padding: var(--sp-2xl) 40px;
    background: var(--c-cream);

    &.traySection--alt {
      background: var(--c-forest);

      & .sectionTitle { color: var(--c-cream); }
      & p { color: rgba(245,240,232,0.7); }
    }

    & .traySection_inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;

      &.traySection_inner--rev {
        direction: rtl;

        & > * { direction: ltr; }
      }
    }

    & .traySection_img {
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-float);

      & img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        transition: transform 0.5s ease;
        display: block;
      }

      &:hover img { transform: scale(1.03); }
    }

    & .traySection_copy {
      & p {
        color: var(--c-text-muted);
        font-size: 1rem;
        line-height: 1.75;
      }
    }
  }

  .trayList {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;

    & .trayList_item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 0.92rem;
      color: var(--c-forest);

      & i {
        color: var(--c-lime-dark);
        margin-top: 3px;
        flex-shrink: 0;
        font-size: 0.85rem;
      }
    }
  }

  .traySection--alt .trayList_item {
    color: rgba(245,240,232,0.8);

    & i { color: var(--c-lime); }
  }

  .materialGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
  }

  .materialCard {
    background: rgba(200,230,60,0.08);
    border: 1px solid rgba(200,230,60,0.2);
    border-radius: var(--r-md);
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: all var(--trans-base);
    cursor: default;

    &:hover {
      background: rgba(200,230,60,0.15);
      border-color: rgba(200,230,60,0.4);
      transform: translateY(-2px);
    }

    & i {
      color: var(--c-lime);
      font-size: 1.2rem;
    }

    & span {
      color: rgba(245,240,232,0.8);
      font-size: 0.78rem;
      font-weight: 500;
    }
  }

  /* ============================================
     PLANIFICACION PAGE
     ============================================ */

  .planSection {
    padding: var(--sp-2xl) 40px;
    background: var(--c-cream);

    & .planSection_inner {
      max-width: 900px;
      margin: 0 auto;
    }
  }

  .planSteps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .planStep {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    padding: 56px 0;
    border-bottom: 1px solid rgba(26,58,42,0.1);
    align-items: start;

    &:last-child { border-bottom: none; }

    &.planStep--alt {
      background: transparent;
    }

    & .planStep_num {
      font-family: var(--ff-head);
      font-size: 3rem;
      font-weight: 700;
      color: rgba(26,58,42,0.12);
      line-height: 1;
      padding-top: 4px;
    }

    & .planStep_content {
      & h2 {
        font-family: var(--ff-head);
        font-size: clamp(1.3rem, 2.5vw, 1.7rem);
        font-weight: 700;
        color: var(--c-forest);
        margin-bottom: 16px;
      }

      & p {
        color: var(--c-text-muted);
        font-size: 1rem;
        line-height: 1.75;
      }
    }

    & .planStep_tips {
      margin-top: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
  }

  .planTip {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(26,58,42,0.04);
    border: 1px solid rgba(26,58,42,0.08);
    border-radius: var(--r-md);
    padding: 12px 16px;

    & i {
      color: var(--c-forest-mid);
      margin-top: 2px;
      flex-shrink: 0;
    }

    & span {
      font-size: 0.9rem;
      color: var(--c-forest);
      line-height: 1.55;
    }
  }

  .structureCards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
  }

  .structureCard {
    background: rgba(26,58,42,0.04);
    border: 1px solid rgba(26,58,42,0.1);
    border-radius: var(--r-md);
    padding: 24px;
    transition: all var(--trans-base);

    &:hover {
      border-color: var(--c-lime-dark);
      background: rgba(200,230,60,0.04);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    & i {
      font-size: 1.5rem;
      color: var(--c-forest-mid);
      margin-bottom: 12px;
      display: block;
      transition: color var(--trans-base);
    }

    &:hover i { color: var(--c-lime-dark); }

    & strong {
      display: block;
      font-family: var(--ff-head);
      font-size: 1rem;
      font-weight: 700;
      color: var(--c-forest);
      margin-bottom: 8px;
    }

    & p {
      font-size: 0.85rem;
      color: var(--c-text-muted);
      line-height: 1.6;
    }
  }

  .materialCompare {
    margin-top: 24px;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid rgba(26,58,42,0.12);
  }

  .materialCompareRow {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 0;

    & span {
      padding: 12px 16px;
      font-size: 0.88rem;
      color: var(--c-forest);
      border-bottom: 1px solid rgba(26,58,42,0.08);
    }

    &.materialCompareRow--head {
      background: var(--c-forest);

      & span {
        color: var(--c-cream);
        font-weight: 600;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        border-bottom-color: rgba(200,230,60,0.15);
      }
    }

    &:nth-child(even) {
      background: rgba(26,58,42,0.025);
    }

    &:last-child span { border-bottom: none; }
  }

  /* ============================================
     AGENDA PAGE
     ============================================ */

  .agendaSection {
    padding: var(--sp-2xl) 40px;
    background: var(--c-cream);

    & .agendaSection_inner {
      max-width: 1100px;
      margin: 0 auto;
    }
  }

  .agendaFilter {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .agendaFilter_btn {
    background: rgba(26,58,42,0.06);
    border: 1px solid rgba(26,58,42,0.12);
    border-radius: var(--r-xl);
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--c-forest);
    cursor: pointer;
    transition: all var(--trans-base);
    font-family: var(--ff-body);

    &:hover {
      background: rgba(26,58,42,0.12);
      border-color: rgba(26,58,42,0.2);
    }

    &.agendaFilter_btn--active {
      background: var(--c-forest);
      color: var(--c-lime);
      border-color: var(--c-forest);
    }
  }

  .agendaGrid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .agendaCard {
    display: grid;
    grid-template-columns: 100px 1fr;
    background: var(--c-cream-dark);
    border: 1px solid rgba(26,58,42,0.1);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all var(--trans-base);
    box-shadow: var(--shadow-xs);

    &:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-card);
      border-color: rgba(26,58,42,0.2);
    }

    &.hidden { display: none; }

    & .agendaCard_date {
      background: var(--c-forest);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
      text-align: center;

      & .agendaCard_month {
        color: var(--c-lime);
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        display: block;
      }

      & .agendaCard_day {
        color: var(--c-cream);
        font-family: var(--ff-head);
        font-size: 2rem;
        font-weight: 700;
        line-height: 1;
        display: block;
      }

      & .agendaCard_year {
        color: rgba(245,240,232,0.5);
        font-size: 0.75rem;
        display: block;
        margin-top: 2px;
      }
    }

    & .agendaCard_body {
      padding: 24px 28px;
    }

    & .agendaCard_location {
      color: var(--c-forest-mid);
      font-size: 0.82rem;
      font-weight: 600;
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 6px;

      & i { font-size: 0.75rem; }
    }

    & .agendaCard_title {
      font-family: var(--ff-head);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--c-forest);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    & .agendaCard_desc {
      color: var(--c-text-muted);
      font-size: 0.9rem;
      line-height: 1.65;
      margin-bottom: 16px;
    }

    & .agendaCard_meta {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 16px;

      & span {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.8rem;
        color: var(--c-text-muted);

        & i { color: var(--c-forest-mid); font-size: 0.75rem; }
      }
    }

    & .agendaCard_cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--c-forest);
      font-weight: 600;
      font-size: 0.88rem;
      text-decoration: none;
      border-bottom: 2px solid var(--c-lime);
      padding-bottom: 2px;
      transition: all var(--trans-base);

      &:hover {
        color: var(--c-lime-dark);
        border-color: var(--c-lime-dark);
      }
    }
  }

  .agendaInfo {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .agendaInfo_card {
    background: var(--c-forest);
    border-radius: var(--r-lg);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;

    & i {
      color: var(--c-lime);
      font-size: 1.3rem;
      margin-top: 4px;
      flex-shrink: 0;
    }

    & strong {
      display: block;
      color: var(--c-cream);
      font-family: var(--ff-head);
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    & p {
      color: rgba(245,240,232,0.65);
      font-size: 0.9rem;
      line-height: 1.65;
    }
  }

  /* ============================================
     CONTACT PAGE
     ============================================ */

  .contactPage {
    padding: 120px 40px var(--sp-2xl);

    & .contactPage_inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    & .contactPage_header {
      max-width: 600px;
      margin-bottom: 56px;

      & p {
        color: var(--c-text-muted);
        font-size: 1rem;
        line-height: 1.7;
        margin-top: 12px;
      }
    }

    & .contactPage_layout {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 60px;
      margin-bottom: 60px;
    }
  }

  
  .contactFormWrap {
    background: var(--c-cream-dark);
    border: 1px solid rgba(26,58,42,0.1);
    border-radius: var(--r-xl);
    padding: 48px;
    box-shadow: var(--shadow-sm);
  }

  .contactForm {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .formGroup {
    position: relative;

    & .formInput {
      width: 100%;
      background: var(--c-cream);
      border: 2px solid rgba(26,58,42,0.15);
      border-radius: var(--r-md);
      padding: 20px 16px 8px;
      font-family: var(--ff-body);
      font-size: 1rem;
      color: var(--c-forest);
      transition: all var(--trans-base);
      outline: none;
      appearance: none;

      &:focus {
        border-color: var(--c-forest);
        box-shadow: 0 0 0 4px rgba(26,58,42,0.08);
      }

      &.formInput--textarea {
        resize: vertical;
        min-height: 140px;
        padding-top: 24px;
      }
    }

    & .formLabel {
      position: absolute;
      top: 14px;
      left: 16px;
      font-size: 1rem;
      color: rgba(26,58,42,0.5);
      pointer-events: none;
      transition: all var(--trans-base);
      background: transparent;

      &.formLabel--phone {
        left: 96px;
      }
    }

    & .formInput:focus ~ .formLabel,
    & .formInput:not(:placeholder-shown) ~ .formLabel {
      top: 6px;
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--c-forest);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    & .formHelper {
      display: block;
      font-size: 0.78rem;
      color: rgba(26,58,42,0.45);
      margin-top: 6px;
      padding-left: 2px;
    }

    &.formGroup--check {
      display: flex;
      align-items: flex-start;
    }
  }

  .checkLabel {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--c-text-muted);

    & input[type="checkbox"] {
      display: none;
    }

    & .checkBox {
      width: 20px;
      height: 20px;
      border: 2px solid rgba(26,58,42,0.25);
      border-radius: var(--r-xs);
      flex-shrink: 0;
      margin-top: 1px;
      transition: all var(--trans-base);
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--c-cream);
    }

    & input:checked + .checkBox {
      background: var(--c-forest);
      border-color: var(--c-forest);

      &::after {
        content: '';
        width: 5px;
        height: 9px;
        border: 2px solid var(--c-lime);
        border-top: none;
        border-left: none;
        transform: rotate(45deg) translateY(-1px);
        display: block;
      }
    }

    & a {
      color: var(--c-forest);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
  }

  .formSubmit {
    background: var(--c-forest);
    color: var(--c-lime);
    border: none;
    border-radius: var(--r-xl);
    padding: 18px 36px;
    font-family: var(--ff-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--trans-base);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    width: 100%;
    justify-content: center;

    &:hover {
      background: var(--c-lime);
      color: var(--c-forest);
      transform: translateY(-2px);
      box-shadow: var(--shadow-lime);
    }
  }

  
  .contactSide {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .contactInfo {
    & h3 {
      font-family: var(--ff-head);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--c-forest);
      margin-bottom: 24px;
    }

    & .contactInfo_item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 20px;

      & i {
        width: 36px;
        height: 36px;
        background: rgba(26,58,42,0.08);
        border-radius: var(--r-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--c-forest-mid);
        font-size: 0.9rem;
        flex-shrink: 0;
      }

      & strong {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--c-text-muted);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 4px;
      }

      & p, & a {
        font-size: 0.92rem;
        color: var(--c-forest);
        text-decoration: none;
        line-height: 1.5;

        &:hover { color: var(--c-forest-mid); }
      }
    }
  }

  
  .contactTimeline {
    & h3 {
      font-family: var(--ff-head);
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--c-forest);
      margin-bottom: 24px;
    }
  }

  .timeline {
    position: relative;

    &::before {
      content: '';
      position: absolute;
      top: 20px;
      bottom: 20px;
      left: 19px;
      width: 2px;
      background: linear-gradient(to bottom, var(--c-lime), rgba(200,230,60,0.2));
    }

    & .timeline_item {
      display: flex;
      gap: 20px;
      margin-bottom: 24px;
      align-items: flex-start;

      &:last-child { margin-bottom: 0; }

      & .timeline_dot {
        width: 40px;
        height: 40px;
        background: var(--c-forest);
        border: 2px solid var(--c-lime);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--c-lime);
        font-size: 0.82rem;
        font-weight: 700;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
      }

      & .timeline_content {
        padding-top: 8px;

        & strong {
          display: block;
          font-size: 0.92rem;
          font-weight: 700;
          color: var(--c-forest);
          margin-bottom: 4px;
          font-family: var(--ff-head);
        }

        & p {
          font-size: 0.85rem;
          color: var(--c-text-muted);
          line-height: 1.55;
        }
      }
    }
  }

  .contactMap {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(26,58,42,0.1);
  }

  /* ============================================
     LEGAL PAGES
     ============================================ */

  .legalPage {
    padding: 120px 40px var(--sp-2xl);

    & .legalPage_inner {
      max-width: 780px;
      margin: 0 auto;
    }

    & .legalPage_header {
      margin-bottom: 56px;
      padding-bottom: 32px;
      border-bottom: 2px solid rgba(26,58,42,0.1);

      & h1 {
        font-family: var(--ff-head);
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        font-weight: 700;
        color: var(--c-forest);
        margin-bottom: 12px;
      }

      & .legalPage_date {
        color: var(--c-text-muted);
        font-size: 0.9rem;
      }
    }

    & .legalPage_content {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
  }

  .legalBlock {
    & h2 {
      font-family: var(--ff-head);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--c-forest);
      margin-bottom: 14px;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(26,58,42,0.08);
    }

    & p {
      color: var(--c-text-muted);
      font-size: 0.95rem;
      line-height: 1.75;

      & + p { margin-top: 12px; }

      & a {
        color: var(--c-forest);
        text-decoration: underline;
        text-underline-offset: 2px;

        &:hover { color: var(--c-forest-mid); }
      }
    }

    & ul {
      list-style: none;
      margin-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 10px;

      & li {
        color: var(--c-text-muted);
        font-size: 0.95rem;
        line-height: 1.65;
        padding-left: 20px;
        position: relative;

        &::before {
          content: '·';
          position: absolute;
          left: 6px;
          color: var(--c-lime-dark);
          font-weight: 700;
        }

        & strong {
          color: var(--c-forest);
          font-weight: 600;
        }
      }
    }
  }

  
  .cookieTable {
    overflow-x: auto;
    margin-top: 16px;
    border-radius: var(--r-md);
    border: 1px solid rgba(26,58,42,0.12);

    & table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.88rem;

      & th {
        background: var(--c-forest);
        color: var(--c-cream);
        padding: 12px 16px;
        text-align: left;
        font-weight:
600;
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }

      & td {
        padding: 12px 16px;
        color: var(--c-text-muted);
        border-bottom: 1px solid rgba(26,58,42,0.08);
        vertical-align: top;
        line-height: 1.55;

        & code {
          background: rgba(26,58,42,0.08);
          padding: 2px 6px;
          border-radius: var(--r-xs);
          font-size: 0.82rem;
          color: var(--c-forest);
          font-family: monospace;
        }
      }

      & tr:last-child td { border-bottom: none; }
      & tr:nth-child(even) td { background: rgba(26,58,42,0.02); }
    }
  }

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

  .pageFooter {
    background: var(--c-dark);
    padding: var(--sp-xl) 40px var(--sp-md);
    margin-top: auto;

    & .pageFooter_inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(200,230,60,0.1);
    }

    & .pageFooter_brand {
      & .pageFooter_logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        margin-bottom: 16px;

        & img { width: 36px; height: 36px; }

        & span {
          font-family: var(--ff-head);
          font-size: 1.1rem;
          font-weight: 700;
          color: var(--c-cream);
        }
      }

      & p {
        color: rgba(245,240,232,0.45);
        font-size: 0.88rem;
        line-height: 1.65;
        margin-bottom: 20px;
        max-width: 300px;
      }

      & address {
        font-style: normal;
        color: rgba(245,240,232,0.45);
        font-size: 0.85rem;
        line-height: 2;

        & i {
          color: var(--c-lime);
          width: 16px;
          margin-right: 6px;
        }

        & a {
          color: rgba(245,240,232,0.55);
          text-decoration: none;
          transition: color var(--trans-base);

          &:hover { color: var(--c-lime); }
        }
      }
    }

    & .pageFooter_nav {
      & h4 {
        font-family: var(--ff-head);
        font-size: 0.88rem;
        font-weight: 700;
        color: var(--c-lime);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 20px;
      }

      & ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;

        & li a {
          color: rgba(245,240,232,0.5);
          text-decoration: none;
          font-size: 0.9rem;
          transition: color var(--trans-base);
          display: inline-flex;
          align-items: center;
          gap: 6px;

          &:hover { color: var(--c-cream); }
        }
      }
    }

    & .pageFooter_bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;

      & p {
        color: rgba(245,240,232,0.3);
        font-size: 0.82rem;
      }
    }
  }

  /* ============================================
     COOKIE CONSENT
     ============================================ */

  .cookieConsent {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 340px;
    background: var(--c-dark);
    border: 1px solid rgba(200,230,60,0.2);
    border-radius: var(--r-xl);
    padding: 28px;
    box-shadow: var(--shadow-float);
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);

    &.visible {
      transform: translateY(0);
      opacity: 1;
    }

    &.expanded {
      width: 360px;
    }

    & .cookieConsent_icon {
      width: 48px;
      height: 48px;
      background: rgba(200,230,60,0.12);
      border-radius: var(--r-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      color: var(--c-lime);
      font-size: 1.3rem;
    }

    & .cookieConsent_title {
      font-family: var(--ff-head);
      font-size: 1rem;
      font-weight: 700;
      color: var(--c-cream);
      margin-bottom: 8px;
    }

    & .cookieConsent_text {
      color: rgba(245,240,232,0.6);
      font-size: 0.82rem;
      line-height: 1.6;
      margin-bottom: 20px;

      & a {
        color: var(--c-lime);
        text-decoration: underline;
        text-underline-offset: 2px;
      }
    }

    & .cookieConsent_toggles {
      display: none;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 20px;
      padding: 16px;
      background: rgba(255,255,255,0.04);
      border-radius: var(--r-md);
      border: 1px solid rgba(200,230,60,0.1);

      &.visible { display: flex; }
    }

    & .cookieConsent_toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;

      & .toggle_label {
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--c-cream);
      }

      & .toggle_desc {
        font-size: 0.75rem;
        color: rgba(245,240,232,0.45);
        margin-top: 2px;
        display: block;
      }

      & .toggle_switch {
        position: relative;
        width: 40px;
        height: 22px;
        flex-shrink: 0;

        & input {
          opacity: 0;
          width: 0;
          height: 0;
          position: absolute;

          &:checked + .toggle_track {
            background: var(--c-lime);

            & .toggle_thumb {
              transform: translateX(18px);
            }
          }
        }

        & .toggle_track {
          position: absolute;
          inset: 0;
          background: rgba(255,255,255,0.15);
          border-radius: 11px;
          cursor: pointer;
          transition: background var(--trans-base);
          display: flex;
          align-items: center;
          padding: 2px;

          & .toggle_thumb {
            width: 18px;
            height: 18px;
            background: white;
            border-radius: 50%;
            transition: transform var(--trans-base);
            box-shadow: 0 1px 4px rgba(0,0,0,0.3);
          }
        }
      }

      &.toggle--disabled .toggle_track {
        cursor: not-allowed;
        opacity: 0.6;
      }
    }

    & .cookieConsent_actions {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    & .cookieConsent_btn {
      width: 100%;
      padding: 11px 16px;
      border-radius: var(--r-xl);
      font-family: var(--ff-body);
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: all var(--trans-base);
      border: none;
      text-align: center;

      &.cookieConsent_btn--accept {
        background: var(--c-lime);
        color: var(--c-forest);

        &:hover {
          background: var(--c-lime-dark);
          transform: translateY(-1px);
        }
      }

      &.cookieConsent_btn--customize {
        background: rgba(255,255,255,0.06);
        color: rgba(245,240,232,0.7);
        border: 1px solid rgba(255,255,255,0.1);

        &:hover {
          background: rgba(255,255,255,0.1);
          color: var(--c-cream);
        }
      }

      &.cookieConsent_btn--reject {
        background: transparent;
        color: rgba(245,240,232,0.4);
        font-size: 0.78rem;

        &:hover { color: rgba(245,240,232,0.7); }
      }
    }
  }

} 

/* ============================================
   SPLITTING.JS CHARACTER ANIMATIONS
   ============================================ */

.mainHero_title[data-splitting] {
  & .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(24px);
    animation: charReveal 0.5s cubic-bezier(0.4,0,0.2,1) forwards;
    animation-delay: calc(var(--char-index) * 0.025s + 0.3s);
  }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.revealUp {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4,0,0.2,1);

  &.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .siteHeader {
    padding: 16px 24px;

    & .siteHeader_nav { display: none; }
    & .siteHeader_cta { display: none; }
    & .siteHeader_hamburger { display: flex; }
  }

  .mainHero {
    & .mainHero_inner {
      grid-template-columns: 1fr;
      padding: 100px 24px 60px;
      gap: 40px;
      text-align: center;
    }

    & .mainHero_desc { max-width: 100%; }
    & .mainHero_actions { justify-content: center; }

    & .mainHero_floatCard {
      bottom: -16px;
      left: 0;
    }

    & .mainHero_floatCard2 {
      top: -16px;
      right: 0;
    }
  }

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

    & .bentoCard--wide { grid-column: span 2; }
    & .bentoCard--imgFull { grid-column: span 1; }
  }

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

  .flowSection .flowSection_inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .flowSection {
    padding: var(--sp-xl) 0;
  }

  .ctaSplit .ctaSplit_inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ctaSplit .ctaSplit_right {
    align-items: flex-start;
  }

  .galleryGrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;

    & .galleryItem--tall { grid-row: span 1; }
    & .galleryItem--wide { grid-column: span 2; }
  }

  .traySection .traySection_inner {
    grid-template-columns: 1fr;
    gap: 40px;

    &.traySection_inner--rev { direction: ltr; }
  }

  .traySection {
    padding: var(--sp-xl) 24px;
  }

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

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

  .materialCompareRow {
    grid-template-columns: 2fr 1fr 1fr;

    & span:last-child { display: none; }
  }

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

  .contactPage .contactPage_layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contactFormWrap {
    padding: 32px 24px;
  }

  .pageFooter .pageFooter_inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .planSection {
    padding: var(--sp-xl) 24px;
  }

  .planStep {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .bentoSection {
    padding: var(--sp-xl) 20px;
  }

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

    & .bentoCard--wide { grid-column: span 1; }
  }

  .continuousSection {
    padding: var(--sp-xl) 20px;

    & .continuousSection_cards {
      grid-template-columns: 1fr;
    }
  }

  .gallerySection {
    padding: var(--sp-xl) 20px;
  }

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

    & .galleryItem--wide { grid-column: span 1; }
    & .galleryItem--tall { grid-row: span 1; }

    & .galleryItem { height: 240px; }
  }

  .ctaSplit {
    padding: var(--sp-xl) 20px;
  }

  .pageHero {
    padding: 120px 20px 60px;
  }

  .agendaSection {
    padding: var(--sp-xl) 20px;
  }

  .agendaCard {
    grid-template-columns: 80px 1fr;

    & .agendaCard_body { padding: 16px 20px; }
  }

  .agendaCard_meta {
    flex-direction: column;
    gap: 8px;
  }

  .contactPage {
    padding: 100px 20px var(--sp-xl);
  }

  .legalPage {
    padding: 100px 20px var(--sp-xl);
  }

  .pageFooter {
    padding: var(--sp-xl) 20px var(--sp-md);

    & .pageFooter_inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    & .pageFooter_bottom {
      flex-direction: column;
      gap: 8px;
      text-align: center;
    }
  }

  .planStep {
    grid-template-columns: 1fr;
    gap: 12px;

    & .planStep_num {
      font-size: 2rem;
    }
  }

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

  .materialCompareRow {
    grid-template-columns: 1.5fr 1fr;

    & span:nth-child(3),
    & span:nth-child(4) { display: none; }
  }

  .cookieConsent {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 16px;
  }

  .miniNav {
    top: 16px;
    right: 16px;
  }

  .flowSection_imgAccent {
    display: none;
  }
}

@media (max-width: 480px) {
  .mainHero .mainHero_actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .agendaFilter {
    gap: 6px;
  }

  .agendaFilter_btn {
    padding: 7px 14px;
    font-size: 0.8rem;
  }

  .contactFormWrap {
    padding: 24px 16px;
  }
}