/* ═══════════════════════════════════════════════════════
   NORTHLINE ICELAND — Premium Stylesheet
   ═══════════════════════════════════════════════════════ */

/* ── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: #F5F2ED;
  color: #2C2318;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  opacity: 0;
  animation: pageIn .55s cubic-bezier(.4,0,.2,1) .05s forwards;
}
body.leaving {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .32s ease, transform .32s ease;
  animation: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:root {
  --gold:    #9B7554;
  --gold-lt: #C4A882;
  --cream:   #F5F2ED;
  --dark:    #2C2318;
  --mid:     #6B5744;
  --border:  rgba(155,117,84,.22);
}


/* ═══════════════════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════════════════ */

@keyframes pageIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroTextReveal {
  from { opacity: 0; transform: translateY(30px); filter: blur(10px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

@keyframes kenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.09); }
}

/* Northern Lights aurora orbs */
@keyframes orb1 {
  0%   { transform: translate(0,0)     scale(1);    opacity: .18; }
  33%  { transform: translate(70px,50px)  scale(1.15); opacity: .24; }
  66%  { transform: translate(-40px,80px) scale(.9);   opacity: .14; }
  100% { transform: translate(0,0)     scale(1);    opacity: .18; }
}
@keyframes orb2 {
  0%   { transform: translate(0,0)       scale(1);    opacity: .13; }
  40%  { transform: translate(-80px,-40px) scale(1.1); opacity: .20; }
  70%  { transform: translate(50px,-70px)  scale(.95);  opacity: .10; }
  100% { transform: translate(0,0)       scale(1);    opacity: .13; }
}
@keyframes orb3 {
  0%   { transform: translate(0,0)      scale(1);    opacity: .09; }
  50%  { transform: translate(60px,-50px) scale(1.12); opacity: .16; }
  100% { transform: translate(0,0)      scale(1);    opacity: .09; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: .5; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(37,211,102,.35); }
  60%       { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes shimmerSweep {
  from { transform: translateX(-200%) skewX(-18deg); }
  to   { transform: translateX(350%)  skewX(-18deg); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL SYSTEM
   ═══════════════════════════════════════════════════════ */

[data-reveal] {
  opacity: 0;
  transition: opacity .75s cubic-bezier(.4,0,.2,1),
              transform .75s cubic-bezier(.4,0,.2,1),
              filter .75s ease;
  will-change: opacity, transform;
}
[data-reveal="up"]     { transform: translateY(40px); }
[data-reveal="left"]   { transform: translateX(-40px); }
[data-reveal="right"]  { transform: translateX(40px); }
[data-reveal="scale"]  { transform: scale(.93); }
[data-reveal="fade"]   { }

[data-reveal].is-visible {
  opacity: 1;
  transform: none !important;
  filter: none;
}
[data-delay="1"].is-visible { transition-delay: .08s; }
[data-delay="2"].is-visible { transition-delay: .16s; }
[data-delay="3"].is-visible { transition-delay: .24s; }
[data-delay="4"].is-visible { transition-delay: .32s; }
[data-delay="5"].is-visible { transition-delay: .40s; }
[data-delay="6"].is-visible { transition-delay: .48s; }


/* ═══════════════════════════════════════════════════════
   HAMBURGER BUTTON
   ═══════════════════════════════════════════════════════ */

#menu-btn {
  position: fixed;
  top: 28px; right: 28px;
  z-index: 400;
  width: 54px; height: 54px;
  background: var(--dark);
  border: none; cursor: pointer;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5.5px;
  transition: background .25s ease, transform .2s ease;
}
#menu-btn:hover { background: var(--gold); transform: scale(1.04); }
#menu-btn span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gold-lt);
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease;
}
#menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════════════════
   NAV OVERLAY
   ═══════════════════════════════════════════════════════ */

#nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 350;
  opacity: 0; pointer-events: none;
  transition: opacity .38s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
#nav-overlay.open { opacity: 1; pointer-events: all; }


/* ═══════════════════════════════════════════════════════
   SLIDE-OUT NAV
   ═══════════════════════════════════════════════════════ */

#site-nav {
  position: fixed;
  top: 0; right: 0;
  width: 300px; height: 100%;
  background: var(--dark);
  z-index: 360;
  transform: translateX(105%);
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  padding: 84px 38px 44px;
  overflow-y: auto;
}
#site-nav.open { transform: translateX(0); }

.nav-logo-bar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 44px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(245,242,237,.07);
}
.nav-logo-bar svg { width: 34px; height: 34px; flex-shrink: 0; }
.nav-logo-bar span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(245,242,237,.55);
}

.nav-group-label {
  font-size: 9px; letter-spacing: .4em; text-transform: uppercase;
  color: rgba(196,168,130,.65); margin-bottom: 10px; margin-top: 26px;
}
#site-nav > a, #site-nav > p + a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400;
  color: rgba(245,242,237,.68);
  padding: 10px 0;
  border-bottom: 1px solid rgba(245,242,237,.05);
  transition: color .2s ease, padding-left .2s ease;
}
#site-nav > a:hover { color: rgba(245,242,237,.95); padding-left: 6px; }

.nav-sub li a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: .07em;
  color: rgba(245,242,237,.4);
  padding: 6px 0 6px 14px;
  transition: color .2s ease, padding-left .2s ease;
}
.nav-sub li a:hover { color: rgba(245,242,237,.78); padding-left: 20px; }

.nav-cta-wrap { margin-top: auto; padding-top: 38px; }
.nav-cta-btn {
  display: block;
  text-align: center;
  background: var(--gold);
  color: #fff;
  padding: 16px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 10px; letter-spacing: .26em;
  text-transform: uppercase;
  transition: background .2s ease !important;
}
.nav-cta-btn:hover { background: #7d5e41 !important; }


/* ═══════════════════════════════════════════════════════
   SHARED UTILITIES
   ═══════════════════════════════════════════════════════ */

.section-label {
  font-size: 10px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 50px); font-weight: 400;
  line-height: 1.1; color: var(--dark); margin-bottom: 18px;
}
.section-body {
  font-size: 14px; color: var(--mid); line-height: 1.9; max-width: 600px;
}
.divider {
  width: 44px; height: 1px; background: var(--gold); margin: 20px 0;
  transform-origin: left;
}
.divider.is-visible {
  animation: lineGrow .6s cubic-bezier(.4,0,.2,1) .2s both;
}

.btn-primary {
  display: inline-block; padding: 14px 40px;
  background: var(--gold); color: #fff;
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
  transition: background .22s ease, transform .18s ease, box-shadow .22s ease;
}
.btn-primary:hover {
  background: #7d5e41;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(155,117,84,.35);
}

.btn-outline {
  display: inline-block; padding: 13px 38px;
  border: 1px solid rgba(245,242,237,.45); color: rgba(245,242,237,.85);
  font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase;
  transition: border-color .22s ease, color .22s ease, transform .18s ease;
}
.btn-outline:hover {
  border-color: rgba(245,242,237,.9);
  color: #fff;
  transform: translateY(-2px);
}

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  background: #25D366; color: #fff;
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  transition: background .2s ease, transform .18s ease;
  animation: waPulse 3.5s ease-in-out 1.5s infinite;
}
.btn-wa:hover { background: #1aaa52; transform: translateY(-2px); animation: none; }

.btn-email {
  display: inline-block; padding: 14px 36px;
  border: 1px solid rgba(245,242,237,.28); color: rgba(245,242,237,.8);
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  transition: border-color .2s ease, color .2s ease;
}
.btn-email:hover { border-color: rgba(245,242,237,.65); color: #fff; }


/* ═══════════════════════════════════════════════════════
   HOME: HERO
   ═══════════════════════════════════════════════════════ */

#home {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}

/* Parallax wrapper — JS controls translateY */
#hero-parallax {
  position: absolute; inset: 0;
  will-change: transform;
}

/* Hero image — Ken Burns zoom */
#hero-bg {
  position: absolute; inset: -10%;
  background-image: url('https://images.unsplash.com/photo-1480498244787-3b777eae847c?w=1800&q=90&fit=crop&auto=format');
  background-size: cover; background-position: center;
  animation: kenBurns 26s ease-in-out infinite alternate;
}

/* Cool dark overlay — deep blue-black for Iceland feel */
#hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(4,8,18,.28)  0%,
    rgba(5,12,26,.50) 55%,
    rgba(5,12,26,.72) 100%);
}

/* Northern Lights aurora orbs */
.aurora-wrap {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none; z-index: 1;
}
.aurora-orb {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(60px);
}
.aurora-orb-1 {
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(0,200,180,.22) 0%, transparent 65%);
  top: -20%; left: -15%;
  animation: orb1 22s ease-in-out infinite;
}
.aurora-orb-2 {
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(80,100,240,.17) 0%, transparent 65%);
  bottom: -15%; right: -10%;
  animation: orb2 28s ease-in-out infinite;
}
.aurora-orb-3 {
  width: 600px; height: 500px;
  background: radial-gradient(ellipse, rgba(170,80,210,.12) 0%, transparent 65%);
  top: 30%; right: 10%;
  animation: orb3 18s ease-in-out infinite;
}

/* Hero text content */
.hero-content {
  position: relative; z-index: 2;
  max-width: 800px; padding: 0 32px;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: .38em; text-transform: uppercase;
  color: #fff; margin-bottom: 24px;
  text-shadow: 0 1px 12px rgba(0,0,0,.6);
  animation: heroTextReveal .9s cubic-bezier(.4,0,.2,1) .3s both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(50px, 9vw, 96px); font-weight: 300;
  line-height: 1.04; color: #F5F2ED; margin-bottom: 28px;
  animation: heroTextReveal 1s cubic-bezier(.4,0,.2,1) .6s both;
}
.hero-title em { font-style: italic; color: var(--gold-lt); }
.hero-sub {
  font-size: 16px; letter-spacing: .01em;
  color: rgba(245,242,237,.95);
  max-width: 480px; margin: 0 auto 44px; line-height: 1.9;
  text-shadow: 0 1px 10px rgba(0,0,0,.55);
  animation: heroTextReveal .9s cubic-bezier(.4,0,.2,1) .9s both;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: heroTextReveal .9s cubic-bezier(.4,0,.2,1) 1.1s both;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(245,242,237,.4); font-size: 9px; letter-spacing: .32em; text-transform: uppercase;
  animation: scrollBounce 2.5s ease-in-out 2s infinite;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(245,242,237,.45), transparent);
}


/* ═══════════════════════════════════════════════════════
   HOME: WHY NORTHLINE
   ═══════════════════════════════════════════════════════ */

#why {
  background: #fff;
  padding: 100px 24px;
}
.why-inner { max-width: 1100px; margin: 0 auto; }

.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  margin-top: 60px;
}
@media (max-width: 900px) { .pillars { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  padding: 44px 34px;
  border-right: 1px solid var(--border);
  transition: background .25s ease;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: rgba(155,117,84,.03); }

@media (max-width: 900px) {
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 1px solid var(--border); }
}

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px; font-weight: 300;
  color: rgba(155,117,84,.32); line-height: 1; margin-bottom: 18px;
}
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 400; color: var(--dark); margin-bottom: 10px;
}
.pillar-body { font-size: 12.5px; color: var(--mid); line-height: 1.88; }


/* ═══════════════════════════════════════════════════════
   HOME: TOURS OVERVIEW CARDS
   ═══════════════════════════════════════════════════════ */

#tours-overview { padding: 100px 24px; background: var(--cream); }
.tours-inner { max-width: 1100px; margin: 0 auto; }

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px; margin-top: 56px;
}
@media (max-width: 680px) { .overview-grid { grid-template-columns: 1fr; } }

.overview-card {
  position: relative; height: 400px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer;
  transition: box-shadow .4s ease;
}
.overview-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,.35), 0 0 0 1px rgba(196,168,130,.22);
  z-index: 1;
}
.overview-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .75s cubic-bezier(.4,0,.2,1);
}
.overview-card:hover img { transform: scale(1.07); }

/* Gradient overlay */
.overview-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(5,10,20,.92) 0%,
    rgba(5,10,20,.38) 50%,
    transparent 100%);
  transition: opacity .4s ease;
}
.overview-card:hover::after { opacity: .85; }

/* Shine sweep on hover */
.overview-card::before {
  content: ''; position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.07) 50%, transparent 62%);
  transform: translateX(-200%) skewX(-18deg);
  transition: none;
  pointer-events: none;
}
.overview-card:hover::before {
  animation: shimmerSweep .7s cubic-bezier(.4,0,.2,1) forwards;
}

/* Card content */
.overview-card-content {
  position: relative; z-index: 4;
  padding: 32px 34px;
}
.overview-tag {
  font-size: 9.5px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 8px;
  transition: letter-spacing .3s ease;
}
.overview-card:hover .overview-tag { letter-spacing: .38em; }
.overview-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; color: #fff;
  margin-bottom: 7px; line-height: 1.12;
  transition: transform .3s ease;
}
.overview-card:hover .overview-name { transform: translateY(-3px); }
.overview-price {
  font-size: 12px; color: rgba(245,242,237,.52);
  margin-bottom: 18px;
}
.overview-link {
  display: inline-block;
  font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-lt); border-bottom: 1px solid rgba(196,168,130,.45);
  padding-bottom: 3px;
  transition: color .25s ease, border-color .25s ease, letter-spacing .25s ease;
}
.overview-card:hover .overview-link {
  color: #fff; border-color: rgba(255,255,255,.5); letter-spacing: .32em;
}

/* Full-card clickable link */
.card-cover-link {
  position: absolute; inset: 0; z-index: 5;
}

/* Transfer card is full width but shorter */
.overview-transfer { grid-column: 1 / -1; height: 240px; }


/* ═══════════════════════════════════════════════════════
   HOME: BOOKING CTA
   ═══════════════════════════════════════════════════════ */

#booking {
  background: var(--dark);
  text-align: center;
  padding: 110px 24px;
  position: relative; overflow: hidden;
}

/* Subtle background shimmer */
#booking::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 50% 50%, rgba(155,117,84,.08) 0%, transparent 60%);
  animation: orb1 20s ease-in-out infinite;
  pointer-events: none;
}

#booking .section-label { color: var(--gold-lt); }
#booking .section-title { color: var(--cream); max-width: 560px; margin: 0 auto 14px; }
#booking .section-body { color: rgba(245,242,237,.52); margin: 0 auto 48px; }
#booking .divider { margin: 18px auto 32px; background: rgba(196,168,130,.35); }
.booking-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }


/* ═══════════════════════════════════════════════════════
   BOOKING WIDGET (calendar → WhatsApp)
   Used on the home page and every tour page.
   ═══════════════════════════════════════════════════════ */

.nl-booking { max-width: 940px; margin: 0 auto 2.75rem; text-align: left; }

.nlb-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 32px;
  box-shadow: 0 18px 50px rgba(44,35,24,.10);
}

.nlb-field { margin-bottom: 22px; }
.nlb-field:last-child { margin-bottom: 0; }

.nlb-label {
  display: block;
  font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 9px;
}
.nlb-opt {
  color: var(--mid); font-weight: 400;
  letter-spacing: .06em; text-transform: none; opacity: .7;
}

.nlb-select,
.nlb-input {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--dark);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nlb-select:focus,
.nlb-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(155,117,84,.12);
}
.nlb-select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239B7554' stroke-width='1.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
  padding-right: 38px;
}

.nlb-field-tour {
  margin-bottom: 26px; padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}

.nlb-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 34px; }

/* ── Calendar ─────────────────────────────────────── */
.nlb-cal-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.nlb-cal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--dark);
}
.nlb-nav {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--border); border-radius: 2px;
  color: var(--gold); cursor: pointer;
  transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}
.nlb-nav:hover:not(:disabled) { background: var(--cream); border-color: var(--gold); }
.nlb-nav:disabled { opacity: .28; cursor: default; }

.nlb-weekdays,
.nlb-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }

.nlb-weekdays { margin-bottom: 6px; }
.nlb-weekdays span {
  text-align: center;
  font-size: 9px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--mid); opacity: .6;
}

.nlb-day {
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: var(--dark);
  background: none; border: 1px solid transparent; border-radius: 2px;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.nlb-day:hover:not(:disabled):not(.nlb-empty) { background: var(--cream); border-color: var(--border); }
.nlb-day.nlb-empty { cursor: default; }
.nlb-day.nlb-past  { color: rgba(44,35,24,.22); cursor: default; }
.nlb-day.nlb-today:not(.nlb-selected) { border-color: var(--gold-lt); font-weight: 600; }
.nlb-day.nlb-selected {
  background: var(--gold); border-color: var(--gold);
  color: #fff; font-weight: 600;
}

/* ── Side column ──────────────────────────────────── */
.nlb-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.nlb-chip {
  font-family: 'Inter', sans-serif; font-size: 12px;
  color: var(--mid); background: var(--cream);
  border: 1px solid var(--border); border-radius: 2px;
  padding: 6px 11px; cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.nlb-chip:hover { border-color: var(--gold); color: var(--gold); }
.nlb-chip.is-active { background: var(--gold); border-color: var(--gold); color: #fff; }

.nlb-hint { font-size: 11.5px; color: var(--mid); opacity: .75; margin-top: 9px; line-height: 1.6; }

/* ── Summary + submit ─────────────────────────────── */
.nlb-summary {
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--mid);
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  min-height: 22px;
}
.nlb-summary.is-ready { color: var(--dark); }
.nlb-sum-strong { font-weight: 600; }
.nlb-sum-sep { color: var(--gold-lt); }

.nlb-submit {
  width: 100%; margin-top: 18px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: #25D366;
  border: 1px solid #25D366; border-radius: 2px;
  padding: 16px 24px; cursor: pointer;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}
.nlb-submit:hover:not(:disabled) { background: #1aaa52; border-color: #1aaa52; transform: translateY(-2px); }
.nlb-submit:disabled {
  background: rgba(44,35,24,.13); border-color: transparent;
  color: rgba(44,35,24,.38); cursor: not-allowed;
}

.nlb-note {
  font-size: 11.5px; line-height: 1.75; color: var(--mid);
  opacity: .8; margin-top: 14px; text-align: center;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 720px) {
  .nlb-panel { padding: 22px; }
  .nlb-grid  { grid-template-columns: 1fr; gap: 28px; }
  .nlb-submit { padding: 15px 20px; }
}


/* ═══════════════════════════════════════════════════════
   HOME: PHOTO GALLERY GRID
   ═══════════════════════════════════════════════════════ */

#photo-grid { padding: 100px 24px; background: #fff; }
.photo-grid-inner { max-width: 1100px; margin: 0 auto; }

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 4px;
  margin-top: 52px;
}

.photo-mosaic-item { overflow: hidden; position: relative; }
.photo-mosaic-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.photo-mosaic-item:hover img { transform: scale(1.06); }

/* Layout spans */
.photo-mosaic-item:nth-child(1) { grid-column: 1/4; grid-row: 1/2; }
.photo-mosaic-item:nth-child(2) { grid-column: 4/6; grid-row: 1/3; }
.photo-mosaic-item:nth-child(3) { grid-column: 6/7; grid-row: 1/2; }
.photo-mosaic-item:nth-child(4) { grid-column: 1/2; grid-row: 2/3; }
.photo-mosaic-item:nth-child(5) { grid-column: 2/4; grid-row: 2/3; }
.photo-mosaic-item:nth-child(6) { grid-column: 6/7; grid-row: 2/3; }
.photo-mosaic-item:nth-child(7) { grid-column: 1/3; grid-row: 3/4; }
.photo-mosaic-item:nth-child(8) { grid-column: 3/5; grid-row: 3/4; }
.photo-mosaic-item:nth-child(9) { grid-column: 5/7; grid-row: 3/4; }

@media (max-width: 900px) {
  .photo-mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(6, 180px);
  }
  .photo-mosaic-item:nth-child(1) { grid-column: 1/3; grid-row: 1/2; }
  .photo-mosaic-item:nth-child(2) { grid-column: 3/4; grid-row: 1/3; }
  .photo-mosaic-item:nth-child(3) { grid-column: 1/2; grid-row: 2/3; }
  .photo-mosaic-item:nth-child(4) { grid-column: 2/3; grid-row: 2/3; }
  .photo-mosaic-item:nth-child(5) { grid-column: 1/2; grid-row: 3/4; }
  .photo-mosaic-item:nth-child(6) { grid-column: 2/3; grid-row: 3/4; }
  .photo-mosaic-item:nth-child(7) { grid-column: 3/4; grid-row: 3/4; }
  .photo-mosaic-item:nth-child(8) { grid-column: 1/3; grid-row: 4/5; }
  .photo-mosaic-item:nth-child(9) { grid-column: 3/4; grid-row: 4/5; }
}
@media (max-width: 580px) {
  .photo-mosaic { display: grid; grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .photo-mosaic-item { grid-column: auto !important; grid-row: auto !important; height: 200px; }
}


/* ═══════════════════════════════════════════════════════
   HOME: HOW IT WORKS
   ═══════════════════════════════════════════════════════ */

#how { background: var(--cream); padding: 100px 24px; }
.how-inner { max-width: 1100px; margin: 0 auto; }

.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); margin-top: 64px;
}
@media (max-width: 768px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 44px 32px;
  border-right: 1px solid var(--border);
  transition: background .25s ease;
}
.step:last-child { border-right: none; }
.step:hover { background: rgba(155,117,84,.04); }
@media (max-width: 768px) {
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--border); }
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px; font-weight: 300;
  color: rgba(155,117,84,.32); line-height: 1; margin-bottom: 20px;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 400; color: var(--dark); margin-bottom: 11px;
}
.step-body { font-size: 12.5px; color: var(--mid); line-height: 1.88; }


/* ═══════════════════════════════════════════════════════
   POLICIES
   ═══════════════════════════════════════════════════════ */

#policy { background: #EDE9E2; padding: 84px 24px; }
.policy-inner { max-width: 1100px; margin: 0 auto; }
.policy-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin-top: 48px;
  background: var(--border);
}
@media (max-width: 900px) { .policy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .policy-grid { grid-template-columns: 1fr; } }
.policy-item { background: #fff; padding: 32px 28px; transition: background .25s ease; }
.policy-item:hover { background: var(--cream); }
.policy-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 400; color: var(--dark); margin-bottom: 10px;
}
.policy-item p { font-size: 12.5px; color: var(--mid); line-height: 1.8; }


/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

footer { background: var(--dark); padding: 72px 24px 40px; }
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr 1fr;
  gap: 52px; align-items: start;
}
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr; gap: 40px; } }

.footer-logo { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.footer-logo svg { width: 40px; height: 40px; flex-shrink: 0; }
.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(245,242,237,.72);
}
.footer-tagline { font-size: 12px; color: rgba(245,242,237,.35); line-height: 1.78; }

.footer-nav-title {
  font-size: 9px; letter-spacing: .38em; text-transform: uppercase;
  color: rgba(245,242,237,.28); margin-bottom: 18px;
}
.footer-nav a {
  display: block; font-size: 12px;
  color: rgba(245,242,237,.44); padding: 5px 0;
  transition: color .2s ease;
}
.footer-nav a:hover { color: var(--gold-lt); }

.footer-contact { font-size: 12px; color: rgba(245,242,237,.36); line-height: 2.15; }
.footer-contact a { color: rgba(196,168,130,.72); transition: color .2s ease; }
.footer-contact a:hover { color: var(--gold-lt); }

.footer-bottom {
  max-width: 1100px; margin: 52px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(245,242,237,.06);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 10.5px; color: rgba(245,242,237,.18);
}


/* ═══════════════════════════════════════════════════════
   TOUR PAGES: HERO
   ═══════════════════════════════════════════════════════ */

.tour-page-hero {
  position: relative;
  height: 72vh; min-height: 460px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}

/* Parallax wrapper — JS controls translateY */
.tour-hero-parallax {
  position: absolute; inset: -10%;
  will-change: transform;
}
.tour-hero-parallax img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenBurns 28s ease-in-out infinite alternate;
}
.tour-hero-parallax::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(5,10,20,.84) 0%,
    rgba(5,10,20,.22) 55%,
    transparent 100%);
}

.tour-hero-text {
  position: relative; z-index: 1;
  padding: 0 44px 52px;
  animation: heroTextReveal .9s cubic-bezier(.4,0,.2,1) .15s both;
}
@media (max-width: 600px) { .tour-hero-text { padding: 0 24px 36px; } }

.tour-hero-tag {
  font-size: 9.5px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-lt); margin-bottom: 12px; display: block;
}
.tour-hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 68px); font-weight: 400;
  color: #fff; line-height: 1.06;
}

/* Back link */
.tour-back {
  position: absolute; top: 92px; left: 44px; z-index: 10;
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(245,242,237,.55);
  display: flex; align-items: center; gap: 8px;
  transition: color .2s ease;
  animation: heroTextReveal .7s ease .1s both;
}
.tour-back:hover { color: rgba(245,242,237,.9); }
.tour-back::before { content: '←'; font-size: 14px; }
@media (max-width: 600px) { .tour-back { left: 24px; top: 80px; } }


/* ═══════════════════════════════════════════════════════
   TOUR PAGES: BODY
   ═══════════════════════════════════════════════════════ */

.tour-section { background: var(--cream); }
.tour-section.alt { background: #fff; }

.tour-body {
  max-width: 1100px; margin: 0 auto;
  padding: 72px 24px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px; align-items: start;
}
@media (max-width: 920px) { .tour-body { grid-template-columns: 1fr; gap: 44px; } }

.tour-desc-label { margin-bottom: 18px; }
.tour-desc {
  font-size: 15.5px; color: var(--mid); line-height: 2.05;
  border-left: 2px solid var(--gold);
  padding-left: 26px;
}

/* Sidebar */
.sidebar-box {
  border: 1px solid var(--border);
  padding: 30px 28px; margin-bottom: 16px;
  background: #fff;
  transition: box-shadow .3s ease;
}
.tour-section.alt .sidebar-box { background: var(--cream); }
.sidebar-box:hover { box-shadow: 0 4px 24px rgba(44,35,24,.06); }

.sidebar-facts { margin-bottom: 24px; }
.sidebar-fact {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  font-size: 12.5px; color: var(--mid);
}
.sidebar-fact:last-child { border-bottom: none; }
.sidebar-fact-icon { flex-shrink: 0; margin-top: 2px; opacity: .7; }
.sidebar-fact-info strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18.5px; font-weight: 400; color: var(--dark);
  line-height: 1.2; margin-bottom: 1px;
}

.sidebar-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 400; color: var(--dark);
  margin: 18px 0 5px;
}
.sidebar-price-note { font-size: 11.5px; color: var(--mid); margin-bottom: 22px; }

.tour-book-btn {
  display: block; text-align: center;
  padding: 16px 24px;
  background: var(--dark); color: var(--cream);
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  transition: background .22s ease, transform .18s ease;
}
.tour-book-btn:hover { background: var(--gold); transform: translateY(-1px); }

.fit-label {
  font-size: 9px; letter-spacing: .36em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 13px; display: block;
}
.fit-label.yes { color: #4d8a58; }
.fit-label.no  { color: #8a4d4d; }

.fit-list li {
  font-size: 12.5px; color: var(--mid); line-height: 1.65;
  padding: 5px 0 5px 16px; position: relative;
}
.fit-list li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-lt);
}
.fit-label.yes + .fit-list li::before { background: #4d8a58; }
.fit-label.no  + .fit-list li::before { background: #8a4d4d; }


/* ═══════════════════════════════════════════════════════
   TOUR PAGES: STOPS
   ═══════════════════════════════════════════════════════ */

.tour-stops { padding: 72px 24px; }
.tour-stops-inner { max-width: 1100px; margin: 0 auto; }

.stops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin-top: 44px;
  background: var(--border);
}
@media (max-width: 900px) { .stops-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stops-grid { grid-template-columns: 1fr; } }

.stop-item {
  padding: 36px 30px;
  transition: background .25s ease;
}
.stop-item:hover { opacity: .92; }

.stop-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px; font-weight: 300;
  color: rgba(155,117,84,.32); line-height: 1; margin-bottom: 16px;
}
.stop-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: var(--dark); margin-bottom: 11px;
}
.stop-desc { font-size: 12.5px; color: var(--mid); line-height: 1.85; }


/* ═══════════════════════════════════════════════════════
   TOUR PAGES: PHOTO GALLERY
   ═══════════════════════════════════════════════════════ */

.tour-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px; height: 360px;
}
@media (max-width: 580px) {
  .tour-gallery { grid-template-columns: 1fr; height: auto; }
  .tour-gallery .gallery-wrap { height: 270px; }
}
.gallery-wrap { overflow: hidden; }
.gallery-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.gallery-wrap:hover img { transform: scale(1.06); }


/* ═══════════════════════════════════════════════════════
   TOUR PAGES: BOTTOM BOOKING CTA
   ═══════════════════════════════════════════════════════ */

.tour-bottom-cta {
  background: var(--dark);
  text-align: center;
  padding: 100px 24px;
  position: relative; overflow: hidden;
}
.tour-bottom-cta::before {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 50% 50%, rgba(155,117,84,.07) 0%, transparent 65%);
  pointer-events: none;
}
.tour-bottom-cta .section-label { color: var(--gold-lt); }
.tour-bottom-cta .section-title { color: var(--cream); max-width: 500px; margin: 0 auto 12px; }
.tour-bottom-cta .divider { margin: 18px auto 36px; background: rgba(196,168,130,.35); }
.tbc-actions { display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.tbc-all-tours {
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(245,242,237,.4);
  border-bottom: 1px solid rgba(245,242,237,.2);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.tbc-all-tours:hover { color: rgba(245,242,237,.75); border-color: rgba(245,242,237,.45); }

.tbc-note {
  font-size: 14px; color: rgba(245,242,237,.68);
  max-width: 440px; margin: 0 auto 28px; line-height: 1.75;
  font-style: italic;
}


/* ─── REVIEWS ──────────────────────────────────────────── */
#reviews {
  background: var(--dark);
  padding: 100px 24px 110px;
}
.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
#reviews .section-label { color: var(--gold-lt); }
#reviews .section-title { color: var(--cream); }
#reviews .divider { background: var(--gold); opacity: .35; }
#reviews .section-body { color: rgba(245,242,237,.65); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
  text-align: left;
}
@media (max-width: 680px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(196,168,130,.15);
  border-radius: 4px;
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s;
}
.review-card:hover {
  border-color: rgba(196,168,130,.35);
}

.review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}
.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.4vw, 18px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
  flex: 1;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 6px;
  border-top: 1px solid rgba(196,168,130,.12);
}
.review-name {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-lt);
}
.review-detail {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(245,242,237,.38);
  letter-spacing: .04em;
}

.reviews-cta {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.reviews-cta-note {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(245,242,237,.45);
}
.reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 1px solid rgba(196,168,130,.4);
  color: var(--gold-lt);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .22s, border-color .22s;
}
.reviews-cta-btn:hover {
  background: rgba(196,168,130,.1);
  border-color: var(--gold);
}


/* ═══════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════ */

#topbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 96px 0 32px;   /* right padding clears the hamburger */
  height: 74px;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, height .3s ease;
  pointer-events: none;      /* children re-enable */
}
#topbar > * { pointer-events: auto; }
#topbar.scrolled {
  background: rgba(30,24,16,.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(196,168,130,.14), 0 10px 30px rgba(0,0,0,.18);
  height: 64px;
}

.topbar-brand {
  display: inline-flex; align-items: center; gap: 12px;
}
.topbar-brand svg { width: 32px; height: 32px; flex-shrink: 0; }
.topbar-brand span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(245,242,237,.92);
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
  transition: color .2s ease;
}
.topbar-brand:hover span { color: #fff; }

.topbar-book {
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(245,242,237,.85);
  border: 1px solid rgba(196,168,130,.55);
  padding: 10px 22px;
  transition: background .22s ease, color .22s ease, border-color .22s ease;
}
.topbar-book:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

@media (max-width: 640px) {
  #topbar { padding: 0 92px 0 20px; height: 66px; }
  #topbar.scrolled { height: 58px; }
  .topbar-brand span { font-size: 11px; letter-spacing: .16em; }
  .topbar-book { display: none; }
}


/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */

#faq { background: #fff; padding: 100px 24px; }
.faq-inner { max-width: 820px; margin: 0 auto; }

.faq-list { margin-top: 44px; border-top: 1px solid var(--border); }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  padding: 24px 4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 400; color: var(--dark);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }

.faq-mark {
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300; line-height: 1;
  color: var(--gold);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-mark { transform: rotate(45deg); }

.faq-answer {
  padding: 0 40px 26px 4px;
  font-size: 13.5px; color: var(--mid); line-height: 1.95;
  max-width: 680px;
}
.faq-answer a { color: var(--gold); border-bottom: 1px solid rgba(155,117,84,.35); }
.faq-answer a:hover { color: #7d5e41; }

@media (max-width: 560px) {
  .faq-item summary { font-size: 18px; padding: 20px 2px; }
  .faq-answer { padding-right: 12px; }
}


/* ═══════════════════════════════════════════════════════
   ACCESSIBILITY & POLISH
   ═══════════════════════════════════════════════════════ */

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

::selection { background: var(--gold); color: #fff; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
