/* ============================================
   Путешествие по Венеции — Premium Style
   ============================================ */

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

:root {
  --bg: #0d0b0e;
  --bg-alt: #111014;
  --bg-card: #18161c;
  --text: #d4cfc8;
  --text-muted: #9a938b;
  --accent: #c9a96e;
  --accent-dim: rgba(201, 169, 110, 0.35);
  --accent-glow: rgba(201, 169, 110, 0.12);
  --shadow-text: rgba(212, 207, 200, 0.5);
  --white: #f0ece4;
  --overlay: rgba(10, 8, 12, 0.55);
  --card-border: rgba(201, 169, 110, 0.08);
  --card-border-hover: rgba(201, 169, 110, 0.22);
  --font-h: 'Alice', serif;
  --font-b: 'Roboto Serif', serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-b);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; }

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.4rem 3rem;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
.header--scrolled {
  background: rgba(13, 11, 14, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.8rem 3rem;
  border-bottom: 1px solid var(--card-border);
}
.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo { display: flex; flex-direction: column; }
.header__logo-main {
  font-family: var(--font-h);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.2;
}
.header__logo-shadow {
  font-family: var(--font-h);
  font-size: 0.68rem;
  color: var(--shadow-text);
  letter-spacing: 0.12em;
  transform: translate(2px, 1px);
  line-height: 1.2;
  font-style: italic;
}
.header__nav { display: flex; gap: 2.2rem; align-items: center; }
.header__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.3rem 0;
}
.header__link-main {
  font-family: var(--font-b);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.4s var(--ease);
}
.header__link-shadow {
  font-family: var(--font-b);
  font-size: 0.52rem;
  font-weight: 300;
  font-style: italic;
  color: var(--shadow-text);
  transform: translate(1px, 0.5px);
  transition: color 0.4s var(--ease);
}
.header__link:hover .header__link-main { color: var(--accent); }
.header__link:hover .header__link-shadow { color: rgba(212, 207, 200, 0.65); }

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}
.header__burger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
  transform-origin: center;
}
.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.65) contrast(1.08);
  transform: scale(1.05);
  transition: transform 14s ease-out;
}
.hero:hover .hero__bg-img { transform: scale(1.0); }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255, 220, 160, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(10, 8, 12, 0.3) 0%, rgba(10, 8, 12, 0.05) 45%, rgba(10, 8, 12, 0.55) 100%);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(10, 8, 12, 0.65) 100%);
  pointer-events: none;
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 2rem;
  max-width: 820px;
  animation: heroIn 2s var(--ease-out) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__title { margin-bottom: 1.3rem; }
.hero__title-main {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(2.3rem, 5.2vw, 4rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.12;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.hero__title-shadow {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(1.1rem, 2.4vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--shadow-text);
  letter-spacing: 0.08em;
  transform: translate(3px, 2px);
  margin-top: 0.35rem;
  line-height: 1.2;
}

.hero__subtitle { margin-bottom: 2.2rem; }
.hero__subtitle-main {
  display: block;
  font-family: var(--font-b);
  font-size: clamp(1.35rem, 2.7vw, 1.76rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.hero__subtitle-shadow {
  display: block;
  font-family: var(--font-b);
  font-size: clamp(0.62rem, 1.1vw, 0.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--shadow-text);
  letter-spacing: 0.08em;
  transform: translate(2px, 1px);
  margin-top: 0.2rem;
}

.hero__desc { margin-bottom: 2.8rem; }
.hero__desc-line { display: block; margin-bottom: 0.5rem; }
.hero__desc-main {
  display: block;
  font-family: var(--font-b);
  font-size: clamp(0.92rem, 1.5vw, 1.08rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
  letter-spacing: 0.02em;
}
.hero__desc-shadow {
  display: block;
  font-family: var(--font-b);
  font-size: clamp(0.56rem, 0.88vw, 0.66rem);
  font-weight: 300;
  font-style: italic;
  color: var(--shadow-text);
  transform: translate(2px, 1px);
  margin-top: 0.15rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* Hero CTA */
.hero__cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1.05rem 3rem;
  border: 1px solid var(--accent-dim);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.45s var(--ease);
}
.hero__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.1) 0%, rgba(201,169,110,0.02) 100%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.hero__cta:hover::before { opacity: 1; }
.hero__cta:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(201,169,110,0.15);
}
.hero__cta-main {
  font-family: var(--font-b);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero__cta-shadow {
  font-family: var(--font-b);
  font-size: 0.52rem;
  font-weight: 300;
  font-style: italic;
  color: var(--shadow-text);
  letter-spacing: 0.1em;
  transform: translate(1px, 0.5px);
  margin-top: 0.15rem;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--accent-dim) 0%, transparent 100%);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Sections ---------- */
.section { padding: 7.5rem 3rem; position: relative; }
.section--about { background: var(--bg); }
.section--places { background: var(--bg-alt); }
.section--gallery { background: var(--bg); padding-bottom: 4rem; }
.section--route { background: var(--bg-alt); }
.section--cta { background: var(--bg); padding: 0; overflow: hidden; }
.section__inner { max-width: 1140px; margin: 0 auto; }
.section__header { text-align: center; margin-bottom: 4rem; }
.section__title { margin-bottom: 1rem; }
.section__title-main {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.section__title-shadow {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(0.82rem, 1.5vw, 1.05rem);
  font-weight: 400;
  font-style: italic;
  color: var(--shadow-text);
  letter-spacing: 0.1em;
  transform: translate(3px, 2px);
  margin-top: 0.3rem;
}
.section__divider {
  width: 55px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-dim), transparent);
  margin: 0 auto;
}

/* ---------- ABOUT ---------- */
.about__text { text-align: center; max-width: 820px; margin: 0 auto 4.5rem; }
.about__text-main {
  display: block;
  font-family: var(--font-b);
  font-size: 1.08rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.85;
  letter-spacing: 0.015em;
}
.about__text-shadow {
  display: block;
  font-family: var(--font-b);
  font-size: 0.62rem;
  font-weight: 300;
  font-style: italic;
  color: var(--shadow-text);
  transform: translate(2px, 1px);
  margin-top: 0.25rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

/* About Cards */
.about__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.about__card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.about__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.about__card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.3),
    0 0 0 1px rgba(201,169,110,0.08),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.about__card:hover::before { opacity: 1; }

.about__card:nth-child(2):hover {
  transform: translateY(-6px) rotate(0.4deg);
}

.about__card-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 1.5rem;
  color: var(--accent);
  opacity: 0.6;
}
.about__card-title { margin-bottom: 0.8rem; }
.about__card-title-main {
  display: block;
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.03em;
}
.about__card-title-shadow {
  display: block;
  font-family: var(--font-h);
  font-size: 0.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--shadow-text);
  letter-spacing: 0.08em;
  transform: translate(2px, 1px);
  margin-top: 0.2rem;
}
.about__card-desc-main {
  display: block;
  font-family: var(--font-b);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}
.about__card-desc-shadow {
  display: block;
  font-family: var(--font-b);
  font-size: 0.55rem;
  font-weight: 300;
  font-style: italic;
  color: var(--shadow-text);
  transform: translate(2px, 1px);
  margin-top: 0.15rem;
  line-height: 1.5;
}

/* ---------- PLACES ---------- */
.places__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  max-width: 1000px;
  margin: 0 auto;
}
.places__card {
  background: var(--bg-card);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.55s var(--ease);
  display: flex;
  flex-direction: column;
}
.places__card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-6px) rotate(-0.3deg);
  box-shadow:
    0 20px 56px rgba(0,0,0,0.35),
    0 0 0 1px rgba(201,169,110,0.06),
    inset 0 1px 0 rgba(255,255,255,0.03);
}
.places__card:nth-child(2):hover { transform: translateY(-6px) rotate(0.3deg); }
.places__card:nth-child(3):hover { transform: translateY(-6px) rotate(0.25deg); }
.places__card:nth-child(4):hover { transform: translateY(-6px) rotate(-0.25deg); }

.places__card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.places__card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(24,22,28,0.9) 100%);
}
.places__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65) brightness(0.75);
  transition: all 0.7s var(--ease);
}
.places__card:hover .places__card-img img {
  transform: scale(1.06);
  filter: saturate(0.8) brightness(0.85);
}

.places__card-content { padding: 1.8rem 1.8rem 2rem; flex: 1; }
.places__card-title { margin-bottom: 0.7rem; }
.places__card-title-main {
  display: block;
  font-family: var(--font-h);
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.places__card-title-shadow {
  display: block;
  font-family: var(--font-h);
  font-size: 0.62rem;
  font-weight: 400;
  font-style: italic;
  color: var(--shadow-text);
  letter-spacing: 0.08em;
  transform: translate(2px, 1px);
  margin-top: 0.2rem;
}
.places__card-desc-main {
  display: block;
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}
.places__card-desc-shadow {
  display: block;
  font-family: var(--font-b);
  font-size: 0.55rem;
  font-weight: 300;
  font-style: italic;
  color: var(--shadow-text);
  transform: translate(2px, 1px);
  margin-top: 0.15rem;
  line-height: 1.5;
}

/* ---------- GALLERY ---------- */
.gallery__intro {
  text-align: center;
  max-width: 700px;
  margin: -2rem auto 3rem;
}
.gallery__intro-main {
  display: block;
  font-family: var(--font-b);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
}
.gallery__intro-shadow {
  display: block;
  font-family: var(--font-b);
  font-size: 0.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--shadow-text);
  transform: translate(2px, 1px);
  margin-top: 0.2rem;
  line-height: 1.5;
}

.gallery__row {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  padding: 0 3.5rem;
}
.gallery__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 1rem 0;
  -webkit-overflow-scrolling: touch;
}
.gallery__track::-webkit-scrollbar { display: none; }

.gallery__item {
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.5s var(--ease);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.gallery__item--vert {
  width: 200px;
  height: 300px;
}
.gallery__item--vert img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.8);
  transition: all 0.6s var(--ease);
}
.gallery__item--vert:hover img {
  filter: saturate(0.8) brightness(0.9);
}

.gallery__item--horiz {
  width: 320px;
  height: 220px;
}
.gallery__item--horiz img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6) brightness(0.8);
  transition: all 0.6s var(--ease);
}
.gallery__item--horiz:hover img {
  filter: saturate(0.8) brightness(0.9);
}

/* Gallery Arrows */
.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--accent-dim);
  background: rgba(13,11,14,0.7);
  backdrop-filter: blur(8px);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
}
.gallery__arrow svg { width: 20px; height: 20px; }
.gallery__arrow:hover {
  border-color: var(--accent);
  background: rgba(201,169,110,0.12);
  transform: translateY(-50%) scale(1.08);
}
.gallery__arrow--left { left: 1rem; }
.gallery__arrow--right { right: 1rem; }

/* ---------- ROUTE ---------- */
.route__timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 3.5rem;
}
.route__line {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--accent-dim) 0%, rgba(201,169,110,0.06) 100%);
}
.route__step {
  position: relative;
  padding-bottom: 3.5rem;
}
.route__step:last-child { padding-bottom: 0; }
.route__step-marker {
  position: absolute;
  left: -3.5rem;
  top: 0.2rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--accent-dim);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.45s var(--ease);
}
.route__step:hover .route__step-marker {
  border-color: var(--accent);
  background: rgba(201,169,110,0.1);
  box-shadow: 0 0 20px rgba(201,169,110,0.15);
}
.route__step-num {
  font-family: var(--font-h);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0;
}
.route__step-title { margin-bottom: 0.5rem; }
.route__step-title-main {
  display: block;
  font-family: var(--font-h);
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.3;
}
.route__step-title-shadow {
  display: block;
  font-family: var(--font-h);
  font-size: 0.58rem;
  font-weight: 400;
  font-style: italic;
  color: var(--shadow-text);
  letter-spacing: 0.08em;
  transform: translate(2px, 1px);
  margin-top: 0.2rem;
}
.route__step-desc-main {
  display: block;
  font-family: var(--font-b);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}
.route__step-desc-shadow {
  display: block;
  font-family: var(--font-b);
  font-size: 0.55rem;
  font-weight: 300;
  font-style: italic;
  color: var(--shadow-text);
  transform: translate(2px, 1px);
  margin-top: 0.15rem;
  line-height: 1.5;
}

/* ---------- CTA ---------- */
.section--cta { padding: 0; }
.cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3A4B5F 0%, #6A8AB4 25%, #594C69 50%, #B59CA4 75%, #FBE2B5 100%);
  opacity: 0.12;
  z-index: 0;
}
.section--cta .section__inner {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem;
}

.cta__content { text-align: center; margin-bottom: 5rem; }
.cta__title { margin-bottom: 0.8rem; }
.cta__title-main {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.cta__title-shadow {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(0.82rem, 1.5vw, 1.05rem);
  font-weight: 400;
  font-style: italic;
  color: var(--shadow-text);
  letter-spacing: 0.1em;
  transform: translate(3px, 2px);
  margin-top: 0.3rem;
}
.cta__subtitle { margin-bottom: 1.2rem; }
.cta__subtitle-main {
  display: block;
  font-family: var(--font-b);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.cta__subtitle-shadow {
  display: block;
  font-family: var(--font-b);
  font-size: 0.62rem;
  font-weight: 300;
  font-style: italic;
  color: var(--shadow-text);
  transform: translate(2px, 1px);
  margin-top: 0.15rem;
}
.cta__text { margin-bottom: 2.5rem; }
.cta__text-main {
  display: block;
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.cta__text-shadow {
  display: block;
  font-family: var(--font-b);
  font-size: 0.58rem;
  font-weight: 300;
  font-style: italic;
  color: var(--shadow-text);
  transform: translate(2px, 1px);
  margin-top: 0.2rem;
  line-height: 1.5;
}

.cta__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1.1rem 3.2rem;
  border: 1px solid var(--accent-dim);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.45s var(--ease);
}
.cta__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.12) 0%, rgba(201,169,110,0.02) 100%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.cta__btn:hover::before { opacity: 1; }
.cta__btn:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 44px rgba(201,169,110,0.18);
}
.cta__btn-main {
  font-family: var(--font-b);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cta__btn-shadow {
  font-family: var(--font-b);
  font-size: 0.52rem;
  font-weight: 300;
  font-style: italic;
  color: var(--shadow-text);
  letter-spacing: 0.1em;
  transform: translate(1px, 0.5px);
  margin-top: 0.15rem;
}

/* ---------- Subscribe ---------- */
.subscribe {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
}
.subscribe__title { margin-bottom: 1.5rem; }
.subscribe__title-main {
  display: block;
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
}
.subscribe__title-shadow {
  display: block;
  font-family: var(--font-h);
  font-size: 0.58rem;
  font-weight: 400;
  font-style: italic;
  color: var(--shadow-text);
  letter-spacing: 0.08em;
  transform: translate(2px, 1px);
  margin-top: 0.2rem;
}
.subscribe__form {
  display: flex;
  gap: 0;
  border: 1px solid var(--card-border);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.35s var(--ease);
}
.subscribe__form:focus-within {
  border-color: var(--accent-dim);
}
.subscribe__input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-b);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.03em;
}
.subscribe__input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}
.subscribe__btn {
  padding: 0.9rem 1.8rem;
  background: rgba(201,169,110,0.1);
  border: none;
  border-left: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.35s var(--ease);
}
.subscribe__btn:hover { background: rgba(201,169,110,0.18); }
.subscribe__btn-main {
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.subscribe__btn-shadow {
  font-family: var(--font-b);
  font-size: 0.48rem;
  font-weight: 300;
  font-style: italic;
  color: var(--shadow-text);
  transform: translate(1px, 0.5px);
  margin-top: 0.1rem;
}

/* ---------- Footer ---------- */
.footer {
  padding: 2.8rem 3rem;
  border-top: 1px solid var(--card-border);
  text-align: center;
}
.footer__text-main {
  display: block;
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}
.footer__text-shadow {
  display: block;
  font-family: var(--font-b);
  font-size: 0.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--shadow-text);
  transform: translate(1px, 0.5px);
  margin-top: 0.15rem;
  letter-spacing: 0.06em;
}

/* ---------- Floating Button ---------- */
.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.9rem 1.6rem;
  background: rgba(13,11,14,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--accent-dim);
  border-radius: 3px;
  transition: all 0.4s var(--ease);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.fab.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fab:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201,169,110,0.18);
}
.fab__main {
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.fab__shadow {
  font-family: var(--font-b);
  font-size: 0.45rem;
  font-weight: 300;
  font-style: italic;
  color: var(--shadow-text);
  transform: translate(1px, 0.5px);
  margin-top: 0.08rem;
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .header { padding: 1rem 1.5rem; }
  .header--scrolled { padding: 0.6rem 1.5rem; }
  .header__burger { display: flex; }
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(13,11,14,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.4s var(--ease);
    border-left: 1px solid var(--card-border);
  }
  .header__nav.open { right: 0; }

  .section { padding: 5rem 1.5rem; }

  .about__cards { grid-template-columns: 1fr; gap: 1.2rem; }
  .places__grid { grid-template-columns: 1fr; }

  .gallery__row { padding: 0 2.5rem; }
  .gallery__item--vert { width: 160px; height: 240px; }
  .gallery__item--horiz { width: 260px; height: 180px; }

  .route__timeline { padding-left: 3rem; }
  .route__step-marker { left: -3rem; width: 26px; height: 26px; }

  .section--cta .section__inner { padding: 5rem 1.5rem; }
  .fab { bottom: 1.5rem; right: 1.5rem; }
}

@media (max-width: 600px) {
  .header { padding: 0.8rem 1rem; }
  .section { padding: 4rem 1rem; }
  .section__header { margin-bottom: 2.5rem; }
  .hero__content { padding: 1rem; }
  .hero__cta { padding: 0.85rem 2.2rem; }

  .gallery__row { padding: 0 2rem; }
  .gallery__arrow { width: 34px; height: 34px; }
  .gallery__arrow svg { width: 16px; height: 16px; }
  .gallery__item--vert { width: 140px; height: 210px; }
  .gallery__item--horiz { width: 220px; height: 155px; }

  .route__timeline { padding-left: 2.5rem; }
  .route__step-marker { left: -2.5rem; width: 24px; height: 24px; }

  .subscribe__form { flex-direction: column; }
  .subscribe__btn { border-left: none; border-top: 1px solid var(--card-border); }

  .section--cta .section__inner { padding: 4rem 1rem; }
  .fab { bottom: 1rem; right: 1rem; padding: 0.7rem 1.2rem; }
  .fab__main { font-size: 0.72rem; }
}
