/* ============================================
   Tales of Prague — Design Prototype
   Nav + Hero only (Soilux-style boxed, video bg)
   ============================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.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;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}


/* --- CSS Custom Properties --- */
:root {
  --background:      #f7f0f0;
  --surface:         #fff8f6;
  --card-bg:         #ffffff;
  --border:          #e5ddd9;
  --text-primary:    #3d3f54;
  --text-secondary:  #6b6d7b;
  --accent:          #ff671b;
  --accent-hover:    #e85d17;
  --text-on-accent:  #ffffff;

  --shadow-sm:  0 1px 2px rgba(0,0,0,0.04), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 8px rgba(0,0,0,0.04), 0 12px 28px rgba(0,0,0,0.06);
  --shadow-lg:  0 8px 16px rgba(0,0,0,0.06), 0 24px 48px rgba(0,0,0,0.08);

  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   32px;
  --space-2xl:  48px;
  --space-3xl:  64px;
  --space-4xl:  96px;
  --space-5xl:  128px;

  --content-gutter-mobile: 24px;
  --content-gutter-desktop: 56px;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  24px;

  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 1, 0.84);
  --duration:   0.3s;
  --duration-slow: 0.8s;
}

html.dark {
  --background:      #0c0b0a;
  --surface:         #161413;
  --card-bg:         #1e1c1a;
  --border:          #2a2725;
  --text-primary:    #f0ebe8;
  --text-secondary:  #a09890;
  --accent:          #ff671b;
  --accent-hover:    #e85d17;
  --text-on-accent:  #ffffff;

  --shadow-sm:  0 1px 2px rgba(0,0,0,0.25), 0 2px 6px rgba(0,0,0,0.2);
  --shadow-md:  0 4px 8px rgba(0,0,0,0.25), 0 12px 28px rgba(0,0,0,0.3);
  --shadow-lg:  0 8px 16px rgba(0,0,0,0.3), 0 24px 48px rgba(0,0,0,0.35);
}


/* --- Base Typography --- */
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--background);
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 6.5vw, 6.25rem); /* ~84px at desktop */
  font-weight: 500;
}

p {
  max-width: 60ch;
}

.overline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.accent-word {
  font-style: italic;
  color: var(--accent);
}


/* --- Skip to content (a11y) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--accent);
  color: var(--text-on-accent);
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: var(--space-md);
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--accent);
  color: var(--text-on-accent);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 92, 10, 0.35);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--white {
  background: #fff;
  color: #1a1816;
  border: 1px solid #fff;
}

.btn--white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}


/* ============================================
   Hero Box — Soilux-style contained section
   max-width 1880px, border-radius 12px, margin-top 20px
   ============================================ */
.hero {
  padding: var(--space-md);
  padding-bottom: 0;
}

.hero__box {
  position: relative;
  width: 100%;
  max-width: 1880px;
  margin: 0 auto;
  min-height: calc(88dvh - var(--space-md) * 2);
  padding-bottom: 72px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #747372 0%, #3f2b22 100%);
}

html.dark .hero__box {
  background: #1a1816;
}

@media (min-width: 768px) {
  .hero {
    padding: var(--space-lg);
    padding-bottom: 0;
  }

  .hero__box {
    min-height: calc(88dvh - var(--space-lg) * 2);
    padding-bottom: 108px;
  }
}

/* Video background (desktop) */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Slideshow background (mobile) */
.hero__slideshow {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero__slide--active {
  opacity: 1;
}

/* Mobile: hide video, show slideshow */
@media (max-width: 767px) {
  .hero__video {
    display: none;
  }
  .hero__slideshow {
    display: block;
  }
}

/* Static image background (subpages) */
.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Gradient overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgb(49 42 40 / 55%) 0%, rgba(50, 35, 20, 0.32) 30%, rgba(50, 35, 20, 0.52) 60%, rgb(112 105 98 / 48%) 100%);
  pointer-events: none;
}

html.dark .hero__overlay {
  background:
    linear-gradient(
      to bottom,
      rgba(26, 24, 22, 0.85) 0%,
      rgba(26, 24, 22, 0.36) 35%,
      rgba(26, 24, 22, 0.50) 55%,
      rgba(26, 24, 22, 0.12) 100%
    );
}

/* Content — centered over video, matched to Soilux hero-content-gold margin */
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 880px;
  padding: 110px var(--space-lg) var(--space-2xl);
  color: #fff;
}

@media (min-width: 768px) {
  .hero__content {
    padding-top: 120px;
  }
}

.hero__overline {
  display: inline-block;
  color: #fff;
  margin-bottom: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__title {
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Trust strip — pinned above scroll indicator */
.hero__trust {
  display: none;
}

@media (min-width: 768px) {
  .hero__trust {
    list-style: none;
    position: absolute;
    bottom: 68px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px 20px;
    flex-wrap: wrap;
    z-index: 3;
    opacity: 0;
    transform: translateY(8px);
    animation: trust-enter 0.7s var(--ease-out) 0.75s forwards;
  }
}

@keyframes trust-enter {
  to { opacity: 1; transform: translateY(0); }
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55), 0 1px 3px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__trust-item svg {
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}

.hero__trust-sep {
  color: rgba(255, 255, 255, 0.55);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  font-size: 1rem;
  line-height: 1;
  user-select: none;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: 10px;
}

/* ============================================
   Subpage hero variant — shorter, left-aligned
   ============================================ */
.hero--subpage .hero__box {
  min-height: clamp(400px, 58dvh, 560px);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .hero--subpage .hero__box {
    min-height: clamp(400px, 58dvh, 560px);
  }
}

.hero--subpage .hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--content-gutter-mobile);
}

@media (min-width: 768px) {
  .hero--subpage .hero__inner {
    padding: 0 var(--content-gutter-desktop);
  }
}

@media (min-width: 980px) {
  .hero--subpage .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    gap: 32px 56px;
    align-items: stretch;
  }
}

.hero--subpage .hero__content {
  text-align: left;
  max-width: 680px;
  padding-top: 200px;
  padding-bottom: 90px;
  padding-left: 0;
  padding-right: 0;
}

.hero--subpage .hero__title {
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(2.75rem, 5vw, 4.4rem);
}

.hero--subpage .hero__overline {
  margin-bottom: 12px;
}

.hero--subpage .hero__subtitle {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 42px;
  max-width: 52ch;
  font-size: 1.02rem;
}

.hero--subpage .hero__cta {
  justify-content: flex-start;
  margin-top: 0;
}

.hero--subpage .hero__overlay {
  background: linear-gradient(to bottom, rgb(49 42 40 / 62%) 0%, rgba(50, 35, 20, 0.58) 35%, rgba(50, 35, 20, 0.68) 58%, rgb(112 105 98 / 52%) 100%);
}

html.dark .hero--subpage .hero__overlay {
  background: linear-gradient(to bottom, rgba(26, 24, 22, 0.9) 0%, rgb(26 24 22 / 48%) 35%, rgb(31 22 14 / 50%) 58%, rgb(8 6 5 / 55%) 100%);
}

.hero--subpage .hero__trust,
.hero--subpage .hero__scroll {
  display: none;
}

.contact-hero-card {
  display: none;
}

@media (min-width: 980px) {
  .contact-hero-card {
    display: grid;
    position: relative;
    z-index: 3;
    align-self: center;
    gap: 18px;
    margin: 200px 0 90px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 248, 246, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .contact-hero-card__eyebrow {
    color: rgba(255, 246, 240, 0.76);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .contact-hero-card__top {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .contact-hero-card__photo {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  }

  .contact-hero-card__identity {
    display: grid;
    gap: 4px;
  }

  .contact-hero-card__name {
    color: #fff8f4;
    font-size: 1.28rem;
    font-weight: 600;
    line-height: 1.1;
  }

  .contact-hero-card__role {
    color: rgba(255, 246, 240, 0.72);
    font-size: 0.96rem;
    line-height: 1.3;
  }

  .contact-hero-card__line {
    margin: 0;
    color: rgba(255, 246, 240, 0.84);
    line-height: 1.7;
  }

  .contact-hero-card__facts {
    display: grid;
    gap: 0;
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .contact-hero-card__fact {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 0;
  }

  .contact-hero-card__fact:first-child {
    padding-top: 2px;
  }

  .contact-hero-card__fact-icon {
    flex: none;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff8f4;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .contact-hero-card__fact-text {
    color: rgba(255, 246, 240, 0.88);
    font-size: 0.95rem;
    line-height: 1.4;
  }

}

/* ============================================
   Navigation — inside hero__box (absolute)
   Matched to Soilux: abs top 20px, container 1500px
   ============================================ */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  padding: 0;
  background: rgba(255, 248, 246, 0.72);
  border-bottom: 1px solid rgba(61, 63, 84, 0.08);
  box-shadow: 0 12px 28px rgba(61, 63, 84, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-18px);
  transition:
    opacity var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    visibility var(--duration) var(--ease-out);
}

.sticky-nav.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-nav__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 1500px;
  height: 76px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  border-radius: 0;
  background: transparent;
}

@media (min-width: 768px) {
  .sticky-nav__inner {
    padding: 0 var(--space-2xl);
  }
}

.sticky-nav__logo {
  flex-shrink: 0;
  margin-right: auto;
}

.sticky-nav__logo img {
  height: 48px;
  width: auto;
}

.sticky-nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 980px) {
  .sticky-nav__links {
    display: flex;
  }
}

.sticky-nav__link {
  position: relative;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--duration) var(--ease-out);
}

.sticky-nav__link:hover,
.sticky-nav__link--active {
  color: var(--text-primary);
}

.sticky-nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--accent);
}

.sticky-nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-left: auto;
}

.theme-toggle--sticky {
  color: var(--text-secondary);
  padding-top: 10px;
  padding-bottom: 10px;
  background: transparent;
}

.theme-toggle--sticky .theme-toggle__label,
.theme-toggle--sticky .icon-sun,
.theme-toggle--sticky .icon-moon {
  color: var(--text-secondary);
}

.theme-toggle--sticky:hover {
  background: rgba(61, 63, 84, 0.08);
  color: var(--text-primary);
}

.theme-toggle--sticky:hover .theme-toggle__label,
.theme-toggle--sticky:hover .icon-sun,
.theme-toggle--sticky:hover .icon-moon {
  color: var(--text-primary);
}

.sticky-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--text-on-accent);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--duration) var(--ease-out);
}

.sticky-nav__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 103, 27, 0.26);
}

@media (max-width: 767px) {
  .sticky-nav__inner {
    height: 68px;
    padding: 0 14px;
    gap: 12px;
  }

  .sticky-nav__logo img {
    height: 42px;
  }

  .sticky-nav__cta {
    display: none;
  }
}

html.dark .sticky-nav__inner {
  background: transparent;
}

html.dark .sticky-nav {
  background: rgba(22, 20, 19, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

html.dark .sticky-nav__logo img {
  filter: brightness(0) invert(1);
}

html.dark .sticky-nav__link {
  color: rgba(240, 235, 232, 0.72);
}

html.dark .sticky-nav__link:hover,
html.dark .sticky-nav__link--active {
  color: #fff6f0;
}

html.dark .theme-toggle--sticky {
  color: rgba(240, 235, 232, 0.72);
  background: transparent;
}

html.dark .theme-toggle--sticky .theme-toggle__label,
html.dark .theme-toggle--sticky .icon-sun,
html.dark .theme-toggle--sticky .icon-moon {
  color: rgba(240, 235, 232, 0.72);
}

html.dark .theme-toggle--sticky:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff6f0;
}

html.dark .theme-toggle--sticky:hover .theme-toggle__label,
html.dark .theme-toggle--sticky:hover .icon-sun,
html.dark .theme-toggle--sticky:hover .icon-moon {
  color: #fff6f0;
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav__inner {
  display: flex;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--content-gutter-mobile);
  height: 100px;
}

@media (min-width: 768px) {
  .nav__inner {
    padding: 0 var(--content-gutter-desktop);
  }
}

/* Logo — matched to Soilux ~147×50 */
.nav__logo {
  flex-shrink: 0;
  margin-right: auto;
}

.nav__logo img {
  height: 60px;
  width: auto;
  padding-top: 10px;
  filter: brightness(0) invert(1);
}

/* Links — centered, plain */
.nav__links {
  display: none;
  align-items: center;
  gap: 36px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 980px) {
  .nav__links {
    display: flex;
  }
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--duration) ease;
  white-space: nowrap;
  position: relative;
  padding: 8px 0;
}

.nav__link:hover,
.nav__link--active {
  color: #fff;
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.nav__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Right-side actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-left: auto;
}

/* Nav CTA */
.nav__cta {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 100px;
  background: var(--accent);
  color: var(--text-on-accent);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  transition: all var(--duration) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav__cta {
    display: inline-flex;
  }
}

.nav__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 92, 10, 0.3);
}

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

/* Dark mode toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration) ease, background var(--duration) ease;
  cursor: pointer;
}

.theme-toggle:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  width: 20px;
  height: 20px;
}

.theme-toggle__label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Light mode: show sun + Day */
.theme-toggle .icon-moon { display: none; }
.theme-toggle__label--night { display: none; }

/* Dark mode: show moon + Night */
html.dark .theme-toggle .icon-sun { display: none; }
html.dark .theme-toggle .icon-moon { display: block; }
html.dark .theme-toggle__label--day { display: none; }
html.dark .theme-toggle__label--night { display: inline; }

/* Hamburger (mobile) */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  cursor: pointer;
}

@media (min-width: 980px) {
  .nav__hamburger {
    display: none;
  }
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--duration) var(--ease-out);
}

.sticky-nav .nav__hamburger span {
  background: var(--text-primary);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(26, 24, 22, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease-out);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-variation-settings: 'opsz' 72;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--duration) ease;
}

.mobile-menu__link:hover {
  color: var(--accent);
}


/* ============================================
   Hero entrance animations
   ============================================ */
.hero__overline,
.hero__title,
.hero__subtitle,
.hero__cta {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-enter 0.9s var(--ease-out) forwards;
}

.hero__overline    { animation-delay: 0.2s; }
.hero__title       { animation-delay: 0.35s; }
.hero__subtitle    { animation-delay: 0.5s; }
.hero__cta         { animation-delay: 0.6s; }

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transform: translateY(6px);
  animation: scroll-enter 0.7s var(--ease-out) 1.7s forwards;
}

.hero__scroll svg {
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.4));
  animation: scroll-bob 1.9s ease-in-out 2.5s infinite;
}

@keyframes scroll-enter {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* Very short landscape (phones, short tablets): no vertical room for the
   decorative bottom cluster, so hide it rather than overlap the content. */
@media (orientation: landscape) and (max-height: 620px) {
  .hero__trust,
  .hero__scroll {
    display: none;
  }

  /* Cluster is hidden here, so reclaim its reserved space for the content. */
  .hero__box {
    padding-bottom: 24px;
  }
}


/* ============================================
   About Your Guide
   ============================================ */

.about {
  padding: var(--space-5xl) var(--space-md);
  background: linear-gradient(
    180deg,
    var(--background) 0%,
    var(--surface) 20%,
    var(--surface) 80%,
    var(--background) 100%
  );
}

@media (min-width: 768px) {
  .about {
    padding: var(--space-5xl) var(--space-lg);
  }
}

.about__wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--content-gutter-mobile);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
}

@media (min-width: 768px) {
  .about__wrap {
    padding: 0 var(--content-gutter-desktop);
  }
}

@media (min-width: 900px) {
  .about__wrap {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: clamp(48px, 5vw, 84px);
    align-items: center;
  }
}

@media (max-width: 899px) {
  .about__visual {
    order: 2;
  }

  .about__content {
    order: 1;
  }

  .about__metrics {
    order: 3;
  }
}

.about__visual {
  position: relative;
}

.about__image-group {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
}

.about__image-column--primary {
  width: calc(52% - 15px);
}

.about__image-column--secondary {
  width: calc(48% - 15px);
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  padding-top: 56px;
}

.about__image-main,
.about__image-accent {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: var(--shadow-lg);
}

.about__image-main::after,
.about__image-accent::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 11, 10, 0.36) 0%,
    rgba(12, 11, 10, 0.12) 22%,
    rgba(12, 11, 10, 0) 100%
  );
  pointer-events: none;
}

.about__image-main {
  margin-bottom: 30px;
  border-radius: 24px;
  overflow: hidden;
  z-index: 2;
}

.about__image-accent {
  width: 100%;
  border-radius: 14px;
}

.about__guests-card {
  display: grid;
  gap: 12px;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: var(--accent);
  box-shadow: 0 22px 54px rgba(255, 92, 10, 0.22);
}

.about__guests-copy {
  position: relative;
  margin: 0;
  padding-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  color: rgba(28, 12, 4, 0.96);
  text-wrap: balance;
}

.about__guests-copy::before {
  content: "“";
  position: absolute;
  top: -6px;
  left: -2px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
}

.about__guests-signoff {
  display: inline-block;
  color: rgba(44, 21, 7, 0.78);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 9s ease;
}

.about__image-main {
  position: relative;
}

.about__image-main img {
  display: block;
  aspect-ratio: 1 / 1.27;
  border-radius: 24px;
}

.about__image-accent img {
  aspect-ratio: 1 / 1.39;
}

.about__image-main:hover .about__photo,
.about__image-accent:hover .about__photo {
  transform: scale(1.09);
}

.about__overline {
  color: var(--accent);
  display: block;
  margin-bottom: var(--space-md);
}

.about__h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  text-wrap: balance;
}

.about__p {
  font-size: 1rem;
  line-height: 1.85;
  color: color-mix(in srgb, var(--text-primary) 78%, var(--text-secondary) 22%);
  max-width: 68ch;
  margin-bottom: var(--space-md);
}

.about__p--lead {
  font-size: 1.0625rem;
  font-weight: 400;
}

.about__body {
  display: grid;
  gap: 22px;
  padding-top: clamp(18px, 2.2vw, 24px);
}

.about__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.about__list li {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-primary);
}

.about__list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-hover);
  box-shadow: 0 0 0 6px rgba(255, 92, 10, 0.1);
  transform: translateY(-50%);
}

.about__quote {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.55;
  color: var(--text-primary);
  max-width: 30ch;
  padding-left: 20px;
  border-left: 2px solid rgba(255, 92, 10, 0.22);
}

.about__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 30px;
  padding-top: 14px;
}

.about__guide-signature {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.about__footer-divider {
  width: 1px;
  align-self: stretch;
  min-height: 56px;
  background: rgba(61, 63, 84, 0.08);
}

.about__guide-avatar {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 12px 24px rgba(61, 63, 84, 0.12);
}

.about__guide-copy {
  display: grid;
  gap: 4px;
}

.about__guide-name {
  color: var(--text-primary);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.1;
}

.about__guide-role {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.3;
}

.about__metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px 32px;
  align-items: center;
  width: 100%;
  margin-top: clamp(24px, 3vw, 36px);
  padding-top: 20px;
  border-top: 1px solid rgba(61, 63, 84, 0.08);
}

.about__metrics-intro {
  display: grid;
  gap: 10px;
  align-content: start;
  padding-left: 18px;
  border-left: 2px solid rgba(255, 92, 10, 0.22);
}

.about__metrics-kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about__metrics-copy {
  margin: 0;
  max-width: 30ch;
  color: color-mix(in srgb, var(--text-primary) 74%, var(--text-secondary) 26%);
  font-size: 0.98rem;
  line-height: 1.8;
}

.about__metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.about__metric {
  text-align: center;
  padding: 12px 0 6px 0;
  border-right: 1px solid rgba(61, 63, 84, 0.08);
}

.about__metric:last-child {
  border-right: none;
}

.about__metric-value {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 600;
  line-height: 1;
  color: var(--text-primary);
}

.about__metric-label {
  display: block;
  color: color-mix(in srgb, var(--text-primary) 68%, var(--text-secondary) 32%);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
}

html.dark .about__metrics,
html.dark .about__metrics-grid { border-color: rgba(255, 255, 255, 0.08); }

html.dark .about__metric {
  border-right-color: rgba(255, 255, 255, 0.08);
}

html.dark .about__metrics-intro {
  border-left-color: rgba(255, 92, 10, 0.26);
}

html.dark .about__metrics-copy {
  color: color-mix(in srgb, var(--text-primary) 74%, var(--text-secondary) 26%);
}

html.dark .about__guide-avatar {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

html.dark .about__image-main::after,
html.dark .about__image-accent::after {
  background: linear-gradient(
    180deg,
    rgba(12, 11, 10, 0.48) 0%,
    rgba(12, 11, 10, 0.18) 24%,
    rgba(12, 11, 10, 0) 100%
  );
}

html.dark .about__footer-divider {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 899px) {
  .about__image-group {
    gap: 24px;
  }

  /* Keep the two-column photo collage on tablets so the portraits stay
     compact (~half width) and sharp, rather than blowing up full-width. */
  .about__image-column--secondary {
    padding-top: 32px;
  }

  .about__guests-card {
    padding: 18px;
  }

  .about__quote {
    max-width: none;
  }

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

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

  .about__metric:nth-child(2n) {
    border-right: none;
  }
}

/* Phones: the collage would be too cramped side-by-side, so stack full-width. */
@media (max-width: 600px) {
  .about__image-column--primary,
  .about__image-column--secondary {
    width: 100%;
  }

  .about__image-column--secondary {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .about__guests-card {
    gap: 10px;
  }

  .about__footer {
    align-items: flex-start;
  }

  .about__guide-avatar {
    width: 48px;
    height: 48px;
  }

  .about__guide-name {
    font-size: 1.12rem;
  }

  .about__footer-divider {
    min-height: 48px;
  }

  .about__guests-copy {
    max-width: none;
  }

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

  .about__metric {
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px solid rgba(61, 63, 84, 0.08);
  }

  .about__metric:last-child {
    border-bottom: none;
  }

  html.dark .about__metric {
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }
}

/* ============================================
   Tours
   ============================================ */

.tours {
  position: relative;
  z-index: 1;
  padding: 0 var(--space-md) var(--space-xl);
}

@media (min-width: 768px) {
  .tours {
    padding: 0 var(--space-lg) var(--space-xl);
  }
}

.tours__box {
  max-width: 1880px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      var(--background) 0%,
      var(--surface) 20%,
      var(--surface) 80%,
      var(--background) 100%
    );
  border: 1px solid rgba(61, 63, 84, 0.08);
  box-shadow: 0 28px 70px rgba(61, 63, 84, 0.12);
}

.tours__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px var(--space-lg);
}

@media (min-width: 768px) {
  .tours__inner {
    padding: 48px var(--space-2xl);
  }
}

.tours__header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px 48px;
  align-items: center;
  margin-bottom: 20px;
}

.tours__overline {
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

.tours__title {
  margin: 0 0 var(--space-xl);
  max-width: 18ch;
  font-family: var(--font-display);
  color: var(--text-primary);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.tours__intro {
  margin: 0;
  max-width: 52ch;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.tours__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.tour-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  color: inherit;
  text-decoration: none;
  transition:
    transform var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out);
}

.tour-card__media {
  position: relative;
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
}

.tour-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(12, 11, 10, 0.52) 0%,
      rgba(12, 11, 10, 0.28) 34%,
      rgba(12, 11, 10, 0) 100%
    );
  pointer-events: none;
  transition: opacity 0.45s var(--ease-out);
}

.tour-card__tags {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: calc(100% - 28px);
}

.tour-card__tag {
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tour-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.tour-card:hover .tour-card__image {
  transform: scale(1.06);
}

.tour-card:hover .tour-card__media::after,
.tour-card:focus-visible .tour-card__media::after {
  opacity: 0.82;
}

.tour-card:hover,
.tour-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(61, 63, 84, 0.14);
  border-color: rgba(255, 92, 10, 0.18);
}

.tour-card:focus-visible {
  outline: none;
}

.tour-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 24px;
}

.tour-card__meta {
  margin: 0 0 14px;
  color: color-mix(in srgb, var(--text-primary) 60%, var(--text-secondary) 40%);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-card__title {
  margin: 0 0 12px;
  color: var(--text-primary);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.15;
}

.tour-card__text {
  margin: 0 0 18px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.tour-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 500;
  transition: color var(--duration) var(--ease-out);
}

.tour-card:hover .tour-card__link,
.tour-card:focus-visible .tour-card__link {
  color: var(--text-primary);
}

.tours__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  margin-top: 28px;
}

.tours__footer-text {
  margin: 0;
  max-width: 58ch;
  color: var(--text-secondary);
  line-height: 1.8;
}

.tours__footer-btn {
  flex-shrink: 0;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
  padding: var(--space-xl) var(--space-md) var(--space-5xl);
  background: linear-gradient(
    180deg,
    var(--background) 0%,
    var(--surface) 20%,
    var(--surface) 80%,
    var(--background) 100%
  );
}

@media (min-width: 768px) {
  .faq {
    padding: var(--space-3xl) var(--space-lg) var(--space-3xl);
  }
}

body .faq#reach-out {
  padding-top: var(--space-3xl);
}

@media (min-width: 768px) {
  body .faq#reach-out {
    padding-top: var(--space-4xl);
  }
}

.faq__wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--content-gutter-mobile);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px 64px;
  align-items: start;
}

@media (min-width: 768px) {
  .faq__wrap {
    padding: 0 var(--content-gutter-desktop);
  }
}

.faq__overline {
  display: block;
  color: var(--accent);
  margin-bottom: 14px;
}

.faq__title {
  margin: 0 0 var(--space-xl);
  font-family: var(--font-display);
  color: var(--text-primary);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.faq__text {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.faq__meta span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.faq__meta span:nth-child(2) {
  opacity: 0.72;
}

.faq__meta span:nth-child(3) {
  opacity: 0.44;
}

.faq__list {
  display: grid;
  gap: 14px;
}

.faq__item {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(61, 63, 84, 0.08);
  box-shadow: 0 14px 32px rgba(61, 63, 84, 0.05);
  overflow: hidden;
}

.faq__question {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 22px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--duration) var(--ease-out);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform var(--duration) var(--ease-out), opacity var(--duration) var(--ease-out);
}

.faq__item.is-expanded .faq__question::after {
  content: "−";
}

.faq__answer {
  overflow: hidden;
  height: 0;
  margin: 0;
  padding: 0 22px;
  color: var(--text-secondary);
  line-height: 1.8;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    height 0.35s var(--ease-out),
    opacity 0.25s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.faq__item.is-expanded .faq__answer {
  padding: 0 22px 22px;
  opacity: 1;
  transform: translateY(0);
}

.faq__item.is-closing .faq__answer {
  padding: 0 22px;
  opacity: 0;
  transform: translateY(-6px);
}

html.dark .tours__box {
  background:
    radial-gradient(circle at top right, rgba(255, 92, 10, 0.16), transparent 28%),
  linear-gradient(180deg, #171412 0%, #0c0b0a 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

html.dark .tours__title {
  color: #fff6f0;
}

html.dark .tours__intro {
  color: rgba(240, 235, 232, 0.72);
}

html.dark .tour-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

html.dark .tour-card__meta {
  color: rgba(240, 235, 232, 0.68);
}

html.dark .tour-card__media::after {
  background:
    linear-gradient(
      180deg,
      rgba(12, 11, 10, 0.6) 0%,
      rgba(12, 11, 10, 0.34) 38%,
      rgba(12, 11, 10, 0) 100%
    );
}

html.dark .tour-card__title {
  color: #fff6f0;
}

html.dark .tour-card__text {
  color: rgba(240, 235, 232, 0.72);
}

html.dark .tour-card:hover .tour-card__link,
html.dark .tour-card:focus-visible .tour-card__link {
  color: #fff6f0;
}

html.dark .tours__footer-text {
  color: rgba(240, 235, 232, 0.72);
}

html.dark .faq {
  background: linear-gradient(
    180deg,
    var(--background) 0%,
    var(--surface) 20%,
    var(--surface) 80%,
    var(--background) 100%
  );
}

html.dark .faq__item {
  background: rgba(30, 28, 26, 0.74);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

html.dark .faq__title,
html.dark .faq__question {
  color: var(--text-primary);
}

html.dark .faq__text,
html.dark .faq__answer {
  color: var(--text-secondary);
}

@media (min-width: 900px) {
  .tours__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 1100px) {
  .faq__wrap,
  .tours__header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tours__inner {
    padding: 28px 20px;
  }

  .about__wrap,
  .faq__wrap,
  .section-wrap {
    padding: 0 var(--content-gutter-mobile);
  }

  .tour-card__body {
    padding: 20px;
  }

  .tours__footer {
    align-items: flex-start;
  }

  .faq__question {
    padding: 20px 50px 20px 20px;
  }

  .faq__answer {
    padding: 0 20px 20px;
  }
}

/* ============================================
   Contact info list (subpage)
   ============================================ */

.contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 92, 10, 0.08);
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.contact-info__value {
  display: block;
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
  line-height: 1.4;
}

a.contact-info__value:hover {
  color: var(--accent);
}

html.dark .contact-info__icon {
  background: rgba(255, 92, 10, 0.14);
}

/* Contact info inside left column — spacing from paragraph above */
.contact-reach__intro .contact-info {
  margin-top: var(--space-2xl);
}

/* ============================================
   Universal section wrapper
   ============================================ */

.section-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--content-gutter-mobile);
  display: grid;
  gap: 32px 64px;
  align-items: start;
}

@media (min-width: 768px) {
  .section-wrap {
    padding: 0 var(--content-gutter-desktop);
  }
}

@media (min-width: 1101px) {
  .section-wrap {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

/* ============================================
   Contact reach-out section
   ============================================ */

.contact-reach {
  padding: var(--space-3xl) var(--space-md) var(--space-5xl);
  background: linear-gradient(
    180deg,
    var(--background) 0%,
    var(--surface) 20%,
    var(--surface) 80%,
    var(--background) 100%
  );
}

@media (min-width: 768px) {
  .contact-reach {
    padding: var(--space-4xl) var(--space-lg) var(--space-3xl);
  }
}

.contact-reach__title {
  margin: 0 0 var(--space-xl);
  font-family: var(--font-display);
  color: var(--text-primary);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
  text-wrap: balance;
}

.contact-reach__text {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-reach__intro .overline {
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

html.dark .contact-reach {
  background: linear-gradient(
    180deg,
    var(--background) 0%,
    var(--surface) 20%,
    var(--surface) 80%,
    var(--background) 100%
  );
}

/* ============================================
   Legal info block (contact page)
   ============================================ */

.legal-info {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px 32px;
  align-items: center;
  width: 100%;
  margin-top: clamp(40px, 5vw, 64px);
  padding-top: clamp(28px, 3vw, 40px);
  border-top: 1px solid rgba(61, 63, 84, 0.08);
}

.legal-info__intro {
  display: grid;
  gap: 10px;
  align-content: start;
  padding-left: 18px;
  border-left: 2px solid rgba(255, 92, 10, 0.22);
}

.legal-info__kicker {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-info__copy {
  margin: 0;
  color: color-mix(in srgb, var(--text-primary) 74%, var(--text-secondary) 26%);
  font-size: 0.98rem;
  line-height: 1.8;
  text-wrap: balance;
}

.legal-info__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.legal-info__item {
  text-align: center;
  padding: 12px 0 6px;
  border-right: 1px solid rgba(61, 63, 84, 0.08);
}

.legal-info__item:last-child {
  border-right: none;
}

a.legal-info__item {
  text-decoration: none;
  transition: opacity var(--duration) var(--ease-out);
}

a.legal-info__item:hover {
  opacity: 0.7;
}

a.legal-info__item:hover .legal-info__value {
  color: var(--accent);
}

.legal-info__value {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--text-primary);
}

.legal-info__label {
  display: block;
  color: color-mix(in srgb, var(--text-primary) 68%, var(--text-secondary) 32%);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
}

html.dark .legal-info,
html.dark .legal-info__grid { border-color: rgba(255, 255, 255, 0.08); }

html.dark .legal-info__item { border-color: rgba(255, 255, 255, 0.08); }

html.dark .legal-info__intro { border-left-color: rgba(255, 92, 10, 0.26); }

@media (max-width: 1100px) {
  .legal-info {
    grid-template-columns: 1fr;
  }

  .legal-info__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-info__item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .legal-info__grid {
    grid-template-columns: 1fr;
  }

  .legal-info__item {
    padding: 14px 0;
    border-right: none;
    border-bottom: 1px solid rgba(61, 63, 84, 0.08);
  }

  .legal-info__item:last-child {
    border-bottom: none;
  }
}

/* ============================================
   Legal page (Privacy & Terms)
   ============================================ */

.legal-page {
  padding: var(--space-4xl) var(--space-md) var(--space-5xl);
  background: var(--background);
}

.legal-page__wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--content-gutter-mobile);
}

@media (min-width: 768px) {
  .legal-page__wrap {
    padding: 0 var(--content-gutter-desktop);
  }
}

.legal-page__updated {
  margin: var(--space-2xl) 0 0;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.legal-page__section {
  margin-top: var(--space-3xl);
}

.legal-page__section:first-of-type {
  margin-top: 0;
}

.legal-page__section h2 {
  margin: 0 0 var(--space-lg);
  font-family: var(--font-display);
  color: var(--text-primary);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0;
}

.legal-page__section h3 {
  margin: var(--space-lg) 0 8px;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
}

.legal-page__section h3:first-of-type {
  margin-top: var(--space-md);
}

.legal-page__section p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.75;
}

.legal-page__section p + p {
  margin-top: 14px;
}

.legal-page__section ul {
  margin: 10px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.legal-page__section li {
  color: var(--text-secondary);
  line-height: 1.65;
}

.legal-page__divider {
  margin: var(--space-3xl) 0;
  border: 0;
  border-top: 1px solid var(--border);
}

/* ============================================
   Contact form (subpage)
   ============================================ */

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form__overline {
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

.contact-form__required {
  color: var(--accent);
}

@media (max-width: 1100px) {
  .contact-form {
    margin-top: var(--space-2xl);
  }
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 500px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

.contact-form__field {
  display: grid;
  gap: 8px;
}

.contact-form__label {
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.contact-form__input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(61, 63, 84, 0.28);
  background: var(--surface);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  box-sizing: border-box;
  outline: none;
  transition:
    border-color var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out);
  appearance: none;
}

.contact-form__input::placeholder {
  color: var(--text-secondary);
  opacity: 1;
}

.contact-form__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 92, 10, 0.12);
}

.contact-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.contact-form__footer-text {
  display: grid;
  gap: 6px;
}

.contact-form__note {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.contact-form__consent {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.contact-form__consent a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form__consent a:hover {
  color: var(--accent);
}

.contact-form__status {
  margin: 16px 0 0;
  max-width: none;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-form__status:not(:empty) {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.contact-form__status:not(:empty)::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background-color: currentColor;
  -webkit-mask: center / contain no-repeat var(--status-icon, none);
  mask: center / contain no-repeat var(--status-icon, none);
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__status:not(:empty):not(.contact-form__status--success):not(.contact-form__status--error) {
  --status-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 6v6l4 2'/%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3C/svg%3E");
  color: var(--text-secondary);
  background: var(--surface);
  border-color: var(--border);
}

.contact-form__status--success:not(:empty) {
  --status-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  color: #1c7a4b;
  background: #e8f5ee;
  border-color: #bfe3cd;
}

.contact-form__status--error:not(:empty) {
  --status-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 9v4'/%3E%3Cpath d='M12 17h.01'/%3E%3Cpath d='M10.3 4.3 2.5 18a1.8 1.8 0 0 0 1.6 2.7h15.8a1.8 1.8 0 0 0 1.6-2.7L13.7 4.3a1.8 1.8 0 0 0-3.4 0Z'/%3E%3C/svg%3E");
  color: #c0392b;
  background: #fdecec;
  border-color: #f3c6c6;
}

/* Dark mode — contact form */

html.dark .contact-form__status:not(:empty) {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

html.dark .contact-form__status--success:not(:empty) {
  color: #6ad39c;
  background: rgba(45, 160, 100, 0.14);
  border-color: rgba(106, 211, 156, 0.32);
}

html.dark .contact-form__status--error:not(:empty) {
  color: #f0817a;
  background: rgba(211, 59, 59, 0.16);
  border-color: rgba(240, 129, 122, 0.32);
}

html.dark .contact-form__input {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

html.dark .contact-form__input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 92, 10, 0.18);
}

/* ============================================
   Tour detail page
   ============================================ */

.tour-hero-card {
  display: none;
}

@media (min-width: 980px) {
  .tour-hero-card {
    display: grid;
    position: relative;
    z-index: 3;
    align-self: center;
    gap: 18px;
    margin: 200px 0 90px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 248, 246, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

.tour-hero-card__eyebrow {
  color: rgba(255, 246, 240, 0.76);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tour-hero-card__list {
  display: grid;
  gap: 0;
  margin: 0;
}

.tour-hero-card__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tour-hero-card__row:first-child {
  border-top: 0;
  padding-top: 2px;
}

.tour-hero-card__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff8f4;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.tour-hero-card__text {
  display: grid;
  gap: 2px;
  margin: 0;
}

.tour-hero-card__label {
  color: rgba(255, 246, 240, 0.66);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-hero-card__value {
  margin: 0;
  color: #fff8f4;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.25;
}

.tour-hero-card__copy {
  margin: 0;
  color: rgba(255, 246, 240, 0.84);
  line-height: 1.75;
}

.tour-story {
  padding: var(--space-4xl) var(--space-md);
  background: var(--background);
}

.tour-story__wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--content-gutter-mobile);
}

.tour-story__wrap {
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.tour-story__overline {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
}

.tour-story__title {
  margin: 0 0 24px;
  color: var(--text-primary);
  font-size: clamp(2.25rem, 4.5vw, 3.7rem);
  font-weight: 500;
  line-height: 1.08;
}

.tour-story__lead {
  margin: 0 0 18px;
  max-width: 52ch;
  color: var(--text-primary);
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  line-height: 1.7;
}

.tour-story__text,
.tour-planning__copy p {
  margin: 0;
  color: var(--text-secondary);
}

.tour-story__text {
  line-height: 1.7;
}

.tour-planning__copy p {
  line-height: 1.85;
}

.tour-story__text--followup {
  margin-top: 18px;
}

.tour-story__text-label {
  color: var(--text-primary);
  font-weight: 500;
}

.tour-story__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.tour-story__option {
  position: relative;
  padding: clamp(17px, 1.7vw, 22px);
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-md);
}

.tour-story__option--recommended {
  background: linear-gradient(145deg, rgba(255, 103, 27, 0.09), rgba(255, 255, 255, 0.48));
}

.tour-story__option-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-story__option:not(.tour-story__option--recommended) .tour-story__option-kicker {
  color: var(--text-secondary);
}

.tour-story__option-title {
  margin: 0 0 14px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.7vw, 1.48rem);
  font-weight: 500;
  line-height: 1.2;
}

.tour-story__option-copy {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.tour-story__panel {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 10px 0 10px clamp(24px, 3vw, 38px);
  border-radius: 0;
  border-left: 1px solid rgba(255, 103, 27, 0.34);
  background: transparent;
  box-shadow: none;
}

.tour-story__gallery {
  margin-top: 0;
  padding-top: clamp(32px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  border-top: 1px solid rgba(61, 63, 84, 0.1);
}

@media (min-width: 980px) {
  .tour-story__gallery {
    grid-column: 1 / -1;
    padding-top: clamp(28px, 3vw, 44px);
  }
}

.tour-story__tile {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
}

.tour-story__tile--img {
  position: relative;
  background: var(--card-bg);
  box-shadow: var(--shadow-md);
}

.tour-story__tile--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}

.tour-story__tile--img:hover img {
  transform: scale(1.05);
}

body.lightbox-open .sticky-nav {
  visibility: hidden;
}

/* ============================================
   Bio modal ("More About Me")
   ============================================ */

.bio-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.bio-modal[hidden] {
  display: none;
}

.bio-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 11, 10, 0.6);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.bio-modal.is-open .bio-modal__overlay {
  opacity: 1;
}

.bio-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  overflow-y: auto;
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.bio-modal.is-open .bio-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.bio-modal__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  cursor: pointer;
  transition: background var(--duration) var(--ease-out);
}

.bio-modal__close:hover {
  background: var(--border);
}

.bio-modal__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 var(--space-lg);
  padding-right: 40px;
}

.bio-modal__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bio-modal__kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bio-modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.bio-modal__body p {
  margin: 0 0 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.bio-modal__body p:last-child {
  margin-bottom: 0;
}

html.dark .bio-modal__panel {
  background:
    radial-gradient(circle at top right, rgba(255, 92, 10, 0.16), transparent 28%),
    linear-gradient(180deg, #171412 0%, #0c0b0a 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  background: rgba(12, 11, 10, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: min(94vw, 1400px);
  max-height: 90vh;
}

.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  min-height: 0;
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.lightbox__caption {
  margin: 0;
  max-width: 70ch;
  padding: 0 var(--space-md);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.lightbox__caption[hidden] {
  display: none;
}

.lightbox__close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  transition: background var(--duration) var(--ease-out);
}

.lightbox__close svg {
  display: block;
  stroke: #fff;
}

.lightbox__close:hover {
  background: rgba(0, 0, 0, 0.65);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.lightbox__nav--prev {
  left: var(--space-md);
}

.lightbox__nav--next {
  right: var(--space-md);
}

.lightbox__nav:hover {
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(-50%) scale(1.05);
}

.lightbox__close:focus-visible,
.lightbox__nav:focus-visible,
.tour-story__tile--img img:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .lightbox {
    padding-inline: 12px;
  }

  .lightbox__nav {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
    transform: none;
  }

  .lightbox__nav--prev {
    left: calc(50% - 58px);
  }

  .lightbox__nav--next {
    right: calc(50% - 58px);
  }

  .lightbox__nav:hover {
    transform: scale(1.05);
  }
}

.tour-story__tile--card {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(18px, 1.6vw, 24px);
  container-type: inline-size;
}

.tour-story__tile--card .about__guests-copy {
  padding-top: 16px;
  font-size: clamp(1.05rem, 10cqi, 1.5rem);
  line-height: 1.4;
}

.tour-story__tile--card .about__guests-signoff {
  font-size: clamp(0.64rem, 4cqi, 0.78rem);
  letter-spacing: clamp(0.06em, 0.35cqi, 0.1em);
}

@media (max-width: 1350px) {
  .tour-story__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .tour-story__gallery {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .tour-story__tile--card {
    grid-column: 1 / -1;
    aspect-ratio: auto;
  }
}

.tour-story__panel-kicker,
.tour-planning__label {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-story__panel-copy {
  margin: 0 0 14px;
  max-width: 26ch;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1.14;
}

.tour-story__highlights {
  gap: 15px;
}

.tour-story__highlights li {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.tour-story__alternatives {
  display: grid;
  gap: 10px;
  margin-top: 40px;
}

.tour-story__alternatives-label {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.tour-story__alternatives p {
  margin: 0;
  max-width: 86ch;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.tour-planning {
  display: grid;
  gap: 24px;
  align-items: center;
  margin-top: 0;
  padding: clamp(26px, 4vw, 42px) 0 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-primary);
  box-shadow: none;
}

.tour-planning__copy {
  display: grid;
  gap: 10px;
}

.tour-planning__copy p {
  max-width: 78ch;
  color: var(--text-secondary);
}

.tour-planning__copy p a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tour-planning__copy p a:hover {
  color: var(--accent);
}

.tour-planning__label {
  color: var(--accent);
}

.tour-planning__cta {
  justify-self: start;
}

/* ---- Route map ---- */
.tour-map {
  position: relative;
  z-index: 1;
  padding: 0 var(--space-md) var(--space-xl);
}

.tour-map__box {
  max-width: 1880px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      180deg,
      var(--background) 0%,
      var(--surface) 20%,
      var(--surface) 80%,
      var(--background) 100%
    );
  border: 1px solid rgba(61, 63, 84, 0.08);
  box-shadow: 0 28px 70px rgba(61, 63, 84, 0.12);
}

.tour-map__wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) var(--content-gutter-mobile);
}

.tour-map__header {
  max-width: 1040px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.tour-map__layout {
  display: grid;
  gap: clamp(38px, 5vw, 72px);
  align-items: start;
}

@media (min-width: 900px) {
  .tour-map__header {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
    column-gap: clamp(38px, 5vw, 72px);
    row-gap: 14px;
    max-width: none;
    margin-bottom: clamp(36px, 4vw, 52px);
  }

  .tour-map__header .tour-map__overline {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .tour-map__header .tour-map__title {
    margin-bottom: 0;
  }

  .tour-map__header .tour-map__intro {
    max-width: 48ch;
    padding-top: 8px;
  }

  .tour-map__layout {
    grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  }
}

.tour-map__secondary {
  display: grid;
  align-content: start;
  min-width: 0;
}

@media (min-width: 900px) {
  .tour-map__secondary {
    align-self: start;
  }
}

.tour-map__overline {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
}

.tour-map__title {
  margin: 0 0 18px;
  max-width: 18ch;
  color: var(--text-primary);
  font-size: clamp(2.25rem, 4.5vw, 3.7rem);
  font-weight: 500;
  line-height: 1.08;
}

.tour-map__title-break {
  display: none;
}

@media (min-width: 1200px) {
  .tour-map__header {
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  }

  .tour-map__header .tour-map__title {
    max-width: none;
  }

  .tour-map__title-break {
    display: block;
  }
}

.tour-map__intro {
  margin: 0;
  max-width: 78ch;
  color: var(--text-secondary);
  line-height: 1.7;
}

.tour-map__figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card-bg);
  box-shadow: var(--shadow-md);
}

/* Leaflet map canvas */
.tour-map__canvas {
  width: 100%;
  height: clamp(420px, 46vw, 540px);
  background: var(--surface);
  z-index: 0;
}

.tour-map__canvas.leaflet-container {
  font-family: var(--font-body);
  background: var(--surface);
}

html.dark .tour-map__canvas.leaflet-container {
  background: #1b2230;
}

/* Dark theme = CARTO Voyager flipped to a dark, contrast-preserving palette.
   Only the tiles are filtered, so the orange markers stay true. */
html.dark .tour-map__canvas .leaflet-tile {
  filter: invert(1) hue-rotate(180deg) saturate(0.3) brightness(0.95) contrast(0.9);
}

.tour-map__canvas .leaflet-control-zoom a {
  color: var(--text-primary);
  background: var(--card-bg);
  border-color: var(--border);
}

.tour-map__canvas .leaflet-control-zoom a:hover {
  background: var(--surface);
}

.tour-map__canvas .leaflet-bar {
  box-shadow: var(--shadow-sm);
  border: none;
}

/* Place markers: the map shows possibilities, not a fixed sequence. */
.routemap-pin {
  position: relative;
  width: 30px;
  height: 40px;
  background: transparent;
  border: none;
}

.routemap-pin::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 2px;
  width: 26px;
  height: 26px;
  background: var(--accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 6px rgba(255, 103, 27, 0.22), 0 4px 9px rgba(0, 0, 0, 0.28);
}

html.dark .routemap-pin::before {
  box-shadow: 0 0 0 6px rgba(255, 103, 27, 0.30), 0 4px 11px rgba(0, 0, 0, 0.5);
}

.routemap-pin__dot {
  position: absolute;
  top: 12px;
  left: 11px;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
}

.tour-map__canvas .leaflet-tooltip {
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.tour-map__canvas .leaflet-tooltip-top::before {
  border-top-color: var(--border);
}

/* Route choices */
.tour-variants {
  display: grid;
  align-content: start;
  border-bottom: 1px solid var(--border);
}

.tour-variants__overline {
  margin: 0;
  padding: 0 0 20px;
  color: var(--accent);
}

.tour-variant {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 22px 0 24px;
  border-top: 1px solid var(--border);
}

.tour-variant__number {
  padding-top: 0;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.tour-variant__body {
  min-width: 0;
}

.tour-variant__meta {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.tour-variant__title {
  margin: 0 0 8px;
  color: var(--text-primary);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.25;
}

.tour-variant__text {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.tour-map__planning {
  margin-top: clamp(36px, 5vw, 56px);
  border-top: 1px solid var(--border);
}

html.dark .tour-map__box {
  background:
    radial-gradient(circle at top right, rgba(255, 92, 10, 0.16), transparent 28%),
    linear-gradient(180deg, #171412 0%, #0c0b0a 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

html.dark .tour-story {
  background: var(--background);
}

html.dark .tour-story__panel {
  border-left-color: rgba(255, 103, 27, 0.42);
}

html.dark .tour-story__option {
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

html.dark .tour-story__option--recommended {
  background: linear-gradient(145deg, rgba(255, 103, 27, 0.12), rgba(255, 255, 255, 0.035));
}

html.dark .tour-story__lead,
html.dark .tour-story__panel-copy,
html.dark .tour-story__title,
html.dark .tour-variant__title,
html.dark .tour-hero-card__value {
  color: var(--text-primary);
}

html.dark .tour-story__text,
html.dark .tour-variant__text,
html.dark .tour-planning__copy p {
  color: var(--text-secondary);
}

html.dark .tour-story__gallery {
  border-top-color: rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .tour-story {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  .tour-story__wrap {
    padding: 0 var(--content-gutter-desktop);
  }

  .tour-map {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  .tour-map__wrap {
    padding-right: var(--content-gutter-desktop);
    padding-left: var(--content-gutter-desktop);
  }

  .tour-planning {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 980px) {
  .tour-story__wrap {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.68fr);
    row-gap: clamp(28px, 3vw, 44px);
  }
}

@media (max-width: 767px) {
  .hero--subpage .hero__content {
    padding-top: 150px;
    padding-bottom: 64px;
  }

  .hero--subpage .hero__title {
    font-size: clamp(2.45rem, 13vw, 3.35rem);
  }

  .hero--subpage .hero__subtitle {
    margin-bottom: 30px;
  }

  .tour-story {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }

  .tour-planning {
    padding: 22px 0;
  }

  .tour-story__panel {
    padding-left: 22px;
  }

  .tour-story__options {
    grid-template-columns: 1fr;
  }

}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  padding: var(--space-md);
  color: var(--text-primary);
}

@media (min-width: 768px) {
  .site-footer {
    padding: var(--space-lg);
  }
}

.site-footer__shell {
  position: relative;
  max-width: 1880px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #747372 0%, #3f2b22 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.site-footer__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center 62%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.34;
  transform: scale(1.02);
  transform-origin: center;
  pointer-events: none;
}

.site-footer__shell.has-background::before {
  background-image: url("../assets/img/hero-07.jpg");
  background-image: image-set(
    url("../assets/img/opt/hero-07-960.webp") type("image/webp"),
    url("../assets/img/hero-07.jpg") type("image/jpeg")
  );
}

@media (min-width: 768px) {
  .site-footer__shell.has-background::before {
    background-image: url("../assets/img/hero-07.jpg");
    background-image: image-set(
      url("../assets/img/opt/hero-07-1600.webp") type("image/webp"),
      url("../assets/img/hero-07.jpg") type("image/jpeg")
    );
  }
}

.site-footer__shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 7, 6, 0.28) 0%, rgba(9, 7, 6, 0.56) 100%),
    radial-gradient(circle at top left, rgba(255, 92, 10, 0.16), transparent 30%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
  .site-footer__inner {
    padding: 0 var(--space-2xl);
  }
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  padding: 32px 0 28px;
  padding-bottom: 28px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__brand img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 100%;
  opacity: 0.90;
  filter: brightness(0) invert(1);
}

.site-footer__contact-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(240, 235, 232, 0.88);
  font-size: 0.97rem;
}

.site-footer__contact-item a {
  color: inherit;
  transition: color var(--duration) var(--ease-out);
}

.site-footer__contact-item a:hover {
  color: #f0ebe8;
}

.site-footer__contact-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 92, 10, 0.13);
  color: var(--accent);
  flex-shrink: 0;
}

.site-footer__body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(36px, 6vw, 92px);
}

.site-footer__intro {
  display: grid;
  align-content: start;
}

.site-footer__eyebrow {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-footer__title {
  margin: 0;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  color: #f0ebe8;
}


.site-footer__cta {
  margin-top: 28px;
  align-self: start;
  justify-self: start;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-content: start;
  padding-top: 12px;
}

.site-footer__links-title {
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f0ebe8;
}

.site-footer__links-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links-list li {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__links-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.site-footer__links-list li:last-child {
  margin-bottom: 0;
}

.site-footer__links-list a {
  color: rgba(240, 235, 232, 0.88);
  transition: color var(--duration) var(--ease-out);
}

.site-footer__links-list a:hover {
  color: #f0ebe8;
}

.site-footer__bottom {
  margin-top: 34px;
  padding: 24px 0 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__copyright {
  margin: 0;
  color: rgba(240, 235, 232, 0.72);
  font-size: 0.94rem;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(240, 235, 232, 0.88);
  font-size: 0.88rem;
  transition:
    color var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out),
    background var(--duration) var(--ease-out);
}

.site-footer__socials-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-footer__bottom-end {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__legal-link {
  font-size: 0.88rem;
  color: rgba(240, 235, 232, 0.72);
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
  white-space: nowrap;
}

.site-footer__legal-link:hover {
  color: #f0ebe8;
}

html.dark .site-footer__legal-link {
  color: rgba(240, 235, 232, 0.72);
}

html.dark .site-footer__legal-link:hover {
  color: #f0ebe8;
}

.site-footer__socials a:hover {
  color: #f0ebe8;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
}

html.dark .site-footer {
  color: var(--text-primary);
}

html.dark .site-footer__shell {
  background: linear-gradient(180deg, rgba(24, 20, 18, 0.80), rgba(14, 11, 9, 0.90));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

html.dark .site-footer__shell::before {
  opacity: 0.26;
}

html.dark .site-footer__shell::after {
  background:
    linear-gradient(180deg, rgba(9, 7, 6, 0.42) 0%, rgba(9, 7, 6, 0.70) 100%),
    radial-gradient(circle at top left, rgba(255, 92, 10, 0.14), transparent 30%);
}

html.dark .site-footer__brand img {
  filter: brightness(0) invert(1);
}

html.dark .site-footer__top,
html.dark .site-footer__bottom {
  border-color: rgba(255, 255, 255, 0.10);
}

html.dark .site-footer__contact-item,
html.dark .site-footer__links-list a,
html.dark .site-footer__copyright,
html.dark .site-footer__socials a {
  color: rgba(240, 235, 232, 0.72);
}

html.dark .site-footer__title,
html.dark .site-footer__links-title,
html.dark .site-footer__contact-item a:hover,
html.dark .site-footer__links-list a:hover,
html.dark .site-footer__socials a:hover {
  color: #f0ebe8;
}

html.dark .site-footer__contact-icon {
  background: rgba(255, 92, 10, 0.16);
  color: var(--accent);
}


html.dark .site-footer__links-list li {
  color: var(--accent);
}

html.dark .site-footer__socials a {
  border-color: rgba(255, 255, 255, 0.12);
}

html.dark .site-footer__socials a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.20);
}

@media (max-width: 960px) {
  .site-footer__body {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .site-footer__shell {
    border-radius: 24px;
  }

  .site-footer__inner {
    padding: 0 20px;
  }

  .site-footer__top {
    padding-top: 24px;
    margin-bottom: 28px;
    padding-bottom: 22px;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
  }

  .site-footer__callout {
    width: 100%;
    align-items: flex-start;
  }

  .site-footer__trust {
    gap: 8px;
  }

  .site-footer__bottom {
    margin-top: 28px;
    padding: 20px 0 24px;
  }
}



/* ============================================
   Scroll Reveal
   ============================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}

[data-reveal="left"] {
  transform: translateX(-32px);
}

.about__visual[data-reveal="left"] {
  transform: translateX(-22px) translateY(10px) scale(0.985);
  transition:
    opacity 0.95s var(--ease-out),
    transform 0.95s var(--ease-out);
}

.tour-card[data-reveal] {
  transform: translateY(20px) scale(0.988);
  transition:
    opacity 0.85s var(--ease-out),
    transform 0.85s var(--ease-out),
    box-shadow 0.85s var(--ease-out),
    border-color 0.85s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}


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

  .hero__overline,
  .hero__title,
  .hero__subtitle,
  .hero__cta {
    opacity: 1;
    transform: none;
    animation: none;
  }

  [data-reveal],
  [data-reveal="left"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}





.main-footer-royal{
	position: relative;
	background: url('../images/footer-bg-royal.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0 0 0;
	margin-bottom: 20px;
	overflow: hidden;
}

.main-footer-royal::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 80%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.main-footer-royal .container{
	position: relative;
	z-index: 2;
}

.main-footer-header-royal{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 60px;
	padding-bottom: 60px;
}

.footer-logo-royal img{
	max-width: 138px;
}

.footer-contact-details-royal ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
}

.footer-contact-details-royal ul li{
	font-size: 16px;
	line-height: normal;
	color: var(--white-color);
}

.footer-contact-details-royal ul li img{
	max-width: 22px;
	margin-right: 10px;
}

.footer-contact-details-royal ul li a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-details-royal ul li a:hover{
	color: var(--accent-color);
}

.main-footer-body{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.footer-links-box-royal,
.footer-about-royal{
	width: calc(50% - 15px);
}

.footer-about-contact-box-royal{
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	border-radius: 20PX;
	padding: 20px;
}

.footer-about-contact-box-royal .icon-box img{
	max-width: 50px;
}

.footer-about-contact-content-royal{
	width: calc(100% - 70px);
}

.footer-about-contact-content-royal h3{
	font-size: 30px;
	color: var(--white-color);
}

.footer-about-contact-content-royal a{
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-about-contact-content-royal a:hover{
	color: var(--accent-color);
}

.footer-links-box-royal{
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	gap: 40px 100px;
}

.footer-links-royal h3{
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-links-royal ul{
    list-style: disc;
    margin: 0;
    padding-left: 20px;
}

.footer-links-royal ul li{
	color: var(--white-color);
	font-weight: 500;
	line-height: 1.5em;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.footer-links-royal ul li:last-child{
	margin: 0;
}

.footer-links-royal ul li::marker{
    color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.footer-links-royal ul li:hover::marker{
	color: var(--white-color);
}

.footer-links-royal ul li a{
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links-royal ul li a:hover{
	color: var(--accent-color);
}

.footer-copyright-royal{
	position: relative;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding: 60px 0;
	z-index: 1;
}

.footer-copyright-text-royal p{
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-social-links-royal{
	text-align: right;
}

.footer-social-links-royal ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links-royal ul li{
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px;
}

.footer-social-links-royal ul li:last-child{
	margin-right: 0;
}

.footer-social-links-royal ul li a{
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links-royal ul li:hover a{
	background: var(--accent-color);
}

.footer-social-links-royal ul li a i{
	color: var(--white-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links-royal ul li:hover a i{
	color: var(--primary-color);
}

.footer-header-prime{
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 60px;
    padding-bottom: 60px;
}

.footer-header-box-prime{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.footer-header-content{
    max-width: calc(100% - 160px);
}

.footer-header-content .section-title h3{
    font-size: 20px;
    color: var(--accent-color);
    padding: 0;
}

.footer-header-content .section-title h3::before{
    display: none;
}

.footer-header-content .section-title h2{
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-social-links-prime ul{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links-prime ul li a{
    background: var(--dark-divider-color);
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
    padding: 8px 16px;
    line-height: 1.5em;
    transition: all 0.4s ease-in-out;
}

.footer-social-links-prime ul li a:hover{
    background: var(--accent-color);
    color: var(--primary-color);
}

.footer-social-links-prime ul li a i{
    font-size: 18px;
}

.footer-logo-prime{
    margin-bottom: 20px;
}

.footer-logo-prime img{
    width: 100%;
    max-width: 138px;
}

.about-footer-content-prime p{
    color: var(--white-color);
    margin: 0;
}

.footer-links-prime h3{
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 30px;
}

.footer-links-prime p{
    color: var(--white-color);
    margin: 0;
}

.footer-links-prime ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links-prime ul li{
    color: var(--white-color);
    line-height: 1.5em;
    border-bottom: 1px solid var(--dark-divider-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.footer-links-prime ul li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.footer-links-prime ul li a{
    display: flex;
    align-items: center;
    gap: 15px;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links-prime ul li a:hover{
    color: var(--accent-color);
}

.footer-links-prime ul li img{
    width: 100%;
    max-width: 20px;
}

.footer-location-prime{
    max-width: 250px;
    margin: 0 auto;
}

.footer-contact-prime{
    margin-right: 2.604vw;
}

.footer-newsletter-form-prime .form-group{
	position: relative;
    display: flex;
	border-bottom: 1px solid var(--dark-divider-color);
}

.footer-newsletter-form-prime .form-group .form-control{
	width: calc(100% - 36px);
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 6px 20px 20px 0;
}

.footer-newsletter-form-prime .form-group .form-control::placeholder{
	color: var(--white-color);
	opacity: 50%;
}

.footer-newsletter-form-prime .form-group .newsletter-btn{
	width: 36px;
	height: 36px;
	border-radius: 5px;
	background: var(--accent-color);
	border: none;
	padding: 0;
    transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-prime .form-group .newsletter-btn:hover{
    background: var(--white-color);
}

.footer-newsletter-form-prime .form-group .newsletter-btn img{
    width: 100%;
	max-width: 12px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-prime .form-group .newsletter-btn:hover img{
    transform: rotate(45deg);
}

.footer-copyright-text-prime{
    text-align: center;
    border-top: 1px solid var(--dark-divider-color);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-copyright-text-prime p{
    color: var(--white-color);
    margin: 0;
}
