/* ============================================
   NORDLYS — ARCTIC TOURS
   Dark navy · light grey · aurora gradient accents
   Mobile-first
   ============================================ */

:root {
  /* Core palette — deep night sky */
  --navy-deep: #050a1a;
  --navy: #0a1330;
  --navy-soft: #131e44;
  --navy-line: rgba(180, 200, 255, 0.08);

  /* Text — bright cool grey */
  --text: #e8edf5;
  --text-soft: #aab3c5;
  --text-mute: #6a7691;

  /* Aurora gradient stops */
  --aurora-1: #00ffa3;   /* mint green */
  --aurora-2: #4dd0ff;   /* arctic blue */
  --aurora-3: #b566ff;   /* violet */
  --aurora-4: #ff5ec4;   /* magenta whisper */

  --aurora-gradient: linear-gradient(
    100deg,
    var(--aurora-1) 0%,
    var(--aurora-2) 35%,
    var(--aurora-3) 70%,
    var(--aurora-4) 100%
  );

  /* Type */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter Tight', -apple-system, sans-serif;

  /* Spacing */
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --section: clamp(4rem, 12vw, 8rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--navy-deep);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

::selection {
  background: var(--aurora-2);
  color: var(--navy-deep);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.img-placeholder picture,
.img-placeholder picture img,
.img-real {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Usuń kropki (bullet points) z menu WP */
.nav-desktop ul,
.nav-desktop li,
.nav-mobile ul,
.nav-mobile li {
	list-style: none !important;
	margin: 0;
	padding: 0;
}
/* ============================================
   AURORA BACKGROUND
   ============================================ */

.aurora-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 0%, var(--navy-soft) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, var(--navy) 0%, transparent 60%),
    var(--navy-deep);
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  mix-blend-mode: screen;
  animation: drift 25s var(--ease) infinite alternate;
}

.aurora-1 {
  width: 60vw;
  height: 60vw;
  top: -20vw;
  left: -10vw;
  background: radial-gradient(circle, var(--aurora-1), transparent 60%);
  animation-duration: 30s;
}

.aurora-2 {
  width: 50vw;
  height: 50vw;
  top: 30%;
  right: -15vw;
  background: radial-gradient(circle, var(--aurora-2), transparent 60%);
  animation-duration: 22s;
  animation-delay: -5s;
}

.aurora-3 {
  width: 55vw;
  height: 55vw;
  bottom: -20vw;
  left: 20%;
  background: radial-gradient(circle, var(--aurora-3), transparent 60%);
  animation-duration: 28s;
  animation-delay: -10s;
}

@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(5vw, -3vh) scale(1.1); }
  100% { transform: translate(-3vw, 4vh) scale(0.95); }
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(5, 10, 26, 0.6);
  border-bottom: 1px solid var(--navy-line);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.logo-mark {
  background: var(--aurora-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.4rem;
}

.nav-desktop {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-desktop a {
  font-size: 0.875rem;
  color: var(--text-soft);
  transition: color 0.3s var(--ease);
  letter-spacing: 0.04em;
}

.nav-desktop a:hover {
  color: var(--text);
}

/* nav-cta gdy renderowane przez WP menu (li > a) */
.nav-desktop li.nav-cta {
	padding: 0 !important;
	border: none !important;
	background: none !important;
}
.nav-desktop li.nav-cta a {
	padding: 0.6rem 1.3rem !important;
	border: none !important;
	border-radius: 100px !important;
	background: var(--aurora-gradient) !important;
	background-size: 200% 200% !important;
	color: var(--navy-deep) !important;
	font-weight: 500 !important;
	transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), filter 0.3s var(--ease) !important;
	background-position: 0% 50%;
  	display: inline-flex !important;
	align-items: center !important;
}

/* .nav-desktop li.nav-cta a::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--aurora-gradient);
	opacity: 0;
	transition: opacity 0.4s var(--ease);
	z-index: -1;
} */

.nav-desktop li.nav-cta a:hover {
	color: var(--navy-deep) !important;
	transform: translateY(-2px) scale(1.03) !important;
	box-shadow: 0 8px 28px rgba(77, 208, 255, 0.45) !important;
	filter: brightness(1.1) !important;
}
.nav-desktop li.nav-cta a:hover::before {
	opacity: 1;
}

.nav-cta {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--navy-line);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--aurora-gradient);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}

.nav-cta:hover {
  color: var(--navy-deep) !important;
  border-color: transparent;
}

.nav-cta:hover::before {
  opacity: 1;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s var(--ease);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(5, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
  z-index: 49;
  border-bottom: 1px solid var(--navy-line);
}

.nav-mobile.open {
  max-height: 400px;
  padding: 1rem var(--gutter) 2rem;
}

.nav-mobile a {
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--navy-line);
  color: var(--text);
}

.nav-mobile a:last-child {
  border-bottom: none;
  background: var(--aurora-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.hero {
  position: relative;
  min-height: clamp(620px, 95vh, 900px);
  width: 100%;
  margin-top: -1px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05);
  animation: heroZoom 20s var(--ease) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 10, 26, 0.92) 0%,
      rgba(5, 10, 26, 0.75) 30%,
      rgba(5, 10, 26, 0.45) 60%,
      rgba(5, 10, 26, 0.25) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 10, 26, 0.4) 0%,
      transparent 30%,
      transparent 70%,
      rgba(5, 10, 26, 0.85) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(6rem, 18vw, 10rem) var(--gutter) clamp(2.5rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero-text {
  max-width: 700px;
}

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

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--navy-line);
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s var(--ease) both;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aurora-1);
  box-shadow: 0 0 12px var(--aurora-1);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.75rem, 11vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.hero-title .line {
  display: block;
  opacity: 0;
  animation: fadeUp 1s var(--ease) both;
}

.hero-title .line:nth-child(1) { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) { animation-delay: 0.25s; }
.hero-title .line:nth-child(3) { animation-delay: 0.4s; }

.hero-title em {
  font-style: italic;
  background: var(--aurora-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 8s ease infinite;
  font-weight: 400;
}

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

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

.hero-sub {
  max-width: 540px;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.55s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.7s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.75rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--aurora-gradient);
  background-size: 200% 200%;
  color: var(--navy-deep);
  position: relative;
  animation: shimmer 6s ease infinite;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(77, 208, 255, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--navy-line);
}

.btn-ghost:hover {
  border-color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--navy-line);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.85s both;
}

.hero-stats > div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero-stats span {
  font-size: 0.75rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ============================================
   SECTION LABELS
   ============================================ */

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 2rem;
  position: relative;
  padding-left: 2rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 1px;
  background: var(--aurora-gradient);
}

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

.intro {
  padding: var(--section) var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  gap: 2.5rem;
}

.intro-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.intro-heading em {
  font-style: italic;
  font-weight: 400;
  background: var(--aurora-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.intro-body p {
  color: var(--text-soft);
  margin-bottom: 1.25rem;
  max-width: 50ch;
}

.values {
  list-style: none;
  margin-top: 2rem;
}

.values li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--navy-line);
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding-left: 1.5rem;
}

.values li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--aurora-1);
  font-weight: 300;
}

.values li:last-child {
  border-bottom: none;
}

/* ============================================
   TOURS
   ============================================ */

.tours {
  padding: var(--section) var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
}

.tours-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  max-width: 18ch;
}

.tours-heading em {
  font-style: italic;
  font-weight: 400;
  background: var(--aurora-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.tour {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--navy-line);
  position: relative;
  transition: padding 0.4s var(--ease);
}

.tour-visual {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

.tour:last-child {
  border-bottom: 1px solid var(--navy-line);
}

.tour::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(77, 208, 255, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.tour:hover::before {
  opacity: 1;
}

.tour-num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  padding-top: 0.3rem;
}

.tour h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.tour-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--aurora-2);
  margin-bottom: 1.25rem;
}

.tour-desc {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  max-width: 56ch;
}

.tour-included {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}

.tour-included li {
  font-size: 0.875rem;
  color: var(--text-soft);
  padding-left: 1.25rem;
  position: relative;
}

.tour-included li::before {
  content: '◦';
  position: absolute;
  left: 0;
  color: var(--aurora-3);
}

.tour-link {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--text-mute);
  padding-bottom: 0.25rem;
  transition: all 0.3s var(--ease);
}

.tour-link:hover {
  border-color: transparent;
  background: var(--aurora-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */

.why {
  padding: var(--section) var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--navy-line);
  border: 1px solid var(--navy-line);
  border-radius: 4px;
  overflow: hidden;
}

.why-card {
  padding: 2rem 1.75rem;
  background: var(--navy-deep);
  transition: background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--aurora-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.why-card:hover {
  background: var(--navy);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  background: var(--aurora-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 1rem;
}

.why-card h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.cta {
  padding: var(--section) var(--gutter);
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--navy-line);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at top, rgba(77, 208, 255, 0.08), transparent 70%),
    rgba(10, 19, 48, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta .section-label {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.cta .section-label::before { display: none; }

.cta h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  background: var(--aurora-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 8s ease infinite;
}

.cta-sub {
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================
   IMAGE PLACEHOLDERS (aurora gradient backdrops)
   ============================================ */

.img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--navy-line);
  background: var(--navy-soft);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: transform 0.6s var(--ease);
}

.img-placeholder::before,
.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.img-placeholder::before {
  filter: blur(40px);
  opacity: 0.85;
}

.img-placeholder::after {
  background:
    linear-gradient(180deg, transparent 50%, rgba(5, 10, 26, 0.5) 100%),
    radial-gradient(circle at 30% 20%, rgba(232, 237, 245, 0.06), transparent 40%);
}

/* Variant 1 — mint into deep blue (harbour) */
.img-placeholder[data-aurora="1"]::before {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(0, 255, 163, 0.45), transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(77, 208, 255, 0.35), transparent 55%),
    linear-gradient(135deg, #0a1330, #050a1a);
}

/* Variant 2 — green to blue (fishing waters) */
.img-placeholder[data-aurora="2"]::before {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(0, 255, 163, 0.4), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(77, 208, 255, 0.3), transparent 55%),
    linear-gradient(180deg, #050a1a, #131e44);
}

/* Variant 3 — blue to violet (fjord) */
.img-placeholder[data-aurora="3"]::before {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(77, 208, 255, 0.45), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(181, 102, 255, 0.35), transparent 55%),
    linear-gradient(180deg, #0a1330, #050a1a);
}

/* Variant 4 — violet into magenta (private/exclusive) */
.img-placeholder[data-aurora="4"]::before {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(181, 102, 255, 0.4), transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(255, 94, 196, 0.3), transparent 55%),
    linear-gradient(135deg, #050a1a, #131e44);
}

/* Variant 5 — full aurora ribbon (gallery) */
.img-placeholder[data-aurora="5"]::before {
  background:
    radial-gradient(ellipse 60% 40% at 20% 35%, rgba(0, 255, 163, 0.4), transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 45%, rgba(77, 208, 255, 0.4), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 35%, rgba(181, 102, 255, 0.4), transparent 60%),
    linear-gradient(180deg, #050a1a 0%, #0a1330 60%, #050a1a 100%);
}

/* Hover lift on parents that opt in */
.tour-visual:hover .img-placeholder,
.intro-image:hover .img-placeholder,
.gallery-wide:hover .img-placeholder {
  transform: scale(1.02);
}

.img-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.5rem 0.9rem 0.5rem 0.8rem;
  background: rgba(5, 10, 26, 0.45);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(232, 237, 245, 0.12);
  border-radius: 100px;
  text-shadow: 0 1px 8px rgba(5, 10, 26, 0.6);
  box-shadow:
    0 4px 20px rgba(5, 10, 26, 0.4),
    inset 0 1px 0 rgba(232, 237, 245, 0.08);
}

.img-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aurora-gradient);
  box-shadow: 0 0 8px rgba(77, 208, 255, 0.6);
  flex-shrink: 0;
}

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

.intro-image {
  margin: 0;
  aspect-ratio: 4 / 5;
  max-height: 600px;
}

.intro-image .img-placeholder {
  height: 100%;
}

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

.tour-visual {
  margin: 0;
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  overflow: hidden;
}

.tour-visual .img-placeholder {
  height: 100%;
  border-radius: 8px;
}

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

.gallery {
  padding: var(--section) var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  max-width: 18ch;
}

.gallery-heading em {
  font-style: italic;
  font-weight: 400;
  background: var(--aurora-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gallery-wide {
  margin: 0;
  aspect-ratio: 16 / 10;
  max-height: 520px;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-wide .img-placeholder {
  height: 100%;
  padding: 2rem;
}

@media (min-width: 640px) {
  .gallery-wide {
    aspect-ratio: 21 / 9;
  }
}

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

.site-footer {
  padding: 2rem var(--gutter);
  border-top: 1px solid var(--navy-line);
}

.footer-row {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}

.footer-coords {
  font-family: var(--font-display);
  font-style: italic;
}

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

@media (min-width: 640px) {
  .tour-included {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (min-width: 900px) {
  body {
    font-size: 17px;
  }

  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none; }

  .hero-stats {
    max-width: 600px;
  }

  .intro-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .intro-heading {
    position: sticky;
    top: 100px;
  }

  .intro-image {
    grid-column: 3;
    grid-row: 1 / span 1;
  }

  .tour {
    grid-template-columns: 80px 1fr;
    gap: 3rem;
    padding: 3.5rem 0;
  }

  .tour-num {
    font-size: 1rem;
  }

  .tour-visual {
    grid-column: 2;
    aspect-ratio: 21 / 9;
    margin-top: 0;
  }

  .tour-included {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why-card {
    padding: 2.5rem 2rem;
  }

  .footer-row {
    font-size: 0.85rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    max-width: 14ch;
  }

  .tour {
    grid-template-columns: 100px 1.1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .tour-visual {
    grid-column: 3;
    grid-row: 1 / 6;
    aspect-ratio: 4 / 5;
    align-self: stretch;
  }

  .tour-content {
    display: contents;
  }

  .tour-content > h3,
  .tour-content > .tour-tag,
  .tour-content > .tour-desc,
  .tour-content > .tour-included,
  .tour-content > .tour-link {
    grid-column: 2;
  }

  .tour-content > .tour-link {
    margin-top: 1rem;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
