/* ================================================================
   MUHTESEM TRAVEL — main stylesheet
   Editorial / magazine palette · refined typography · slow motion
================================================================ */

:root {
  --color-bg:        #FAF6EE;   /* warm cream paper */
  --color-bg-2:      #F2EBDC;   /* slightly deeper for alt sections */
  --color-surface:   #FFFFFF;
  --color-ink:       #1E1E1A;   /* near-black with warm cast */
  --color-ink-soft:  #3F3D36;
  --color-muted:     #6F6A5E;   /* warm grey for body */
  --color-line:      #E2D9C5;   /* hairline cream */
  --color-accent:    #B8956A;   /* antique gold */
  --color-accent-dk: #8E6D45;   /* deep gold on hover */
  --color-dark:      #1E1E1A;

  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius:    4px;     /* tighter, more editorial */
  --radius-sm: 2px;
  --max-w:     1240px;
  --shadow:    0 12px 40px rgba(30, 30, 26, 0.06);
  --shadow-lg: 0 24px 70px rgba(30, 30, 26, 0.12);

  --header-h: 78px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--color-ink); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--color-accent); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 .55em;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}
h1 { font-size: clamp(2.6rem, 5.8vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin: 0 0 1.1em; }
em, i { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 18px;
  display: inline-block;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 600px) {
  .container { padding: 0 22px; }
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--color-line);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-ink);
  white-space: nowrap;
}
.brand span {
  color: var(--color-accent);
  margin: 0 .2em;
  font-style: italic;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }

.lang-switch {
  display: flex;
  gap: 2px;
  border: 1px solid var(--color-line);
  border-radius: 0;
  padding: 0;
  background: transparent;
}
.lang-switch button {
  font: inherit;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-muted);
  background: transparent;
  border: 0;
  padding: 8px 12px;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.lang-switch button:hover { color: var(--color-ink); }
.lang-switch button.active {
  background: var(--color-ink);
  color: var(--color-bg);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-ink);
  margin: 7px 0;
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

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

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--color-dark);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.35) 100%);
  z-index: 1;
}
.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(1.08) saturate(1.05);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
.hero .eyebrow { color: rgba(255,255,255,.85); }
.hero h1 {
  color: #fff;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: .35em;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 em { font-style: italic; color: rgba(255,255,255,.95); }
.hero .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 300;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
  opacity: .9;
  margin-bottom: 2.6em;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* gold thin underline below hero h1 */
.hero h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: var(--color-accent);
  margin: 28px auto 0;
}

/* sub-hero (для внутренних страниц) */
.subhero {
  padding: 100px 0 60px;
  border-bottom: 1px solid var(--color-line);
  text-align: center;
}
.subhero h1 {
  margin: 0 auto .35em;
  max-width: 22ch;
  font-weight: 400;
}
.subhero h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: var(--color-accent);
  margin: 26px auto 26px;
}
.subhero .lead {
  color: var(--color-muted);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .25s, color .25s, border-color .25s, transform .15s;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dk);
  border-color: var(--color-accent-dk);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--color-ink);
  border-color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}
.btn-outline:hover {
  background: var(--color-ink);
  color: var(--color-bg);
}

/* ============ SECTIONS ============ */

section { padding: 110px 0; }
section.tight { padding: 70px 0; }

.section-head {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 70px;
}
.section-head h2 { margin-bottom: 22px; font-weight: 400; }
.section-head h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: var(--color-accent);
  margin: 24px auto 0;
}
.section-head p { color: var(--color-muted); font-size: 1.05rem; font-weight: 300; line-height: 1.7; }

/* ornamental divider used between sections (small dot between two thin lines) */
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--color-accent);
  margin: 48px auto;
  max-width: 240px;
}
.divider-ornament::before,
.divider-ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-line);
}
.divider-ornament span {
  font-size: 8px;
  letter-spacing: .5em;
}

/* ============ TOUR CARDS ============ */

.tour-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.tour-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}
.tour-card .cover {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.tour-card .cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s ease;
}
.tour-card:hover .cover img { transform: scale(1.05); }
.tour-card .badge {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(255,255,255,.92);
  color: var(--color-ink);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 0;
  backdrop-filter: blur(6px);
}
.tour-card .badge.vip {
  background: var(--color-accent);
  color: #fff;
}
.tour-card .body {
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}
.tour-card h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  font-weight: 500;
}
.tour-card .duration {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 22px;
}
.tour-card .desc {
  color: var(--color-muted);
  font-size: .96rem;
  font-weight: 300;
  flex: 1;
  margin-bottom: 28px;
  line-height: 1.7;
}
.tour-card .actions {
  display: flex;
  justify-content: center;
}
.tour-card .actions .btn { padding: 12px 24px; font-size: .72rem; }

/* ============ FEATURES ("Why us") ============ */

.features {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.feature {
  text-align: center;
  padding: 24px 12px;
}
.feature .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1px;
  height: 28px;
  background: var(--color-accent);
  margin: 0 auto 24px;
  font-size: 0;
}
.feature h3 { font-size: 1.15rem; margin-bottom: 12px; font-weight: 500; }
.feature p { color: var(--color-muted); font-size: .92rem; font-weight: 300; line-height: 1.7; margin: 0; }

/* ============ MARQUEE (two rows, both right, slow) ============ */

.marquee-section {
  padding: 36px 0;
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.marquee-row {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-bottom: 16px;
}
.marquee-row:last-child { margin-bottom: 0; }
/* edges are clean — no fade gradients */

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-right 90s linear infinite;
}
.marquee-track img {
  height: 320px;
  width: 240px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  filter: saturate(1.05);
}
.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
@media (max-width: 700px) {
  .marquee-track img { height: 240px; width: 180px; }
}

/* ============ AUTHOR TEASER (homepage block) ============ */

.author-teaser {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.author-teaser img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 0;
}
.author-teaser .eyebrow { margin-bottom: 14px; }
.author-teaser h3 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 18px;
}
.author-teaser h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: var(--color-accent);
  margin: 18px 0 0;
}
.author-teaser blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--color-ink-soft);
  margin: 24px 0;
  padding: 0;
  border: 0;
}
.author-teaser p {
  color: var(--color-muted);
  font-weight: 300;
  margin-bottom: 22px;
}
@media (max-width: 720px) {
  .author-teaser {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .author-teaser img { max-width: 280px; margin: 0 auto; }
  .author-teaser h3::after { margin-left: auto; margin-right: auto; }
}

/* ============ SPLIT (about / intro) ============ */

.split {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: center;
}
.split img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split.author-hero img {
  aspect-ratio: 4/5;
}
.split.author-hero blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--color-ink);
  border-left: 1px solid var(--color-accent);
  padding: 4px 0 4px 22px;
  margin: 0 0 26px;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split img { max-height: 520px; }
}

/* ============ GLIMPSES (video section) ============ */

.glimpses {
  background: var(--color-dark);
  color: var(--color-bg);
  padding: 110px 0;
}
.glimpses .section-head h2 { color: #fff; }
.glimpses .section-head .eyebrow { color: var(--color-accent); }
.glimpses .section-head h2::after { background: var(--color-accent); }
.glimpses .section-head p { color: rgba(250,246,238,.7); }

.video-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1080px;
  margin: 0 auto;
}
.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 9 / 16;
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-sound {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(30,30,26,.6);
  border: 1px solid rgba(255,255,255,.18);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .25s, transform .15s;
  z-index: 2;
}
.video-sound:hover { background: var(--color-accent); transform: scale(1.06); }
.video-sound svg { width: 18px; height: 18px; fill: currentColor; }

@media (max-width: 600px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ============ DAY BLOCK (kept but unused now, leaving for future) ============ */
.itinerary { max-width: 820px; margin: 0 auto; }

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

.gallery-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  position: relative;
  aspect-ratio: 3 / 4;
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.gallery-grid a:hover img { transform: scale(1.06); }
.gallery-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.18) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.gallery-grid a:hover::after { opacity: 1; }
.gallery-grid a.tall,
.gallery-grid a.wide { aspect-ratio: 3 / 4; grid-row: auto; grid-column: auto; }

.gallery-teaser {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
}
.gallery-teaser a {
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.gallery-teaser img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.gallery-teaser a:hover img { transform: scale(1.05); }

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(20,20,18,.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 2px;
  box-shadow: 0 20px 80px rgba(0,0,0,.5);
}
.lightbox .close {
  position: absolute;
  top: 24px; right: 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 50%;
}

/* ============ TESTIMONIALS ============ */

.testimonials-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial {
  background: var(--color-surface);
  padding: 40px 32px;
  border: 1px solid var(--color-line);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--color-ink-soft);
  position: relative;
  text-align: center;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--color-accent);
  line-height: 1;
  background: var(--color-bg);
  padding: 0 12px;
}
.testimonial p { margin: 8px 0 24px; }
.testimonial .author {
  font-family: var(--font-body);
  font-style: normal;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-ink);
}
.testimonial .author small {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  color: var(--color-muted);
  font-weight: 400;
  letter-spacing: .12em;
  margin-top: 6px;
}

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

.cta-strip {
  background: var(--color-dark);
  color: var(--color-bg);
  text-align: center;
  padding: 90px 32px;
}
.cta-strip h2 {
  color: #fff;
  margin-bottom: 22px;
  font-weight: 400;
}
.cta-strip h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: var(--color-accent);
  margin: 22px auto 0;
}
.cta-strip p {
  color: rgba(250,246,238,.7);
  max-width: 50ch;
  margin: 0 auto 32px;
  font-weight: 300;
  line-height: 1.7;
}

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

.contact-cards {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.contact-card {
  background: var(--color-surface);
  padding: 44px 32px 36px;
  border: 1px solid var(--color-line);
  text-align: center;
}
.contact-card .icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--color-accent);
}
.contact-card h3 { font-size: 1.3rem; margin-bottom: 10px; font-weight: 500; }
.contact-card p { color: var(--color-muted); font-weight: 300; margin-bottom: 22px; }
.contact-card a.btn { width: 100%; justify-content: center; }

.faq-list { max-width: 760px; margin: 56px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--color-line);
  padding: 26px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 300;
  transition: transform .25s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-weight: 300;
  line-height: 1.75;
}

/* ============ SECTION DIVIDER (gallery) ============ */

.section-divider {
  margin-top: 80px;
  margin-bottom: 12px;
  padding-top: 48px;
  border-top: 1px solid var(--color-line);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  text-align: center;
}
.section-divider::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: var(--color-accent);
  margin: 22px auto 0;
}
.section-divider + .lead {
  text-align: center;
  color: var(--color-muted);
  font-weight: 300;
  margin: 0 auto 44px;
  max-width: 56ch;
  font-size: 1rem;
}

/* ============ WHATSAPP FLOAT ============ */

.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.35);
  z-index: 90;
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(37,211,102,.5);
  color: #fff;
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

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

.site-footer {
  background: var(--color-dark);
  color: rgba(250,246,238,.65);
  padding: 80px 0 36px;
  margin-top: 0;
  font-size: .92rem;
  font-weight: 300;
}
.site-footer a { color: rgba(250,246,238,.85); }
.site-footer a:hover { color: var(--color-accent); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-grid .brand { color: #fff; margin-bottom: 18px; display: block; }
.footer-grid p, .footer-grid li { line-height: 1.8; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }

.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s;
}
.socials a:hover { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.socials svg { width: 16px; height: 16px; fill: currentColor; }

.copyright {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  font-size: .76rem;
  letter-spacing: .12em;
  text-align: center;
  color: rgba(250,246,238,.4);
}

/* ============ RESPONSIVE ============ */

@media (max-width: 880px) {
  .nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s, opacity .3s;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 16px 32px; }
  .nav a::after { display: none; }
  .nav-toggle { display: block; }
  .lang-switch { margin-left: auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .gallery-teaser { grid-template-columns: repeat(2, 1fr); }
  section { padding: 70px 0; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .tour-card .body { padding: 28px 22px; }
  .lang-switch button { padding: 6px 8px; font-size: .62rem; }
  .site-header .container { gap: 10px; padding: 0 16px; }
  .brand { font-size: 1rem; letter-spacing: .08em; }
}

/* ============ TOUR DETAIL PAGE ============ */

/* Tour hero — full-width photo with overlay text at bottom */
.tour-hero {
  position: relative;
  min-height: 70vh;
  min-height: 70svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--color-dark);
  overflow: hidden;
}
.tour-hero img.tour-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.tour-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.65) 100%);
  z-index: 1;
}
.tour-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}
.tour-hero .eyebrow { color: rgba(255,255,255,.85); margin-bottom: 18px; }
.tour-hero h1 {
  color: #fff;
  max-width: 22ch;
  margin-bottom: .35em;
  font-weight: 400;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.tour-hero h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: var(--color-accent);
  margin: 28px 0 28px;
}
.tour-hero .subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  margin: 0 0 24px;
}

/* Tour intro */
.tour-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.tour-intro p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--color-ink-soft);
  margin-bottom: 1em;
}

/* Tour info / included / good-to-know layout */
.tour-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .tour-meta-grid { grid-template-columns: 1fr; gap: 40px; }
}

.tour-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  padding: 32px 28px;
}
.tour-info-card h3 {
  font-size: .8rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 22px;
}
.tour-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tour-info-card li {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: .94rem;
  color: var(--color-muted);
}
.tour-info-card li:last-child { border-bottom: 0; }
.tour-info-card li b {
  color: var(--color-ink);
  font-weight: 500;
  text-align: right;
}

.tour-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}
.tour-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-ink-soft);
  font-size: .96rem;
}
.tour-list li:last-child { border-bottom: 0; }
.tour-list li::before {
  position: absolute;
  left: 0; top: 12px;
  color: var(--color-accent);
  font-weight: 500;
}
.tour-list.incl li::before { content: "✓"; }
.tour-list.excl li::before { content: "×"; color: #b04848; }

.tour-section-label {
  font-size: .8rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 22px;
}

/* Good to know */
.good-to-know {
  background: var(--color-bg-2);
  padding: 56px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.good-to-know .container > div {
  max-width: 820px;
  margin: 0 auto;
}
.good-to-know h2 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 32px;
}
.good-to-know h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: var(--color-accent);
  margin: 22px auto 0;
}
.good-to-know ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.good-to-know li {
  padding: 16px 0 16px 32px;
  position: relative;
  color: var(--color-ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}
.good-to-know li::before {
  content: "◆";
  position: absolute;
  left: 0; top: 18px;
  color: var(--color-accent);
  font-size: .7rem;
}

/* Day-by-day program */
.program-intro {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 80px;
}
.program-intro h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 400;
}
.program-intro h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: var(--color-accent);
  margin: 24px auto 0;
}

.day-block {
  max-width: 1080px;
  margin: 0 auto 110px;
  padding-top: 64px;
  border-top: 1px solid var(--color-line);
}
.day-block:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.day-block:last-of-type { margin-bottom: 0; }

.day-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: baseline;
  margin-bottom: 36px;
}
.day-label {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--color-accent);
  white-space: nowrap;
  padding-top: 12px;
}
.day-title h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.15;
}
.day-route {
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 300;
  letter-spacing: .03em;
  color: var(--color-muted);
}
@media (max-width: 600px) {
  .day-header { grid-template-columns: 1fr; gap: 8px; }
  .day-label { padding-top: 0; }
}

/* 3 photos per day: 1 big left, 2 small right (asymmetric magazine grid) */
.day-photos {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  margin-bottom: 40px;
  aspect-ratio: 3 / 2;
  max-height: 620px;
}
.day-photos a:nth-child(1),
.day-photos > :nth-child(1) {
  grid-row: 1 / 3;
  grid-column: 1;
}
.day-photos > * {
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.day-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}
.day-photos a:hover img { transform: scale(1.04); }
@media (max-width: 500px) {
  .day-photos { gap: 8px; }
}

/* Day text — single column, comfortable reading width */
.day-text {
  max-width: 720px;
  margin: 0 auto;
}
.day-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-ink-soft);
  margin-bottom: 1.2em;
  font-weight: 300;
}
.day-text p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  font-weight: 500;
  float: left;
  line-height: .9;
  margin: .05em .12em 0 0;
  color: var(--color-accent);
}

/* ============ TOUR DATES SECTION (group tours) ============ */

.tour-dates-section {
  background: var(--color-bg-2);
  padding: 96px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.tour-dates-section .program-intro {
  margin-bottom: 56px;
}
.dates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1020px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .dates-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 420px;
  }
}

.date-month {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-top: 2px solid var(--color-accent);
  padding: 32px 28px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.date-month:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.date-month h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-ink);
}
.date-month .desc {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 22px;
  display: block;
}
.date-month ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.date-month li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: .95rem;
  color: var(--color-ink-soft);
  font-weight: 400;
}
.date-month li:last-child { border-bottom: 0; }

/* ============ PROGRAM DISCLAIMER ============ */
.program-disclaimer {
  margin: 56px auto 0;
  max-width: 60ch;
  text-align: center;
  font-style: italic;
  color: var(--color-muted);
  font-size: .95rem;
  line-height: 1.6;
}

/* ============ UTILITIES ============ */
.center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
[hidden] { display: none !important; }
