/* ============================================================
   Tango After Dark — Static site
   Vanilla CSS rebuild (no Bootstrap, no jQuery)
   ============================================================ */

/* ------- Design tokens ------- */
:root {
  --c-red:        #6b0c0c;
  --c-red-deep:   #4a0808;
  --c-red-glow:   rgba(107, 12, 12, 0.45);
  --c-ink:        #0b172d;
  --c-ink-soft:   rgba(11, 23, 45, 0.6);
  --c-bg:         #0b172d;
  --c-surface:    rgba(0, 0, 0, 0.55);
  --c-surface-2:  rgba(0, 0, 0, 0.35);
  --c-line:       rgba(255, 255, 255, 0.18);
  --c-line-soft:  rgba(255, 255, 255, 0.08);
  --c-text:       #ffffff;
  --c-text-mute:  rgba(255, 255, 255, 0.78);
  --c-text-dim:   rgba(255, 255, 255, 0.55);

  --font-display: "Bebas Neue", "Bebas-Regular", "Oswald", sans-serif;
  --font-body:    "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --shadow-deep:   0 0 30px 16px rgba(0, 0, 0, 0.8);
  --shadow-soft:   0 0 30px 16px rgba(0, 0, 0, 0.3);
  --shadow-inset:  inset 0 -90px 150px rgba(0, 0, 0, 0.9);

  --space-1:  0.5rem;
  --space-2:  1rem;
  --space-3:  1.5rem;
  --space-4:  2rem;
  --space-5:  3rem;
  --space-6:  4.5rem;
  --space-7:  6rem;

  --radius-sm: 3px;
  --radius:    6px;

  --header-h: 80px;
  --container: 1200px;

  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-move:      cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  background-color: var(--c-bg);
  background-image: url("../images/bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow-x: hidden;
}

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

img { color: transparent; }

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .2s var(--ease-out-quint);
}
a:hover { opacity: .65; }
a:focus-visible {
  outline: 2px solid var(--c-red);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--c-text);
  margin: 0 0 var(--space-2);
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 1.1;
}
h1 { font-size: clamp(3rem, 6vw, 5.5rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(2.25rem, 4.5vw, 4rem); }
h3 { font-size: clamp(2rem, 3.5vw, 2.75rem); }
h4 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

p {
  margin: 0 0 var(--space-3);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--c-text-mute);
  font-weight: 300;
}

/* ------- Utility classes ------- */
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.container-wide {
  width: min(100% - 2rem, 1400px);
  margin-inline: auto;
}
.center { text-align: center; }
.muted  { color: var(--c-text-mute); }
.dim    { color: var(--c-text-dim); }

.section {
  padding: var(--space-6) 0;
}
.section-lg { padding: var(--space-7) 0; }
.section-sm { padding: var(--space-5) 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  font-size: 1.1rem;
  color: var(--c-red);
  border-bottom: 2px solid var(--c-red);
  padding-bottom: 4px;
  margin-bottom: var(--space-3);
}

/* ------- Skip link ------- */
.skip-link {
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 8px 14px;
  background: var(--c-red);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transform: translateY(-200%);
  transition: transform .2s var(--ease-out-quint);
  z-index: 1000;
}
.skip-link:focus { transform: translateY(0); }

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  background: #000;
  padding: 1rem 1.5rem;
  z-index: 50;
  box-shadow: 0 17px 49px -6px rgba(0,0,0,0.5);
  transition: padding .25s var(--ease-out-quint), background-color .25s var(--ease-out-quint);
}
.site-header.is-scrolled {
  padding: 0.5rem 1.5rem;
}
.site-header.is-scrolled .header-logo { max-height: 56px; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.header-logo {
  display: block;
  max-height: 70px;
  width: auto;
  transition: max-height .25s var(--ease-out-quint), opacity .2s var(--ease-out-quint);
}
.header-logo--alt {
  display: none; /* hidden on mobile / default; shown only on desktop when scrolled */
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 1.6rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.nav-toggle:focus-visible { outline-offset: 0; }

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.primary-nav > ul > li { position: relative; }
.primary-nav a {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 0.5rem;
  display: inline-block;
}
.primary-nav a:hover { opacity: 1; color: var(--c-red); }
.primary-nav .has-children > a::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.65em;
  margin-left: 0.4em;
  vertical-align: middle;
  opacity: 0.6;
  display: inline-block;
  transition: transform .2s var(--ease-out-quint);
}
.primary-nav .has-children.is-open > a::after { transform: rotate(180deg); }

.primary-nav .sub-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  background: #000;
  min-width: 220px;
  padding: 0.75rem 1rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
  display: none;
  z-index: 60;
}
.primary-nav .has-children:hover > .sub-menu,
.primary-nav .has-children.is-open > .sub-menu { display: block; }
.sub-menu li { padding: 6px 0; }
.sub-menu a {
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  display: block;
  padding: 0.25rem 0;
}

.current-menu-item > a {
  font-weight: 700;
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: #000;
    padding: 1rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .25s var(--ease-move);
    z-index: 40;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav > ul > li { border-bottom: 1px solid var(--c-line-soft); padding: 0.5rem 0; }
  .primary-nav a { padding: 0.75rem 0; font-size: 1rem; }
  .sub-menu {
    position: static;
    box-shadow: none;
    padding: 0 0 0 1rem;
    background: transparent;
  }
  .sub-menu li { padding: 4px 0; }
}

/* ============================================================
   HERO / SECTION HEADERS
   ============================================================ */
.hero {
  position: relative;
  height: 440px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 90px 150px rgba(0, 0, 0, 0.8);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.hero-caption {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--space-3);
}
.hero-caption h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

/* ============================================================
   HOME — Hero video + intro + reviews slider
   ============================================================ */
.hero-video {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: var(--shadow-deep);
}
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-video__cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}
.hero-video__cta a {
  pointer-events: auto;
}
.hero-social {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 1.4rem;
}
.hero-social a {
  color: #fff;
  font-size: 1.5rem;
  transition: color .2s var(--ease-out-quint), transform .2s var(--ease-out-quint);
}
.hero-social a:hover {
  color: var(--c-red);
  transform: translateY(-2px);
  opacity: 1;
}

/* Intro block on home */
.home-intro {
  padding: var(--space-6) 0;
}
.home-intro .home-logo {
  display: block;
  margin: 0 auto var(--space-3);
  max-width: 220px;
  height: auto;
}
.home-intro p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
}
.home-intro p strong { color: #fff; font-weight: 500; }
.home-intro .btn-row { text-align: center; margin-top: var(--space-4); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border: 4px solid var(--c-red);
  background: var(--c-surface);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background-color .2s var(--ease-out-quint), transform .15s var(--ease-out-quint);
}
.btn:hover {
  background-color: var(--c-red);
  opacity: 1;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.78rem; border-width: 2px; }

/* ============================================================
   TESTIMONIALS SLIDER
   ============================================================ */
.testimonials {
  padding: var(--space-6) 0;
  background: rgba(0,0,0,0.25);
  box-shadow: var(--shadow-deep);
}
.testimonials__title {
  text-align: center;
  margin-bottom: var(--space-4);
}
.testimonial {
  background: var(--c-surface);
  padding: var(--space-4);
  border-radius: var(--radius);
  box-shadow: 0 0 33px 5px rgba(0, 0, 0, 0.8);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimonial__media {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-3);
}
.testimonial__media img {
  max-width: 240px;
  width: 100%;
  height: auto;
}
.testimonial__quote {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: var(--space-2);
  color: #fff;
}
.testimonial__stars {
  color: #f5c518;
  font-size: 1.1rem;
  margin-bottom: var(--space-1);
  letter-spacing: 0.15em;
}
.testimonial__source {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--c-text-mute);
  margin-bottom: var(--space-3);
}
.testimonial__nav {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-3);
}
.testimonial__nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--c-line);
  color: #fff;
  background: rgba(0,0,0,0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testimonial__nav button:hover {
  background: var(--c-red);
  border-color: var(--c-red);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 200;
  padding: var(--space-5) 0 var(--space-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
}
.site-footer h5 {
  color: #fff;
  border-bottom: 2px solid #fff;
  text-align: left;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: var(--space-2);
  padding-bottom: 6px;
  text-transform: uppercase;
}
.site-footer ul li {
  text-align: left;
  padding: 3px 0;
}
.site-footer a {
  color: #fff;
}
.site-footer .review-quote {
  font-size: 12px;
  font-style: italic;
  color: #fff;
  margin-bottom: 4px;
}
.site-footer .review-quote + small {
  display: block;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--c-text-mute);
  margin-bottom: 8px;
}
.site-footer .footer-tours {
  padding-left: 1.5rem;
  list-style: disc;
}
.site-footer .footer-tours li { margin: 6px 0; }

.footer-social {
  display: flex;
  gap: var(--space-2);
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-line);
  font-size: 1rem;
  transition: background-color .2s var(--ease-out-quint), border-color .2s var(--ease-out-quint);
}
.footer-social a:hover {
  background: var(--c-red);
  border-color: var(--c-red);
  opacity: 1;
}

.footer-bottom {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--c-line-soft);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
}
.footer-bottom p { margin: 0; font-size: 12px; line-height: 1.5; }
.footer-bottom a { color: var(--c-red); }

/* ============================================================
   GENERIC PAGE
   ============================================================ */
.page-hero {
  position: relative;
  height: 400px;
  background-position: 80% center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 90px 150px rgba(0, 0, 0, 0.8);
  border-bottom: 3px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}
.page-hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
}
.page-content {
  padding: var(--space-5) 0;
}
.page-content .container {
  max-width: 880px;
}
.page-content p { font-size: 1rem; line-height: 1.7; }
.page-content em { font-style: italic; color: #fff; }

/* ============================================================
   ABOUT THE SHOW
   ============================================================ */
.about-hero { background-image: url("../images/about-the-show.webp"); }
.about-bajada {
  padding: var(--space-5) 0;
}
.about-bajada p {
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================================
   THE CAST (grilla)
   ============================================================ */
.cast-section {
  padding: var(--space-6) 0;
}
.cast-section h3 {
  text-align: center;
  margin-bottom: var(--space-4);
}
.cast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-3);
  width: min(100% - 2rem, 900px);
  margin: 0 auto;
}
.cast-card {
  text-align: center;
}
.cast-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease-out-quint);
}
.cast-card:hover img { transform: translateY(-4px); }
.cast-card h6 {
  margin-top: 0.8rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  font-family: var(--font-display);
}
.cast-card span {
  display: block;
  font-size: 0.85rem;
  color: var(--c-text-mute);
}

/* ============================================================
   MEET THE CAST (modales)
   ============================================================ */
.meet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.meet-card {
  background: transparent;
  text-align: center;
  cursor: pointer;
  border: 0;
  display: block;
  width: 100%;
}
.meet-card img {
  width: 70%;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease-out-quint), box-shadow .25s var(--ease-out-quint);
}
.meet-card:hover img,
.meet-card:focus-visible img {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107, 12, 12, 0.4);
}
.meet-card h6 {
  margin-top: var(--space-2);
  font-size: 1.1rem;
}
.meet-section-title {
  text-align: center;
  margin: var(--space-6) 0 var(--space-3);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: var(--space-3);
  overflow-y: auto;
}
.modal.is-open { display: flex; }
.modal__dialog {
  background: var(--c-ink);
  border-radius: var(--radius-sm);
  width: min(100%, 760px);
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  padding: var(--space-4);
  position: relative;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  border-top: 4px solid var(--c-red);
}
.modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 1.4rem;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal__close:hover { background: var(--c-red); }
.modal__media img {
  width: 220px;
  margin: 0 auto var(--space-3);
  border-radius: var(--radius-sm);
}
.modal__dialog h5 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin: 0;
  color: var(--c-red);
}
.modal__dialog h6 {
  font-size: 1.1rem;
  margin: var(--space-1) 0 var(--space-3);
  letter-spacing: 0.04em;
  color: #fff;
}
.modal__dialog p {
  color: #fff;
  font-size: 0.95rem;
  text-align: left;
  padding: 0 var(--space-2);
  font-weight: 300;
  line-height: 1.7;
}

/* ============================================================
   TOUR & TICKETS
   ============================================================ */
.tour-section { padding: var(--space-6) 0; }
.tour-section h3 {
  text-align: center;
  margin-bottom: var(--space-5);
}
.tour-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-3);
  max-width: 1100px;
  margin: 0 auto;
}
.tour-item {
  text-align: center;
  background: var(--c-surface-2);
  padding: var(--space-3) var(--space-2);
  border-radius: var(--radius);
  border: 1px solid var(--c-line-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  transition: border-color .2s var(--ease-out-quint), transform .2s var(--ease-out-quint);
}
.tour-item:hover {
  border-color: var(--c-red);
  transform: translateY(-3px);
}
.tour-item__city {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
}
.tour-item__country {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--c-text-mute);
  text-transform: uppercase;
}
.tour-item__date {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: #fff;
}
.tour-item__cta { margin-top: auto; }
.tour-item__cta.disabled {
  pointer-events: none;
  opacity: 0.55;
  background: var(--c-text-dim);
  border-color: var(--c-text-dim);
}
.tour-item--past {
  opacity: 0.55;
}
.tour-item--past .tour-item__cta {
  cursor: not-allowed;
}

/* ============================================================
   VIDEOS
   ============================================================ */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-3);
}
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.video-embed iframe,
.video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-page {
  padding: var(--space-5) 0;
}
.review-card {
  background: rgba(0,0,0,0.6);
  border-radius: var(--radius);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
  box-shadow: 0 0 10px rgba(0,0,0,0.9);
  border-top: 4px solid var(--c-red);
}
.review-card h3.review-written {
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.25;
}
.review-card .review-stars {
  color: #f5c518;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-2);
}
.review-card h3.review-source {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: var(--space-3);
  letter-spacing: 0.18em;
  color: var(--c-red);
}
.review-card .review-meta {
  text-align: center;
  color: var(--c-text-mute);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.review-card p.reviews-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text-mute);
  margin: 0;
}

/* ============================================================
   GALLERIES (categorías + galerías individuales)
   ============================================================ */
.galleries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.gallery-tile {
  position: relative;
  height: 350px;
  background-position: 80% center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid #000;
  transition: filter .3s var(--ease-out-quint);
}
.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
}
.gallery-tile:hover { filter: grayscale(1); }
.gallery-tile__caption {
  position: relative;
  z-index: 2;
  padding-left: 8%;
}
.gallery-tile__caption h2 {
  font-size: clamp(2.5rem, 6vw, 6rem);
  margin: 0;
  letter-spacing: 0.04em;
}
.gallery-tile--right .gallery-tile__caption {
  margin-left: auto;
  padding: 0 8% 0 0;
  text-align: right;
}

/* Gallery individual */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-2);
  padding: var(--space-4) 0;
}
.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  position: relative;
  aspect-ratio: 4 / 3;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s var(--ease-move), filter .25s var(--ease-out-quint);
}
.gallery-grid a:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: var(--space-3);
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: min(100%, 1280px);
  max-height: calc(100vh - 100px);
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0,0,0,0.7);
}
.lightbox__caption {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-text-mute);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.6);
  border: 2px solid var(--c-line);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background-color .2s var(--ease-out-quint), border-color .2s var(--ease-out-quint);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--c-red);
  border-color: var(--c-red);
}
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev  { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 18px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding: var(--space-6) 0;
}
.contact-section h3 {
  text-align: center;
  margin-bottom: var(--space-4);
}
.contact-section h4 {
  text-align: center;
  font-size: 1.6rem;
  border-bottom: 1px solid #fff;
  padding-bottom: var(--space-2);
  margin-bottom: var(--space-3);
}
.contact-block {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contact-block .company {
  font-size: 1.4rem;
  margin-bottom: var(--space-2);
  color: var(--c-red);
}
.contact-block .email-link {
  display: inline-block;
  margin-top: var(--space-2);
  font-size: 1.1rem;
}

/* ============================================================
   SITE CREDITS MODAL (small overlay on footer click)
   ============================================================ */
.credits-modal { z-index: 110; }
.credits-modal .modal__dialog {
  width: min(100%, 540px);
  text-align: left;
}
.credits-modal h5 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-3);
  color: var(--c-red);
  border-bottom: 2px solid var(--c-red);
  padding-bottom: 8px;
}
.credits-modal .credits-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
  padding: var(--space-2);
}
.credits-modal .credits-row h6 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-red);
  margin: 0 0 4px;
}
.credits-modal .credits-row p {
  font-size: 0.95rem;
  color: #fff;
  margin: 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .header-logo { max-height: 60px; }
  h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
}

@media (max-width: 768px) {
  .hero,
  .page-hero { height: 360px; }
  .hero-video { height: 360px; }
  .section { padding: var(--space-5) 0; }
  .section-lg { padding: var(--space-6) 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  body { font-size: 15px; }
  .hero,
  .page-hero { height: 320px; }
  .hero-video { height: 320px; }
  .gallery-tile { height: 280px; }
  .footer-grid { grid-template-columns: 1fr; }
  .tour-list { grid-template-columns: 1fr; }
  .modal__media img { width: 160px; }
  .meet-card img { width: 90%; }
}

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