/* =========================================================
   KurumaRide — custom.css
   Premium Motorcycle Lifestyle Magazine
   Palette: Navy #0B1B33 · #071426 · Silver #C5CDD8 · #E8ECF1 · Electric #3B82F6 · #60A5FA
   Fonts: Instrument Serif · Zen Maru Gothic · Noto Sans JP
   ========================================================= */

:root {
  --navy: #0B1B33;
  --navy-deep: #071426;
  --navy-soft: #0F2444;
  --silver: #C5CDD8;
  --silver-light: #E8ECF1;
  --electric: #3B82F6;
  --electric-light: #60A5FA;
  --electric-dim: #2563EB;
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --space-section: clamp(5.5rem, 10vw, 9rem);
  --glass-bg: rgba(11, 27, 51, 0.55);
  --glass-border: rgba(59, 130, 246, 0.18);
}

/* ─── Base & Lenis ─── */
html.lenis,
html.lenis body {
  height: auto;
}

html.lenis {
  scroll-behavior: auto !important;
}

body.krd {
  background-color: var(--navy);
  color: var(--silver-light);
  overflow-x: hidden;
  position: relative;
}

body.krd::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(96, 165, 250, 0.06) 0%, transparent 50%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-soft) 100%);
}

.krd-noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

::selection {
  background: rgba(59, 130, 246, 0.35);
  color: var(--silver-light);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--electric);
  color: var(--silver-light);
  font-family: "Noto Sans JP", sans-serif;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Floating orbs ─── */
.krd-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.45;
}

.krd-orb--1 {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  top: 12%;
  right: -8%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
  animation: orbDrift1 18s ease-in-out infinite alternate;
}

.krd-orb--2 {
  width: min(36vw, 360px);
  height: min(36vw, 360px);
  bottom: 18%;
  left: -6%;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.22) 0%, transparent 70%);
  animation: orbDrift2 22s ease-in-out infinite alternate;
}

@keyframes orbDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-4%, 6%) scale(1.08); }
}

@keyframes orbDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(5%, -4%) scale(1.06); }
}

/* ─── Custom cursor ─── */
.krd-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.4s;
}

body.is-cursor-ready .krd-cursor {
  opacity: 1;
}

body.is-touch .krd-cursor {
  display: none;
}

.krd-cursor__ring {
  position: absolute;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 1px solid rgba(232, 236, 241, 0.6);
  border-radius: 50%;
  transition: transform 0.35s var(--ease-lux), width 0.35s, height 0.35s, margin 0.35s, border-color 0.35s;
}

.krd-cursor__dot {
  position: absolute;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--electric-light);
  border-radius: 50%;
}

.krd-cursor.is-hover .krd-cursor__ring {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-color: var(--electric-light);
}

/* ─── Scroll progress ─── */
.krd-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 60;
  pointer-events: none;
}

.krd-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, transparent, var(--electric) 25%, var(--electric-light) 70%, var(--silver));
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

/* ─── Navigation ─── */
.krd-nav {
  transition: background 0.55s var(--ease-lux), backdrop-filter 0.55s, box-shadow 0.55s;
}

.krd-nav.is-scrolled {
  background: rgba(7, 20, 38, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(59, 130, 246, 0.08);
}

.krd-nav__hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4) 35%, rgba(96, 165, 250, 0.25) 65%, transparent);
  opacity: 0.5;
}

.krd-nav.is-scrolled .krd-nav__hairline {
  opacity: 1;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--electric), var(--electric-light));
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

#mobileMenu.is-open {
  transform: translateX(0);
}

#menuToggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#menuToggle.is-open span:nth-child(2) {
  opacity: 0;
}

#menuToggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Buttons ─── */
.btn-electric {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.85rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--silver-light);
  background: linear-gradient(135deg, var(--electric) 0%, var(--electric-dim) 100%);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.25);
  transition: transform 0.35s var(--ease-lux), box-shadow 0.35s, background 0.35s;
  position: relative;
  overflow: hidden;
}

.btn-electric::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
}

.btn-electric:hover {
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
  transform: translateY(-1px);
}

.btn-electric:hover::before {
  opacity: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.85rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  color: var(--silver);
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 2px;
  backdrop-filter: blur(8px);
  transition: border-color 0.4s, color 0.4s, background 0.4s, box-shadow 0.4s;
}

.btn-ghost:hover {
  border-color: var(--electric-light);
  color: var(--electric-light);
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.15);
}

/* ─── Lines & underlines ─── */
.blue-line {
  height: 1px;
  background: linear-gradient(90deg, var(--electric), rgba(59, 130, 246, 0.15));
}

.blue-line-left {
  width: 4.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--electric-light), var(--electric));
}

.blue-underline {
  position: relative;
  text-decoration: none;
}

.blue-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--electric-light);
  transition: width 0.45s var(--ease-lux);
}

.blue-underline:hover::after {
  width: 100%;
}

/* ─── Video hero ─── */
.video-hero__veil {
  background: linear-gradient(
    180deg,
    rgba(7, 20, 38, 0.45) 0%,
    rgba(11, 27, 51, 0.55) 40%,
    rgba(7, 20, 38, 0.92) 100%
  );
}

.video-hero__veil::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-parallax-wrap {
  will-change: transform;
}

.hero-fade {
  opacity: 0;
  transform: translateY(28px);
}

.hero-fade.is-in {
  opacity: 1;
  transform: translateY(0);
}

.hero-stat-float {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(232, 236, 241, 0.06);
  animation: statFloat 6s ease-in-out infinite;
}

.hero-stat-float:nth-child(2) { animation-delay: -2s; }
.hero-stat-float:nth-child(3) { animation-delay: -4s; }

@keyframes statFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-scroll__line {
  display: block;
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(180deg, var(--electric-light), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.55); }
  50% { opacity: 1; transform: scaleY(1); }
}

.video-hero.is-poster-fallback .video-hero__media {
  display: none;
}

.video-hero.is-poster-fallback::before {
  content: "";
  position: absolute;
  inset: -6%;
  background-image: var(--hero-poster);
  background-size: cover;
  background-position: center;
  animation: kenBurns 24s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.1) translate(-1.5%, -1%); }
}

/* ─── Manifesto editorial ─── */
.manifesto-section {
  position: relative;
  padding: var(--space-section) 0;
}

.manifesto-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90vw, 900px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  transform: translate(-50%, -50%);
}

.manifesto-lead {
  font-family: "Instrument Serif", "Zen Maru Gothic", serif;
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--silver-light);
}

.manifesto-pull {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  color: var(--electric-light);
  border-left: 2px solid var(--electric);
  padding-left: 1.5rem;
}

/* ─── Glass cards ─── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(232, 236, 241, 0.05);
}

.glass-card--elevated {
  background: rgba(15, 36, 68, 0.65);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(96, 165, 250, 0.08);
}

/* ─── Gear float cards ─── */
.gear-float-card__inner {
  padding: 1.65rem;
  background: rgba(7, 20, 38, 0.6);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  transition: transform 0.55s var(--ease-lux), border-color 0.4s, box-shadow 0.55s;
}

.gear-float-card:hover .gear-float-card__inner,
.gear-float-card.is-hover .gear-float-card__inner {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(59, 130, 246, 0.08);
}

/* ─── Stories asymmetric magazine ─── */
.stories-asymmetric__offset .stories-media {
  transform: translateY(2.5rem);
}

@media (min-width: 1024px) {
  .stories-asymmetric__offset .stories-body {
    padding-top: 5rem;
  }
}

.stories-media__frame {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%);
}

.stories-media__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(59, 130, 246, 0.2);
  pointer-events: none;
}

.stories-index {
  font-family: "Instrument Serif", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  color: rgba(59, 130, 246, 0.15);
  user-select: none;
}

/* ─── Tours Swiper ─── */
.tours-swiper {
  overflow: visible;
  padding-bottom: 3rem !important;
}

.tours-swiper .swiper-slide {
  width: min(340px, 85vw);
  height: auto;
}

.tour-card {
  background: rgba(7, 20, 38, 0.55);
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.45s, transform 0.45s var(--ease-lux), box-shadow 0.45s;
  height: 100%;
}

.tour-card:hover {
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.tours-nav-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--electric-light);
  background: rgba(11, 27, 51, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 2px;
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer;
}

.tours-nav-btn:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--electric-light);
}

.tours-swiper .swiper-pagination-bullet {
  background: rgba(197, 205, 216, 0.35);
  opacity: 1;
  width: 8px;
  height: 8px;
}

.tours-swiper .swiper-pagination-bullet-active {
  background: var(--electric-light);
  width: 24px;
  border-radius: 4px;
}

/* ─── Adventure masonry clip-path ─── */
.adventure-masonry {
  columns: 1;
  column-gap: 1.35rem;
}

@media (min-width: 640px) {
  .adventure-masonry { columns: 2; }
}

@media (min-width: 1024px) {
  .adventure-masonry { columns: 3; }
}

.adventure-masonry__item {
  break-inside: avoid;
  margin-bottom: 1.65rem;
}

.adventure-masonry__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.01s;
}

.adventure-masonry__item.is-revealed .adventure-masonry__img {
  clip-path: inset(0 0 0 0);
}

.adventure-masonry__item--tall .adventure-masonry__img {
  aspect-ratio: 3/4;
}

.adventure-masonry__item--wide .adventure-masonry__img {
  aspect-ratio: 16/9;
}

.adventure-masonry__img img {
  transition: transform 0.8s var(--ease-lux);
}

.adventure-masonry__item:hover .adventure-masonry__img img {
  transform: scale(1.05);
}

/* ─── Mesh gradient stats ─── */
.stats-mesh {
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 80% 60%, rgba(96, 165, 250, 0.08) 0%, transparent 50%);
}

.stat-block {
  background: rgba(7, 20, 38, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  transition: border-color 0.4s, box-shadow 0.4s;
}

.stat-block:hover {
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 0 32px rgba(59, 130, 246, 0.1);
}

.stat-number {
  font-variant-numeric: tabular-nums;
  background: linear-gradient(135deg, var(--electric-light), var(--silver-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Testimonials luxury slider ─── */
.testimonial-track {
  margin: 0 -0.5rem;
}

.testimonial-slide .glass-card {
  min-height: 280px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}

.testimonial-dot.is-active {
  background: var(--electric-light);
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

/* ─── News editorial cards ─── */
.news-card {
  position: relative;
}

.news-card__img-wrap {
  position: relative;
  overflow: hidden;
}

.news-card__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 20, 38, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.45s;
}

.news-card:hover .news-card__img-wrap::after {
  opacity: 1;
}

.news-card--featured {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .news-card--featured {
    grid-column: span 2;
    grid-row: span 2;
  }

  .news-card--featured .news-card__img-wrap {
    aspect-ratio: 16/11 !important;
  }
}

.news-cat {
  background: rgba(11, 27, 51, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.3);
  backdrop-filter: blur(8px);
}

/* ─── Newsletter + CTA strip ─── */
.newsletter-strip {
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    rgba(7, 20, 38, 0.7);
  border-top: 1px solid rgba(59, 130, 246, 0.15);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}

.cta-strip {
  position: relative;
  overflow: hidden;
}

.cta-strip__bg {
  filter: saturate(0.75) brightness(0.45);
}

.cta-strip__mesh {
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 55%),
    linear-gradient(180deg, rgba(7, 20, 38, 0.75) 0%, rgba(11, 27, 51, 0.92) 100%);
}

/* ─── Images ─── */
.img-ride {
  filter: saturate(0.88) contrast(1.04) brightness(0.95);
}

/* ─── Page banner ─── */
.page-banner {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  padding: 9rem 0 4.5rem;
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.55);
}

.page-banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 38, 0.55) 0%, rgba(11, 27, 51, 0.94) 100%);
}

.page-banner__veil::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
}

/* ─── Forms ─── */
.krd-input {
  display: block;
  width: 100%;
  padding: 0.9rem 1.1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  color: var(--silver-light);
  background: rgba(7, 20, 38, 0.65);
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 3px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.krd-input:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.krd-input::placeholder {
  color: rgba(197, 205, 216, 0.35);
}

textarea.krd-input {
  resize: vertical;
  min-height: 140px;
}

/* ─── FAQ accordion ─── */
.faq-item {
  background: rgba(7, 20, 38, 0.45);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 3px;
  transition: border-color 0.35s, background 0.35s;
}

.faq-item[open] {
  border-color: rgba(96, 165, 250, 0.35);
  background: rgba(15, 36, 68, 0.5);
}

.faq-item summary {
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--electric-light);
  font-size: 1.1rem;
  transition: transform 0.35s var(--ease-lux), background 0.35s;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: rgba(59, 130, 246, 0.12);
}

/* ─── Footer mesh ─── */
.krd-footer__mesh {
  background:
    radial-gradient(ellipse 50% 40% at 20% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 85% 100%, rgba(96, 165, 250, 0.06) 0%, transparent 50%);
}

/* ─── Section spacing utility ─── */
.section-pad {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.section-label {
  font-family: "Instrument Serif", serif;
  font-size: 0.625rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(96, 165, 250, 0.75);
}

/* ─── About / Services editorial ─── */
.editorial-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .editorial-grid--asymmetric {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
  }
}

.timeline-card {
  background: rgba(7, 20, 38, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 3px;
  padding: 1.5rem;
  transition: border-color 0.4s, transform 0.4s var(--ease-lux);
}

.timeline-card:hover {
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-3px);
}

/* ─── Contact page ─── */
.contact-info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 1.75rem;
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  .hero-fade,
  .hero-scroll__line,
  .hero-stat-float,
  .video-hero.is-poster-fallback::before,
  .krd-orb {
    animation: none !important;
    transition: none !important;
  }

  .hero-fade {
    opacity: 1;
    transform: none;
  }

  .adventure-masonry__img {
    clip-path: inset(0 0 0 0) !important;
  }
}

@media (max-width: 1023px) {
  .hero-stats-desktop {
    display: none;
  }
}


/* === Visibility safety === */
.hero-fade.is-in, .hero-fade { opacity: 1 !important; transform: none !important; }
.gallery-item img, .gallery-reveal, .masonry-item {
  clip-path: none !important;
  opacity: 1 !important;
}
