/* ============================================
   Эже-Туру — cinematic one-page
   Dark forest · copper · cream · river teal
   ============================================ */

:root {
  --void: #070908;
  --ink: #0e1210;
  --forest: #1a2420;
  --moss: #2f4038;
  --sage: #6b7f72;
  --mist: #a8b5ad;
  --cream: #f0e8db;
  --paper: #f7f2e9;
  --copper: #c9a36a;
  --copper-hot: #e0b87a;
  --ember: #b87a4a;
  --river: #3d6b6e;
  --river-glow: #5a9a9e;

  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-ui: "Syne", system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.45, 0, 0.55, 1);

  --nav-h: 4.5rem;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-color: var(--copper) var(--void);
  scrollbar-width: thin;
}

body {
  font-family: var(--font-ui);
  background: var(--void);
  color: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

body.is-loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

button,
input {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
}

button {
  cursor: pointer;
}

/* Hide custom cursor on touch */
@media (hover: none) {
  body {
    cursor: auto;
  }
  .cursor {
    display: none !important;
  }
}

/* ---------- Grain ---------- */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  opacity: 0.07;
  mix-blend-mode: overlay;
  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-size: 180px;
}

/* ---------- Cursor ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor__ring {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(240, 232, 219, 0.7);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
    border-color 0.3s, background 0.3s;
}

.cursor__dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--copper);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor.is-hover .cursor__ring {
  width: 64px;
  height: 64px;
  border-color: var(--copper);
}

.cursor.is-click .cursor__ring {
  width: 28px;
  height: 28px;
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--void);
  display: grid;
  place-items: center;
  transition: opacity 0.9s var(--ease-out), visibility 0.9s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
  width: min(320px, 80vw);
}

.preloader__mountains {
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

.preloader__path {
  fill: none;
  stroke: var(--copper);
  stroke-width: 1.2;
  stroke-linejoin: round;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawPath 1.6s var(--ease-out) forwards;
}

.preloader__path--delay {
  stroke: var(--mist);
  stroke-width: 0.8;
  opacity: 0.5;
  animation-delay: 0.25s;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

.preloader__label {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s var(--ease-out) forwards;
}

.preloader__bar {
  height: 1px;
  background: rgba(240, 232, 219, 0.12);
  overflow: hidden;
}

.preloader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--copper), var(--river-glow));
  animation: loadBar 1.8s 0.3s var(--ease-out) forwards;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

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

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: var(--nav-h);
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  mix-blend-mode: difference;
  transition: background 0.4s, mix-blend-mode 0.3s;
}

.nav.is-solid {
  mix-blend-mode: normal;
  background: rgba(7, 9, 8, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(240, 232, 219, 0.06);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.nav__logo span {
  color: var(--copper);
  margin: 0 0.15em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav__menu a {
  opacity: 0.75;
  transition: opacity 0.25s, color 0.25s;
}

.nav__menu a:hover {
  opacity: 1;
  color: var(--copper-hot);
}

.nav__cta {
  opacity: 1 !important;
  padding: 0.65rem 1.1rem;
  border: 1px solid rgba(240, 232, 219, 0.35);
  border-radius: 999px;
  transition: background 0.3s, border-color 0.3s, color 0.3s !important;
}

.nav__cta:hover {
  background: var(--cream);
  color: var(--void) !important;
  border-color: var(--cream);
}

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 2;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  margin: 6px auto;
  transition: transform 0.35s var(--ease-out);
}

.nav__toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ---------- Chapter label ---------- */
.chapter {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.chapter--light {
  color: var(--copper-hot);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.35s var(--ease-out), background 0.3s, color 0.3s,
    border-color 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--ghost {
  border: 1px solid rgba(240, 232, 219, 0.4);
  color: var(--cream);
}

.btn--ghost:hover {
  background: var(--cream);
  color: var(--void);
  border-color: var(--cream);
}

.btn--ghost-light {
  border: 1px solid rgba(240, 232, 219, 0.25);
  color: var(--cream);
}

.btn--ghost-light:hover {
  border-color: var(--copper);
  color: var(--copper-hot);
}

.btn--solid {
  background: var(--copper);
  color: var(--void);
  box-shadow: 0 0 0 0 rgba(201, 163, 106, 0.4);
}

.btn--solid:hover {
  background: var(--copper-hot);
  box-shadow: 0 12px 40px rgba(201, 163, 106, 0.25);
}

.btn--wide {
  width: 100%;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 2rem) var(--pad) 3rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--void) url("../images/real/panorama.jpg") center / cover no-repeat;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) brightness(0.72);
  pointer-events: none;
}

.hero__layer {
  position: absolute;
  inset: -10% 0 0;
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
  pointer-events: none;
}

.hero__layer--mid {
  background-image: radial-gradient(
    ellipse 80% 50% at 50% 100%,
    rgba(61, 107, 110, 0.2),
    transparent 70%
  );
  opacity: 0.85;
}

.hero__layer--near {
  background: linear-gradient(
    180deg,
    rgba(7, 9, 8, 0.35) 0%,
    transparent 28%,
    transparent 45%,
    rgba(7, 9, 8, 0.75) 78%,
    var(--void) 100%
  );
  inset: 0;
}

.hero__mist {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(
    0deg,
    var(--void),
    transparent
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 1.5rem;
}

.hero__eyebrow .line {
  width: 40px;
  height: 1px;
  background: var(--copper);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title-line--italic {
  font-style: italic;
  font-weight: 400;
  color: var(--copper);
  padding-left: clamp(0rem, 8vw, 5rem);
}

.hero__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  max-width: 900px;
}

.hero__lead {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.45;
  color: var(--mist);
  max-width: 34ch;
  font-weight: 400;
}

.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--copper), transparent);
  writing-mode: horizontal-tb;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.6);
    opacity: 0.5;
  }
}

.hero__coords {
  position: absolute;
  left: var(--pad);
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(168, 181, 173, 0.55);
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

/* ---------- Snapshot (second screen) ---------- */
.snapshot {
  position: relative;
  padding: clamp(4.5rem, 10vw, 7.5rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(ellipse 70% 55% at 100% 0%, rgba(61, 107, 110, 0.12), transparent 55%),
    var(--ink);
  border-top: 1px solid rgba(240, 232, 219, 0.05);
}

.snapshot__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.snapshot__header {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.snapshot__header-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
}

.snapshot__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.snapshot__lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.5;
  color: var(--mist);
  max-width: 36ch;
  padding-bottom: 0.35rem;
}

.snapshot__layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.85fr;
  grid-template-rows: minmax(220px, 28vw) minmax(160px, 18vw);
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.snapshot__photo {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(240, 232, 219, 0.07);
  margin: 0;
  background: var(--forest);
}

.snapshot__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out), filter 0.5s;
  filter: saturate(0.92) brightness(0.92);
}

.snapshot__photo:hover img {
  transform: scale(1.05);
  filter: saturate(1) brightness(1);
}

.snapshot__photo--main {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.snapshot__facts {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  padding: clamp(1.1rem, 2vw, 1.6rem);
  background: rgba(7, 9, 8, 0.55);
  border: 1px solid rgba(240, 232, 219, 0.08);
  border-radius: 3px;
}

.snapshot__fact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(240, 232, 219, 0.08);
}

.snapshot__fact:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.snapshot__fact-n {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--copper);
  line-height: 1.1;
  padding-top: 0.15rem;
}

.snapshot__fact h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--cream);
}

.snapshot__fact p {
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--mist);
}

.snapshot__photo--side {
  grid-column: 3;
  grid-row: 1;
}

.snapshot__photo--small {
  grid-column: 3;
  grid-row: 2;
}

.snapshot__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid rgba(240, 232, 219, 0.08);
}

.snapshot__stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 0.25rem;
}

.snapshot__stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 500;
  color: var(--copper-hot);
  line-height: 1;
}

.snapshot__stat span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 500;
}

@media (max-width: 960px) {
  .snapshot__header-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .snapshot__layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .snapshot__photo--main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
    min-height: 240px;
  }

  .snapshot__facts {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .snapshot__photo--side {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .snapshot__photo--small {
    grid-column: 2;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

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

@media (max-width: 560px) {
  .snapshot__photo--side,
  .snapshot__photo--small {
    grid-column: 1 / -1;
  }

  .snapshot__stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
  }

  .snapshot__stat {
    padding: 0.85rem 0;
  }
}

/* ---------- Cabins ---------- */
.cabins {
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, var(--void) 0%, var(--forest) 100%);
}

.cabins__head {
  padding: 0 var(--pad);
  max-width: 640px;
  margin-bottom: 3rem;
}

.cabins__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.cabins__head h2 em {
  font-style: italic;
  color: var(--copper);
  font-weight: 400;
}

.cabins__head p {
  color: var(--mist);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.cabins__rail {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem var(--pad) 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--copper) transparent;
  -webkit-overflow-scrolling: touch;
}

.cabins__rail::-webkit-scrollbar {
  height: 4px;
}

.cabins__rail::-webkit-scrollbar-thumb {
  background: var(--copper);
  border-radius: 4px;
}

.cabin {
  flex: 0 0 min(78vw, 380px);
  scroll-snap-align: start;
  background: rgba(7, 9, 8, 0.5);
  border: 1px solid rgba(240, 232, 219, 0.08);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s, transform 0.5s var(--ease-out);
}

.cabin:hover {
  border-color: rgba(201, 163, 106, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.cabin__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.cabin__media img {
  width: 100%;
  height: 100%;
  transition: transform 1s var(--ease-out);
  filter: saturate(0.88);
}

.cabin:hover .cabin__media img {
  transform: scale(1.06);
}

.cabin__num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--paper);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  line-height: 1;
}

.cabin__body {
  padding: 1.5rem;
  flex: 1;
}

.cabin__body h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.cabin__body ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.45rem;
  font-size: 0.88rem;
  color: var(--mist);
}

.cabin__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper);
}

.cabin--price {
  flex-basis: min(78vw, 340px);
  background: linear-gradient(
    160deg,
    rgba(201, 163, 106, 0.12),
    rgba(61, 107, 110, 0.1)
  );
  border-color: rgba(201, 163, 106, 0.25);
  justify-content: center;
}

.cabin__price-card {
  padding: 2rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cabin__price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  margin: 0.5rem 0 0.35rem;
}

.cabin__price em {
  font-style: italic;
  font-weight: 500;
  color: var(--copper-hot);
}

.cabin__price-note {
  color: var(--mist);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.cabin__price-list {
  margin-bottom: 2rem;
}

.cabin__price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(240, 232, 219, 0.08);
  font-size: 0.9rem;
}

.cabin__price-list strong {
  color: var(--cream);
  font-weight: 600;
}

.cabins__hint {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.5rem;
  opacity: 0.7;
}

/* ---------- Sights / attractions ---------- */
.sights {
  padding: clamp(4rem, 10vw, 7.5rem) 0;
  background:
    radial-gradient(ellipse 60% 40% at 0% 20%, rgba(61, 107, 110, 0.1), transparent 50%),
    var(--void);
  border-top: 1px solid rgba(240, 232, 219, 0.05);
}

.sights__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.sights__head {
  max-width: 640px;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

.sights__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.sights__head p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--mist);
  line-height: 1.5;
  max-width: 42ch;
}

.sights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.sight {
  display: flex;
  flex-direction: column;
  background: rgba(7, 9, 8, 0.45);
  border: 1px solid rgba(240, 232, 219, 0.08);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.45s var(--ease-out);
}

.sight:hover {
  border-color: rgba(201, 163, 106, 0.35);
  transform: translateY(-4px);
}

.sight--featured {
  grid-column: span 1;
  border-color: rgba(201, 163, 106, 0.22);
  background: linear-gradient(
    165deg,
    rgba(201, 163, 106, 0.1),
    rgba(7, 9, 8, 0.5)
  );
}

.sight__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.sight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter 0.5s;
  filter: saturate(0.92) brightness(0.9);
}

.sight:hover .sight__media img {
  transform: scale(1.06);
  filter: saturate(1.02) brightness(1);
}

.sight__tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.35rem 0.7rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(7, 9, 8, 0.72);
  border: 1px solid rgba(201, 163, 106, 0.35);
  color: var(--copper-hot);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.sight__body {
  padding: 1.2rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.sight__n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--copper);
  line-height: 1;
}

.sight__body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0.15rem 0 0.4rem;
}

.sight__body p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--mist);
}

.sights__note {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240, 232, 219, 0.08);
  font-size: 0.88rem;
  color: var(--sage);
  max-width: 58ch;
  line-height: 1.5;
}

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

@media (max-width: 600px) {
  .sights__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Place ---------- */
.place {
  padding: clamp(4rem, 10vw, 8rem) var(--pad);
  background: var(--ink);
}

.place__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.place__text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.place__text h2 em {
  font-style: italic;
  color: var(--copper);
  font-weight: 400;
}

.place__text > p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--mist);
  max-width: 40ch;
  margin-bottom: 2.5rem;
}

.place__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.place__facts div {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(240, 232, 219, 0.1);
}

.place__facts dt {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.35rem;
}

.place__facts dd {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--cream);
}

.place__visual {
  position: relative;
}

.place__stack {
  position: relative;
  aspect-ratio: 1;
  max-width: 520px;
  margin-left: auto;
}

.place__shot {
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.place__shot img {
  width: 100%;
  height: 100%;
  filter: saturate(0.9);
}

.place__shot--a {
  inset: 0 12% 18% 0;
  z-index: 1;
}

.place__shot--b {
  width: 48%;
  aspect-ratio: 3/4;
  right: 0;
  bottom: 0;
  z-index: 2;
  border: 3px solid var(--void);
}

.place__badge {
  position: absolute;
  left: -0.5rem;
  bottom: 12%;
  z-index: 3;
  background: var(--copper);
  color: var(--void);
  padding: 1rem 1.25rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: 0 16px 40px rgba(201, 163, 106, 0.3);
}

.place__badge span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.place__badge small {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  opacity: 0.75;
}

/* ---------- Hosts ---------- */
.hosts {
  padding: clamp(5rem, 12vw, 9rem) var(--pad);
  background: radial-gradient(
      ellipse 70% 80% at 20% 50%,
      rgba(61, 107, 110, 0.12),
      transparent 60%
    ),
    var(--void);
  text-align: center;
}

.hosts__inner {
  max-width: 780px;
  margin: 0 auto;
}

.hosts__quote {
  margin: 0 0 2rem;
}

.hosts__quote p {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.hosts__quote footer {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--sage);
}

.hosts__quote strong {
  color: var(--copper);
  font-weight: 600;
}

.hosts__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--mist);
  max-width: 42ch;
  margin: 0 auto;
  line-height: 1.55;
}

/* ---------- Voices ---------- */
.voices {
  padding: clamp(4rem, 10vw, 7rem) var(--pad);
  background: var(--forest);
}

.voices__head {
  max-width: 1280px;
  margin: 0 auto 3rem;
}

.voices__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
}

.voices__head h2 em {
  font-style: italic;
  color: var(--copper);
  font-weight: 400;
}

.voices__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

.voice {
  grid-column: span 4;
  padding: 1.75rem;
  background: rgba(7, 9, 8, 0.45);
  border: 1px solid rgba(240, 232, 219, 0.07);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  transition: border-color 0.35s, transform 0.45s var(--ease-out);
}

.voice:hover {
  border-color: rgba(201, 163, 106, 0.3);
  transform: translateY(-3px);
}

.voice--lg {
  grid-column: span 8;
  background: linear-gradient(
    135deg,
    rgba(201, 163, 106, 0.1),
    rgba(7, 9, 8, 0.5)
  );
}

.voice--wide {
  grid-column: span 8;
}

.voice p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.45;
  color: var(--paper);
}

.voice--lg p {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.voice cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}

/* ---------- Gallery mosaic ---------- */
.gallery {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0 0;
  background: var(--void);
  border-top: 1px solid rgba(240, 232, 219, 0.05);
}

.gallery__head {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(1.5rem, 3vw, 2.25rem);
}

.gallery__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.65rem;
}

.gallery__head p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--mist);
  max-width: 40ch;
}

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(150px, 18vw);
  gap: 0.35rem;
  padding: 0.35rem;
  background: var(--void);
}

.mosaic__item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--forest);
}

.mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter 0.6s;
  filter: saturate(0.92) brightness(0.92);
}

.mosaic__item:hover img {
  transform: scale(1.07);
  filter: saturate(1.05) brightness(1);
}

.mosaic__item--tall {
  grid-row: span 2;
}

.mosaic__item--wide {
  grid-column: span 2;
}

.mosaic__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
  font-weight: 600;
}

/* ---------- Book ---------- */
.book {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) var(--pad);
  overflow: hidden;
  background: var(--ink);
}

.book__glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(201, 163, 106, 0.14) 0%,
    rgba(61, 107, 110, 0.08) 40%,
    transparent 70%
  );
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.book__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.book__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.book__title em {
  font-style: italic;
  color: var(--copper);
  font-weight: 400;
}

.book__lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--mist);
  margin-bottom: 2.5rem;
}

.book__actions {
  margin-bottom: 3rem;
}

.book__phone {
  display: block;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(201, 163, 106, 0.3);
  border-radius: 4px;
  transition: background 0.35s, border-color 0.35s, transform 0.4s var(--ease-out);
}

.book__phone:hover {
  background: rgba(201, 163, 106, 0.08);
  border-color: var(--copper);
  transform: scale(1.01);
}

.book__phone-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.book__phone-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.book__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.book__form {
  position: relative;
  text-align: left;
  padding: 2rem;
  background: rgba(7, 9, 8, 0.55);
  border: 1px solid rgba(240, 232, 219, 0.08);
  border-radius: 4px;
  margin-bottom: 2rem;
}

.book__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.book__field--full {
  grid-column: 1 / -1;
}

.book__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.book__fields label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.book__fields label span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

.book__fields input {
  padding: 0.9rem 1rem;
  background: rgba(240, 232, 219, 0.04);
  border: 1px solid rgba(240, 232, 219, 0.12);
  border-radius: 2px;
  color: var(--cream);
  transition: border-color 0.3s, background 0.3s;
}

.book__fields input:focus {
  outline: none;
  border-color: var(--copper);
  background: rgba(201, 163, 106, 0.06);
}

.book__fields input::placeholder {
  color: rgba(168, 181, 173, 0.45);
}

.book__fields input[type="date"] {
  color-scheme: dark;
}

.book__form-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--sage);
  text-align: center;
}

.book__form-status {
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 3px;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.4;
}

.book__form-status.is-pending {
  background: rgba(168, 181, 173, 0.12);
  color: var(--mist);
  border: 1px solid rgba(168, 181, 173, 0.2);
}

.book__form-status.is-ok {
  background: rgba(90, 154, 158, 0.15);
  color: var(--cream);
  border: 1px solid rgba(90, 154, 158, 0.35);
}

.book__form-status.is-error {
  background: rgba(184, 90, 70, 0.15);
  color: #f0c4b8;
  border: 1px solid rgba(184, 90, 70, 0.35);
}

.book__form button:disabled {
  opacity: 0.65;
  pointer-events: none;
}

.book__legal {
  font-size: 0.75rem;
  color: var(--sage);
}

.book__legal a {
  color: var(--mist);
  border-bottom: 1px solid rgba(168, 181, 173, 0.3);
  transition: color 0.25s;
}

.book__legal a:hover {
  color: var(--copper);
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(201, 163, 106, 0.35);
  color: var(--paper);
}

/* ---------- Footer ---------- */
.footer {
  padding: 2.5rem var(--pad);
  border-top: 1px solid rgba(240, 232, 219, 0.06);
  background: var(--void);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__top p {
  color: var(--sage);
  font-size: 0.9rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240, 232, 219, 0.06);
  font-size: 0.8rem;
  color: var(--sage);
}

.footer__bottom a:hover {
  color: var(--copper);
}

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

.reveal.is-in,
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

.hero__title-line {
  opacity: 0;
  transform: translateY(40%);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.hero__title-line.is-in {
  opacity: 1;
  transform: translateY(0);
}

.hero__title-line:nth-child(1) {
  transition-delay: 0.05s;
}
.hero__title-line:nth-child(2) {
  transition-delay: 0.18s;
}
.hero__title-line:nth-child(3) {
  transition-delay: 0.32s;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .place__grid {
    grid-template-columns: 1fr;
  }

  .place__stack {
    margin: 0 auto;
    max-width: 420px;
  }

  .voice,
  .voice--lg,
  .voice--wide {
    grid-column: span 6;
  }

  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(130px, 26vw);
  }

  .mosaic__item--tall {
    grid-row: span 2;
  }

  .mosaic__item--wide {
    grid-column: span 2;
  }

  .hero__coords {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    cursor: auto;
  }

  .nav {
    mix-blend-mode: normal;
    background: rgba(7, 9, 8, 0.5);
    backdrop-filter: blur(10px);
  }

  .nav__toggle {
    display: block;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    background: rgba(7, 9, 8, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }

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

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

  .hero__scroll {
    display: none;
  }

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

  .voice,
  .voice--lg,
  .voice--wide {
    grid-column: span 12;
  }

  .cabin {
    flex-basis: min(88vw, 320px);
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .reveal,
  [data-reveal],
  .hero__title-line {
    opacity: 1;
    transform: none;
  }

  .hero__video {
    display: none;
  }
}
