@charset "UTF-8";

/* CSS Document */
 /* ============================================================
       DESIGN TOKENS — STYLE PANEL
    ============================================================ */
    :root {
      /* Colors — nature palette */
      --color-primary:   #1c3e67 ;   /*#2D5016 deep forest green */
      --color-secondary:  #86b9e0;   /*#b6cde5 #7A9E3B moss green */
      --color-third:      #b5844a; /* #C8A95A  warm gold / earth / #153B4F;blue  */
      --color-fourth:     #4A3728;   /* deep bark brown */
      --color-bg:         #FFFFFF;
      --color-surface:    #F5F2EE;   /* warm off-white */
      --color-dark:       #141619;
      --color-text:       #2C2C24;
      --color-muted:      #7A7A6A; /* #b6cde5 */
      --color-overlay:    rgba(26,26,20,0.65);

      /* Typography families */
      --font-hero:   'Krona One', sans-serif;       /* bold display */
      --font-title:  'DM Sans', sans-serif;           /* semi-bold titles */
      --font-body:   'DM Sans', serif;                   /* body / paragraph */

      /* Type scale */
      --size-hero:        clamp(2.4rem, 6vw, 5rem);
      --size-title:       clamp(1.75rem, 4vw, 3rem);
      --size-subtitle:    clamp(1.1rem, 2.5vw, 1.5rem);
      --size-paragraph:   clamp(0.95rem, 1.5vw, 1.05rem);
      --size-detail:      0.85rem;
      --size-disclaimer:  0.72rem;

      /* Spacing */
      --gap: 1.5rem;
      --section-py: 6rem;

      /* Radius */
      --radius-sm: 4px;
      --radius-md: 12px;
      --radius-pill: 999px;

      /* Transitions */
      --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

/* CUSTOM HIGHLIGHT */
::selection {
  background-color: var(--color-primary); /* Custom highlight color */
  color: var(--color-secondary);           /* Text color when selected */
}

/* For specific browsers like older Firefox */
::-moz-selection {
  background-color: var(--color-primary);
  color: var(--color-secondary);  
}

    /* ============================================================
       BUTTONS
    ============================================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: var(--font-title);
      font-weight: 600;
      font-size: var(--size-detail);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.85rem 2rem;
      border-radius: var(--radius-pill);
      border: 2px solid transparent;
      cursor: pointer;
      text-decoration: none;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
      position: relative;
      overflow: hidden;
    }
    .btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255,255,255,0.12);
      opacity: 0;
      transition: opacity var(--transition);
    }
    .btn:hover::after { opacity: 1; }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

    /* For dark backgrounds */
    .btn-light {
      background: #FFFFFF;
      color: var(--color-primary);
      border-color: #FFFFFF;
    }
    .btn-light:hover { background: var(--color-third); color: #fff; border-color: var(--color-third); }

    /* For clear/light backgrounds */
    .btn-dark {
      background: var(--color-primary);
      color: #FFFFFF;
      border-color: var(--color-primary);
    }
    .btn-dark:hover { background: var(--color-fourth); border-color: var(--color-fourth); }

    .btn-outline-dark {
      background: transparent;
      color: var(--color-primary);
      border-color: var(--color-primary);
    }
    .btn-outline-dark:hover { background: var(--color-primary); color: #fff; }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      font-size: var(--size-paragraph);
      color: var(--color-text);
      background: var(--color-bg);
      line-height: 1.7;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; }
    ul { list-style: none; }

    .section-label {
      font-family: var(--font-title);
      font-size: var(--size-detail);
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-secondary);
      margin-bottom: 0.5rem;
    }
    .section-title {
      font-family: var(--font-hero);
      font-size: var(--size-title);
      color: var(--color-dark);
      line-height: 1.05;
    }
    .section-subtitle {
      font-family: var(--font-title);
      font-size: var(--size-subtitle);
      font-weight: 500;
      color: var(--color-muted);
    }
    .container {
      max-width: 1200px;
      margin-inline: auto;
      padding-inline: 1.5rem;
    }
    section { padding: var(--section-py) 0; }

    /* ============================================================
       NAV
    ============================================================ */
    #navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 2rem;
      /* iOS Safari fix: use translate3d to force GPU compositing layer */
      -webkit-transform: translate3d(0,0,0);
      transform: translate3d(0,0,0);
      will-change: background-color;
      transition: background-color var(--transition), box-shadow var(--transition);
    }

	#nav-wrap {
		display: flex;
		flex-direction: row;
		border: 0px solid orange;
	}

    #navbar.scrolled {
      background-color: rgba(255,255,255,0.96);
      -webkit-backdrop-filter: blur(16px);
      backdrop-filter: blur(16px);
      box-shadow: 0 2px 24px rgba(0,0,0,0.08);
    }
    #navbar .nav-logo img {
      height: 44px;
      width: auto;
    }
    /* Placeholder logo SVG */
    .logo-placeholder {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
    }
    .logo-placeholder svg { height: 40px; width: auto; }
    .logo-placeholder span {
      font-family: var(--font-hero);
      font-size: 1.4rem;
      letter-spacing: 0.04em;
      color: #fff;
      transition: color var(--transition);
    }
    #navbar.scrolled .logo-placeholder span { color: var(--color-primary); }
    #navbar.scrolled .logo-placeholder svg path.logo-fill { fill: var(--color-primary); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    .nav-links a {
      font-family: var(--font-title);
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      color: #fff;
      transition: color var(--transition), opacity var(--transition);
      opacity: 0.9;
    }
    .nav-links a:hover { opacity: 1; color: var(--color-third); }
    #navbar.scrolled .nav-links a { color: var(--color-dark); }
    #navbar.scrolled .nav-links a:hover { color: var(--color-primary); }
    .nav-cart {
      position: relative;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      display: flex;
      align-items: center;
    }
    .nav-cart .material-icons-round { font-size: 1.5rem; color: #fff; }
    #navbar.scrolled .nav-cart .material-icons-round { color: var(--color-dark); }
    .cart-count {
      position: absolute;
      top: -6px; right: -8px;
      background: var(--color-third);
      color: #fff;
      font-family: var(--font-title);
      font-size: 0.65rem;
      font-weight: 700;
      width: 18px; height: 18px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      display: none;
    }

    /* Hamburger */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: background var(--transition);
    }
    #navbar.scrolled .nav-hamburger span { background: var(--color-dark); }

    /* Cart button — always visible in the top bar (both desktop and mobile) */
    .nav-cart {
      position: relative;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .nav-cart .material-icons-round { font-size: 1.5rem; color: #fff; transition: color var(--transition); }
    #navbar.scrolled .nav-cart .material-icons-round { color: var(--color-dark); }
    .cart-count {
      position: absolute;
      top: -4px; right: -6px;
      background: var(--color-third);
      color: #fff;
      font-family: var(--font-title);
      font-size: 0.62rem;
      font-weight: 700;
      width: 18px; height: 18px;
      border-radius: 50%;
      align-items: center;
      justify-content: center;
      display: none;           /* shown via JS when count > 0 */
    }

    /* Right cluster in navbar: cart + hamburger, always together */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 0.75rem;
	  border: 0px solid red;
		margin: 0 0 0 20px;
    }

    /* Mobile nav overlay backdrop */
    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 998;
      -webkit-tap-highlight-color: transparent;
    }
    .nav-overlay.open { display: block; }

    /* ── Desktop nav links (inside .nav-links) ── */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    .nav-links a {
      font-family: var(--font-title);
      font-size: 0.88rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      color: #fff;
      transition: color var(--transition), opacity var(--transition);
      opacity: 0.9;
    }
    .nav-links a:hover { opacity: 1; color: var(--color-third); }
    #navbar.scrolled .nav-links a { color: var(--color-dark); }
    #navbar.scrolled .nav-links a:hover { color: var(--color-primary); }

    /* ── Mobile: drawer ── */
    @media (max-width: 768px) {
      .nav-hamburger { display: flex; }

      /* The link list slides in from the right as a drawer */
      .nav-links {
        position: fixed;
        top: 0;
        right: -110%;          /* start fully off-screen */
        bottom: 0;
        width: min(300px, 82vw);
        background: var(--color-bg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;   /* let close-btn sit at top naturally */
        gap: 0;
        padding: 0;
        margin: 0;
        transition: right 0.38s cubic-bezier(0.25,0.46,0.45,0.94);
        box-shadow: -6px 0 40px rgba(0,0,0,0.18);
        z-index: 1001;
        overflow: hidden;              /* Chrome clip fix: no internal scroll */
		height: 80vh 
      }
      .nav-links.open { right: 0; height: 80vh }

      /* Links inside the drawer */
      .nav-links a {
        color: var(--color-dark);
        font-size: 1rem;
        width: 100%;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        opacity: 1;
      }
      .nav-links a:first-of-type {
        /* push links below the close button */
        margin-top: 68px;
      }
      .nav-links a:hover { color: var(--color-primary); background: var(--color-surface); }
    }

    /* Close button — absolutely positioned inside the drawer */
    .nav-close-btn {
      display: none;
      position: absolute;
      top: 14px;
      right: 14px;
      background: var(--color-surface);
      border: none;
      cursor: pointer;
      width: 40px; height: 40px;
      padding: 0;
      border-radius: 50%;
      transition: background var(--transition);
      align-items: center;
      justify-content: center;
      color: var(--color-dark);
      z-index: 10;
      flex-shrink: 0;
    }
    .nav-close-btn:hover { background: #ddd8d2; }
    .nav-close-btn .material-icons-round { font-size: 1.3rem; line-height: 1; pointer-events: none; }
    @media (max-width: 768px) {
      .nav-close-btn { display: flex; }
    }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-video-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-video-wrap video,
    .hero-video-wrap img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .hero-video-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(8,20,51,0.72) 0%, rgba(84,107,142,0.55) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding-inline: 1.5rem;
      max-width: 900px;
    }
    .hero-eyebrow {
      font-family: var(--font-title);
      font-size: var(--size-detail);
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--color-third);
      margin-bottom: 1rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.2s ease forwards;
    }
    .hero-title {
      font-family: var(--font-hero);
      font-size: var(--size-hero);
      color: #fff;
      line-height: 1.0;
      margin-bottom: 1.25rem;
      opacity: 0;
      animation: fadeUp 0.9s 0.45s ease forwards;
    }
    .hero-subtitle {
      font-family: var(--font-title);
      font-size: var(--size-subtitle);
      font-weight: 400;
      color: rgba(255,255,255,0.88);
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: fadeUp 0.9s 0.7s ease forwards;
    }
    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.9s 0.9s ease forwards;
    }
    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      opacity: 0.7;
      animation: bounce 2s infinite;
    }
    .hero-scroll{
      font-family: var(--font-title);
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      color: #fff;
      text-transform: uppercase;
    }
    .hero-scroll .material-icons-round { color: #fff; font-size: 1.2rem; 
}

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }

    /* ============================================================
       SPONSORS
    ============================================================ */
    #sponsors {
      background: var(--color-surface);
      padding: 4rem 0;
    }
    .sponsors-header { text-align: center; margin-bottom: 3rem; }
    .sponsors-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 2rem;
      align-items: center;
    }
    .sponsor-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.2rem;
      border-radius: var(--radius-md);
      filter: grayscale(1) opacity(0.45);
      transition: filter var(--transition), transform var(--transition);
      cursor: pointer;
    }
    .sponsor-logo:hover { filter: grayscale(0) opacity(1); transform: scale(1.06); }
    .sponsor-logo svg { width: 100%; max-width: 120px; height: 50px; }

	/* Adventure Partners sub-section */
    .adventure-partners {
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 1px solid rgba(0,0,0,0.08);
      padding-bottom: 2rem;
    }
    .adventure-partners-header {
      text-align: center;
      margin-bottom: 2rem;
    }
    .adventure-partners-header .section-label { margin-bottom: 0.2rem; }
    .adventure-partners-title {
      font-family: var(--font-title);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--color-text);
      letter-spacing: 0.02em;
    }
    .partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 1.25rem;
      align-items: center;
    }
    .partner-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0.75rem;
      border-radius: var(--radius-sm);
      filter: grayscale(1) opacity(0.38);
      transition: filter var(--transition), transform var(--transition);
      cursor: pointer;
    }
    .partner-logo:hover { filter: grayscale(0) opacity(1); transform: scale(1.08); }
    .partner-logo img { width: 100%; max-width: 80px; height: 34px; }

    /* ============================================================
       EXPEDITION
    ============================================================ */
    #expedition {
      background: var(--color-dark);
      color: #fff;
      /* scroll room: 4 destinations × 100vh each */
      min-height: 500vh;
      position: relative;
    }

    /* Sticky viewport container */
    .exp-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
    }

    .expedition-header {
      text-align: center;
      padding: 4rem 0 1.5rem;
      flex-shrink: 0;
    }
    .expedition-header .section-title { color: #fff; }

    /* ── Single card ── */
    .exp-card-wrap {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 4rem;            /* room for side arrows */
      position: relative;
      min-height: 0;
    }

    .exp-card {
      width: 100%;
      max-width: 1000px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-md);
      display: flex;
      flex-direction: row;        /* globe LEFT, content RIGHT */
      overflow: hidden;
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    /* ── Globe pane ── */
    .exp-globe-pane {
      flex: 0 0 42%;
      background: rgba(0,0,0,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      position: relative;
	  /*background: var(--color-surface);*/
    }
    #exp-globe-canvas {
      width: 100%;
      max-width: 360px;
      aspect-ratio: 1;
      display: block;
      cursor: grab;
      border-radius: 50%;
    }
    #exp-globe-canvas:active { cursor: grabbing; }

    /* ── Content pane ── */
    .exp-content-pane {
      flex: 1;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    /* Destination image */
    .exp-dest-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      flex-shrink: 0;
      transition: opacity 0.4s ease;
    }

    .exp-text-area {
      padding: 1.5rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      flex: 1;
    }

    .exp-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      background: var(--color-third);
      color: var(--color-dark);
      font-family: var(--font-title);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.28rem 0.7rem;
      border-radius: var(--radius-pill);
      width: fit-content;
    }
    .exp-dest-name {
      font-family: var(--font-hero);
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: #fff;
      line-height: 1;
    }
    .exp-dest-desc {
      font-size: 0.88rem;
      line-height: 1.7;
      color: rgba(255,255,255,0.72);
    }

    /* ── Nav arrows ── */
    .exp-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.22);
      background: rgba(255,255,255,0.06);
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background var(--transition), border-color var(--transition), transform var(--transition);
      z-index: 5;
      backdrop-filter: blur(8px);
    }
    .exp-arrow:hover {
      background: var(--color-third);
      border-color: var(--color-third);
      color: var(--color-dark);
      transform: translateY(-50%) scale(1.1);
    }
    .exp-arrow.prev { left: 0.5rem; }
    .exp-arrow.next { right: 0.5rem; }
    .exp-arrow:disabled {
      opacity: 0.25;
      cursor: default;
      pointer-events: none;
    }

    /* ── Timeline below card ── */
    .exp-timeline {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      position: relative;
      padding: 1.25rem 0 1.5rem;
      flex-shrink: 0;
		
    }
    .exp-timeline::before {
      content: '';
      position: absolute;
      top: calc(1.25rem + 11px);
      left: 15%;
      right: 15%;
      height: 2px;
      background: rgba(255,255,255,0.12);
    }
    /* progress fill */
    .exp-timeline::after {
      content: '';
      position: absolute;
      top: calc(1.25rem + 11px);
      left: 15%;
      height: 2px;
      background: var(--color-third);
      transition: width 0.5s ease;
      width: var(--tl-progress, 0%);
		
    }
    .exp-tl-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      cursor: pointer;
      position: relative;
      padding: 0 0.25rem;
    }
    .exp-tl-label {
      font-family: var(--font-title);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      text-align: center;
      transition: color 0.3s;
      white-space: nowrap;
		margin: -20px 0 0px 0;
		border: 0px solid red;
    }
    .exp-tl-item.active .exp-tl-label { color: var(--color-third); }
    .exp-tl-dot {
      width: 14px; height: 14px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.2);
      background: var(--color-dark);
      position: relative; z-index: 2;
      transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
      flex-shrink: 0;
    }
    .exp-tl-item.active .exp-tl-dot {
      border-color: var(--color-third);
      background: var(--color-third);
      transform: scale(1.4);
      box-shadow: 0 0 0 4px rgba(200,169,90,0.2);
    }
    .exp-tl-country {
      font-size: 0.6rem;
      color: rgba(255,255,255,0.28);
      text-align: center;
      transition: color 0.3s;
      white-space: nowrap;
    }
    .exp-tl-item.active .exp-tl-country { color: rgba(255,255,255,0.6); }

    /* ── Counter ── */
    .exp-counter {
      text-align: center;
      font-family: var(--font-title);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      color: rgba(255,255,255,0.35);
      padding-bottom: 1rem;
      flex-shrink: 0;
    }
    .exp-counter strong { color: var(--color-third); }

    /* ── MOBILE ── */
    @media (max-width: 768px) {
      #expedition { min-height: 500vh; }

      .exp-card-wrap { padding: 0 3rem; }

      .exp-card {
        flex-direction: column;   /* globe TOP, content BELOW */
        max-height: calc(100vh - 180px);
        overflow-y: auto;
      }

      .exp-globe-pane {
		  display: none;
        flex: 0 0 auto;
        width: 100%;
        height: 220px;
        padding: 1rem;
      }

      .exp-dest-img { height: 200px; }

      .exp-text-area { padding: 1rem 1.25rem; }

      .exp-arrow { width: 40px; height: 40px; }
      .exp-arrow.prev { left: 0.25rem; }
      .exp-arrow.next { right: 0.25rem; }

      .exp-timeline::before { left: 5%; right: 5%; }
      .exp-timeline::after  { left: 5%; }
    }
    /* ============================================================
       DONATE
    ============================================================ */
    #donate {
      background: var(--color-bg);
    }
    .donate-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .donate-video-wrap {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      aspect-ratio: 9/16;
      max-height: 600px;
      background: var(--color-dark);
    }

	#reel {
		width: 100%;
		margin: 0 auto;
		aspect-ratio: 9 / 16;
	}
    .donate-video-wrap video,
    .donate-video-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .donate-content { display: flex; flex-direction: column; gap: 1.5rem; }
    .donate-content .section-title { color: var(--color-dark); }
    .donate-content p { color: var(--color-muted); line-height: 1.8; }
    .donate-buttons { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
    .donate-buttons .btn { min-width: 220px; justify-content: center; }

    @media (max-width: 678px) {
      .donate-layout {
        grid-template-columns: 1fr;
      }
      .donate-video-wrap { order: -1; max-height: 420px; }
    }

    /* ============================================================
       HISTORY
    ============================================================ */
    #history {
      background: var(--color-surface);
    }
    .history-header { text-align: center; margin-bottom: 3rem; }
    .history-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
      margin-bottom: 4rem;
    }
    @media (max-width: 678px) {
      .history-layout {
        grid-template-columns: 1fr;
      }
    }

    /* Slider */
    .slider-wrap {
      position: relative;
      border-radius: var(--radius-md);
      overflow: hidden;
      aspect-ratio: 4/3;
      background: var(--color-dark);
    }
    .slider-track {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.5s ease;
    }
    .slider-track img {
      min-width: 100%;
      height: 100%;
      object-fit: cover;
      flex-shrink: 0;
    }
    .slider-btn {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.18);
      backdrop-filter: blur(8px);
		  -webkit-backdrop-filter: blur(8px); /* Crucial for Safari compatibility */
      border: none;
      border-radius: 50%;
      width: 42px; height: 42px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      transition: background var(--transition);
      z-index: 2;
    }
    .slider-btn:hover { background: rgba(255,255,255,0.35); }
    .slider-btn.prev { left: 0.75rem; }
    .slider-btn.next { right: 0.75rem; }

    .history-text h3 {
      font-family: var(--font-hero);
      font-size: var(--size-title);
      color: var(--color-dark);
      margin-bottom: 1rem;
    }
    .history-text p { color: var(--color-muted); line-height: 1.85; }

    /* Past expeditions grid */
    .past-exp-title {
      font-family: var(--font-hero);
      font-size: 1.8rem;
      color: var(--color-dark);
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 0.75rem;
    }
    .gallery-item {
      position: relative;
      aspect-ratio: 4/3;
      border-radius: var(--radius-sm);
      overflow: hidden;
      cursor: pointer;
      background: var(--color-dark);
    }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-item .gallery-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(0deg, rgba(0,0,0,0.82), transparent);
      color: #fff;
      font-family: var(--font-title);
      font-size: 0.8rem;
      font-weight: 600;
      padding: 0.6rem 0.8rem 0.8rem;
      transform: translateY(0);
      transition: transform 0.3s ease;
    }

    /* Lightbox */
    #lightbox {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.92);
      z-index: 2000;
      align-items: center;
      justify-content: center;
    }
    #lightbox.open { display: flex; }
    #lightbox img {
      max-width: 90vw;
      max-height: 85vh;
      border-radius: var(--radius-sm);
      object-fit: contain;
    }
    #lightbox-close {
      position: absolute;
      top: 1.5rem; right: 1.5rem;
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
      font-size: 2rem;
      display: flex;
    }

    /* ============================================================
       MERCH
    ============================================================ */
    #merch {
      background: var(--color-bg);
    }
    .merch-header { text-align: center; margin-bottom: 3rem; }
    .merch-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
    }
    .product-card {
      background: var(--color-surface);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .product-slider {
      position: relative;
      aspect-ratio: 1;
      overflow: hidden;
      background: #e8e4df;
    }
    .product-slider-track {
      display: flex;
      height: 100%;
      transition: transform 0.4s ease;
    }
    .product-slider-track img {
      min-width: 100%;
      height: 100%;
      object-fit: cover;
      flex-shrink: 0;
    }
    .product-slider-btn {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,0.7);
      border: none;
      border-radius: 50%;
      width: 32px; height: 32px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background var(--transition);
      z-index: 2;
    }
    .product-slider-btn:hover { background: #fff; }
    .product-slider-btn.prev { left: 0.5rem; }
    .product-slider-btn.next { right: 0.5rem; }

    .product-info {
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      flex: 1;
    }
    .product-type {
      font-family: var(--font-title);
      font-size: var(--size-disclaimer);
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-secondary);
    }
    .product-name-row {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 0.5rem;
    }
    .product-name {
      font-family: var(--font-title);
      font-weight: 600;
      font-size: 1rem;
      color: var(--color-dark);
    }
    .product-price {
      font-family: var(--font-hero);
      font-size: 1.3rem;
      color: var(--color-primary);
      white-space: nowrap;
    }
    .product-options { display: flex; flex-direction: column; gap: 0.6rem; }
    .options-label {
      font-family: var(--font-title);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--color-muted);
    }
    .color-options, .size-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }
    .color-btn {
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 2px solid transparent;
      cursor: pointer;
      transition: border-color var(--transition), transform var(--transition);
    }
    .color-btn:hover, .color-btn.selected { border-color: var(--color-dark); transform: scale(1.15); }
    .size-btn {
      width: 34px; height: 34px;
      border-radius: 50%;
      border: 1.5px solid var(--color-muted);
      background: transparent;
      font-family: var(--font-title);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      cursor: pointer;
      transition: background var(--transition), color var(--transition), border-color var(--transition);
      display: flex; align-items: center; justify-content: center;
    }
    .size-btn:hover, .size-btn.selected {
      background: var(--color-primary);
      color: #fff;
      border-color: var(--color-primary);
    }
    .add-to-cart-btn {
      margin-top: auto;
      width: 100%;
      justify-content: center;
    }

    /* Cart Drawer */
    #cart-drawer {
      position: fixed;
      top: 0; right: -420px;
      width: min(420px, 100vw);
      height: 100vh;
      background: var(--color-bg);
      box-shadow: -4px 0 40px rgba(0,0,0,0.16);
      z-index: 1500;
      display: flex;
      flex-direction: column;
      transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
      padding: 2rem;
      gap: 1.5rem;
    }
    #cart-drawer.open { right: 0; }
    .cart-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .cart-header h2 {
      font-family: var(--font-hero);
      font-size: 1.8rem;
      color: var(--color-dark);
    }
    .cart-close {
      background: none; border: none; cursor: pointer;
      display: flex; align-items: center; color: var(--color-muted);
    }
    .cart-items { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 1rem; }
    .cart-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.75rem;
      background: var(--color-surface);
      border-radius: var(--radius-sm);
    }
    .cart-item-info { flex: 1; }
    .cart-item-name { font-family: var(--font-title); font-weight: 600; font-size: 0.9rem; }
    .cart-item-details { font-size: var(--size-disclaimer); color: var(--color-muted); }
    .cart-item-price { font-family: var(--font-hero); font-size: 1.1rem; color: var(--color-primary); }
    .cart-remove { background: none; border: none; cursor: pointer; color: var(--color-muted); display: flex; }

    /* Cart quantity controls */
    .cart-qty-controls {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 0.3rem;
    }
    .cart-qty-btn {
      width: 24px; height: 24px;
      border-radius: 50%;
      border: 1.5px solid var(--color-muted);
      background: transparent;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      line-height: 1;
      color: var(--color-dark);
      transition: background var(--transition), border-color var(--transition), color var(--transition);
      font-family: var(--font-title);
      font-weight: 600;
      padding: 0;
    }
    .cart-qty-btn:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
    .cart-qty-num {
      font-family: var(--font-title);
      font-weight: 700;
      font-size: 0.9rem;
      min-width: 20px;
      text-align: center;
      color: var(--color-dark);
    }
    .cart-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid var(--color-surface);
      padding-top: 1rem;
      font-family: var(--font-title);
      font-weight: 600;
    }
    .cart-total-amount { font-family: var(--font-hero); font-size: 1.6rem; color: var(--color-primary); }
    .cart-empty {
      text-align: center;
      color: var(--color-muted);
      padding: 2rem;
      font-size: var(--size-detail);
    }
    #cart-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 1400;
    }
    #cart-overlay.open { display: block; }

    /* ============================================================
       EVENTOS
    ============================================================ */
    #eventos {
      background: var(--color-surface);
    }
    .eventos-header { text-align: center; margin-bottom: 3rem; }
    .eventos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 2rem;
    }
    .event-card {
      background: var(--color-bg);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .event-image {
      aspect-ratio: 16/9;
      overflow: hidden;
      background: var(--color-dark);
    }
    .event-image img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .event-card:hover .event-image img { transform: scale(1.05); }
    .event-info {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      flex: 1;
    }
    .event-type {
      font-family: var(--font-title);
      font-size: var(--size-disclaimer);
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--color-secondary);
    }
    .event-name { font-family: var(--font-hero); font-size: 1.5rem; color: var(--color-dark); }
    .event-date {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-family: var(--font-title);
      font-size: var(--size-detail);
      color: var(--color-muted);
    }
    .event-price {
      font-family: var(--font-hero);
      font-size: 1.4rem;
      color: var(--color-primary);
    }
    .inscribirse-btn { width: 100%; justify-content: center; margin-top: auto; }

    /* ============================================================
       VLOG
    ============================================================ */
    #vlog {
      background: var(--color-dark);
      color: #fff;
    }
    #vlog .section-title { color: #fff; }
    #vlog .section-subtitle { color: rgba(255,255,255,0.65); margin-bottom: 3rem; }
    .vlog-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }
    @media (max-width: 768px) { .vlog-layout { grid-template-columns: 1fr; } }
    .vlog-embed { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/9; }
    .vlog-embed iframe { width: 100%; height: 100%; border: 0; }
    .vlog-text { display: flex; flex-direction: column; gap: 1.5rem; }
    .vlog-text p { color: rgba(255,255,255,0.75); line-height: 1.85; }
    .social-icons {
      display: flex;
      gap: 1.2rem;
      align-items: center;
      flex-wrap: wrap;
    }
    .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 46px; height: 46px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.25);
      transition: background var(--transition), border-color var(--transition);
      text-decoration: none;
    }
    .social-icon:hover { background: var(--color-primary); border-color: var(--color-primary); }
    .social-icon svg { width: 20px; height: 20px; fill: #fff; }

    /* ============================================================
       NEWSLETTER
    ============================================================ */
    #newsletter {
      background: var(--color-primary);
      text-align: center;
    }
    #newsletter .section-title { color: #fff; margin-bottom: 0.5rem; }
    #newsletter .section-subtitle { color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; }
    .newsletter-form {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
      justify-content: center;
      max-width: 600px;
      margin-inline: auto;
    }
    .newsletter-form input {
      flex: 1;
      min-width: 180px;
      padding: 0.85rem 1.25rem;
      border-radius: var(--radius-pill);
      border: 2px solid rgba(255,255,255,0.3);
      background: rgba(255,255,255,0.1);
      color: #fff;
      font-family: var(--font-title);
      font-size: 0.9rem;
      outline: none;
      transition: border-color var(--transition);
    }
    .newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
    .newsletter-form input:focus { border-color: rgba(255,255,255,0.8); }
    .newsletter-msg {
      margin-top: 1rem;
      font-family: var(--font-title);
      font-size: var(--size-detail);
      color: rgba(255,255,255,0.85);
      height: 1.2em;
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--color-dark);
      color: rgba(255,255,255,0.75);
      padding: 4rem 0 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
    .footer-logo { margin-bottom: 1rem; }
    .footer-logo span { font-family: var(--font-hero); font-size: 1.6rem; color: #fff; }
    .footer-tagline { font-size: var(--size-detail); line-height: 1.7; }
    .footer-col h4 {
      font-family: var(--font-title);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--color-third);
      margin-bottom: 1rem;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-col ul a {
      text-decoration: none;
      font-size: var(--size-detail);
      transition: color var(--transition);
    }
    .footer-col ul a:hover { color: #fff; }
    .footer-email {
      font-size: var(--size-detail);
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .footer-email a { color: rgba(255,255,255,0.75); text-decoration: none; }
    .footer-email a:hover { color: #fff; }
    .footer-social { display: flex; gap: 0.75rem; }
    .footer-social .social-icon { width: 36px; height: 36px; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.5rem;
      font-size: var(--size-disclaimer);
    }

    /* ============================================================
       UTILITIES
    ============================================================ */
    .text-center { text-align: center; }
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.visible { opacity: 1; transform: none; }
