/* ════════════════════════════════════════════════════════════
   MAVI — Fethiye authored tours · premium landing
   Warm Mediterranean system carried from the tour schedule
   ════════════════════════════════════════════════════════════ */

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

:root {
  --bg: #F7F3EE;
  --paper: #FDFAF6;
  --ink: #24305E;
  --ink-2: #3D4A7A;
  --terra: #B5614A;
  --gold: #C4943A;
  --ocean: #2D5F72;
  --sage: #6B8C74;
  --muted: #8089A8;
  --line: rgba(28, 23, 20, 0.12);
  --line-soft: rgba(36, 35, 35, 0.07);

  /* accent is tweakable; defaults to terracotta */
  --accent: #F76C6C;

  --serif: 'Tenor Sans', Georgia, serif;
  --accent-serif: 'Bodoni Moda', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;

  --maxw: 1240px;
  --readw: 680px;
  --pad: clamp(1.25rem, 5vw, 5rem);
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 4.5rem;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── Shared type ── */
.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
}

.eyebrow.muted {
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
}

h2.section-title {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 18ch;
}

h2.section-title em,
h1 em {
  font-style: italic;
  color: var(--accent);
}

.section.faq h2.section-title {
  color: #fff;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink-2);
  font-weight: 300;
  max-width: var(--readw);
}

.section {
  padding: clamp(4.5rem, 9vw, 8.5rem) var(--pad);
  position: relative;
  z-index: 2;
  background: #EAF1F8;
}

.section.faq {
  background: #24305E;
}

.inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.section-head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head .eyebrow {
  display: block;
  margin-bottom: 1.1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05em 1.9em;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .2s ease;
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}

.btn:active {
  transform: translateY(1px);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn--accent {
  background: var(--accent);
  border-color: var(--accent);
}

.btn--accent:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.btn--light {
  background: transparent;
  border-color: rgba(247, 243, 238, 0.5);
  color: var(--paper);
}

.btn--light:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .3s, gap .3s, color .3s;
}

.arrow-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  gap: 1em;
}

/* ════════ NAV ════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--pad);
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}

.nav[data-scrolled="true"] {
  background: rgba(247, 243, 238, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.nav-logo {
  font-family: var(--serif);
  height: 28px;
  letter-spacing: 0.32em;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  padding-left: 0.32em;

  svg {
    height: 100%;
  }
}

.nav[data-theme="light"] .nav-logo,
.nav[data-theme="light"] .nav-link {
  color: var(--paper);
}

.nav[data-theme="light"][data-scrolled="true"] .nav-logo,
.nav[data-theme="light"][data-scrolled="true"] .nav-link {
  color: var(--ink);

  svg {
    path {
      fill: #384686;

    }
  }
}

.nav-mid {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  transition: color .3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width .3s;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switch {
  display: flex;
  gap: 0.15rem;
  align-items: center;
}

.lang-btn {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 0.3rem 0.45rem;
  text-transform: uppercase;
  transition: color .25s;
}

.lang-btn[aria-pressed="true"] {
  color: var(--ink);
  font-weight: 500;
}

.nav[data-theme="light"]:not([data-scrolled="true"]) .lang-btn {
  color: rgba(247, 243, 238, 0.55);
}

.nav[data-theme="light"]:not([data-scrolled="true"]) .lang-btn[aria-pressed="true"] {
  color: var(--paper);
}

.lang-sep {
  color: var(--line);
  font-size: 0.7rem;
}

.nav-cta {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7em 1.3em;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: all .3s;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.nav[data-theme="light"]:not([data-scrolled="true"]) .nav-cta {
  border-color: rgba(247, 243, 238, 0.5);
  color: var(--paper);
}

.nav[data-theme="light"]:not([data-scrolled="true"]) .nav-cta:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.nav-burger {
  display: none;
}

/* ════════ HERO (3 variants) ════════ */
.hero {
  display: none;
}

body[data-hero="A"] .hero--a {
  display: block;
}

body[data-hero="B"] .hero--b {
  display: grid;
}

body[data-hero="C"] .hero--c {
  display: flex;
}

/* meta row shared */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2.6rem;
}

.hero-meta .mi {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.4rem 0;
}

.hero-meta .mi b {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  white-space: nowrap;
}

.hero-meta .mi span {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* — Variant A: full-bleed — */
body[data-hero="A"] header {
  height: 100svh;
  min-height: 640px;
}

.hero--a {
  position: relative;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
}

body[data-hero="A"] .hero--a {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.hero--a .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero--a .hero-bg image-slot {
  width: 100%;
  height: 100%;
}

.hero--a .hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20, 16, 13, 0.45) 0%, rgba(20, 16, 13, 0.15) 35%, rgba(20, 16, 13, 0.55) 100%);
}

.hero--a .hero-body {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8.5rem) var(--pad);
  z-index: 2;
  height: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--paper);
  will-change: transform;
}

.hero--a .eyebrow {
  color: #E9C9A0;
}

.hero--a h1 {
  font-size: clamp(2.6rem, 7vw, 6rem);
  color: var(--paper);
  margin: 1.1rem 0 1.3rem;
  max-width: 16ch;
  letter-spacing: -0.015em;
}

.hero--a h1 em {
  color: #F8E9A1;
  font-family: var(--accent-serif);
}

.hero--a .hero-sub {
  max-width: 46ch;
  color: rgba(247, 243, 238, 0.85);
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 2.2rem;
}

.hero--a .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.8rem;
}

.hero--a .hero-meta {
  padding-top: 1.6rem;
}

.hero--a .hero-meta .mi b {
  color: var(--paper);
}

.hero--a .hero-meta .mi span {
  color: rgba(247, 243, 238, 0.6);
}

.hero-wave {
  position: relative;
  z-index: 3;
  height: clamp(110px, 18vw, 250px);
  /* margin-top: calc(-1 * clamp(20px, 8vw, 80px)); */
  overflow: hidden;
  pointer-events: none;
}

.hero-wave::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(to bottom, rgba(247, 243, 238, 0), var(--bg));
}

.hero-wave img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 98%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 98%, rgba(0, 0, 0, 0) 100%);
}

body:not([data-hero="A"]) .hero-wave {
  display: none;
}

/* — Variant B: editorial split — */
.hero--b {
  grid-template-columns: 1.05fr 1fr;
  min-height: 100svh;
  align-items: stretch;
}

.hero--b .hb-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 10vw, 9rem) clamp(2rem, 5vw, 5rem) clamp(3rem, 5vw, 4rem);
}

.hero--b h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  margin: 1.2rem 0 1.4rem;
  max-width: 13ch;
  letter-spacing: -0.015em;
}

.hero--b .hero-sub {
  max-width: 42ch;
  color: var(--ink-2);
  font-size: 1.1rem;
  margin-bottom: 2.3rem;
}

.hero--b .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

.hero--b .hero-meta {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}

.hero--b .hb-media {
  position: relative;
}

.hero--b .hb-media image-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* — Variant C: type-led minimal — */
.hero--c {
  min-height: 100svh;
  flex-direction: column;
}

.hero--c .hc-top {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 11vw, 10rem) var(--pad) 2rem;
}

.hero--c .hc-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}

.hero--c h1 {
  font-size: clamp(2.8rem, 9vw, 8rem);
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 1.6rem 0;
  max-width: 14ch;
}

.hero--c .hero-sub {
  max-width: 40ch;
  color: var(--ink-2);
  font-size: 1.15rem;
  margin: 0 0 2.4rem;
}

.hero--c .hc-row {
  display: flex;
  align-items: flex-end;
  gap: clamp(2rem, 5vw, 5rem);
  flex-wrap: wrap;
}

.hero--c .hc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero--c .hc-strip {
  border-top: 1px solid var(--line);
  padding: 1.5rem var(--pad);
}

.hero--c .hc-strip .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero--c .hc-thumb {
  width: clamp(160px, 22vw, 300px);
  aspect-ratio: 4/3;
  flex-shrink: 0;
}

.hero--c .hc-thumb image-slot {
  width: 100%;
  height: 100%;
}

/* ════════ INTRO ════════ */
.intro .inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.intro h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  letter-spacing: -0.01em;
}

.intro-brand {
  height: 24px;

  svg {
    height: 100%;
  }
}

.intro-points {
  display: grid;
  gap: 1.6rem;
  margin-top: 2.4rem;
}

.intro-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.intro-point .pn {
  font-family: var(--accent-serif);
  font-size: 1rem;
  color: var(--accent);
  padding-top: 0.15rem;
}

.intro-point h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.intro-point p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ════════ PROGRAM ════════ */
.program {
  background: var(--paper);
}

.program-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.days {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.day {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.4rem, 3.5vw, 3.5rem);
  align-items: center;
}

/* alternate photo/text sides for editorial rhythm */
.day:nth-child(even) {
  direction: rtl;
}

.day:nth-child(even)>* {
  direction: ltr;
}

.day-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.5rem, 1.2vw, 0.9rem);
  align-items: start;
  pointer-events: none;
}

.day-photos image-slot {
  width: 100%;
  height: clamp(240px, 25vw, 340px);
}

.day-photos image-slot:last-child {
  margin-top: clamp(1.4rem, 4vw, 3rem);
}

.day-body {
  padding: 0;
}

.day-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  color: rgba(28, 23, 20, 0.18);
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.day-body h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.day-body h3 em {
  font-style: italic;
  color: var(--accent);
}

.day-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.day-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.9rem;
}

.day-tag {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--ink-2);
}

.program-foot {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* ════════ VILLA ════════ */
.villa .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.villa-media {
  position: relative;
  cursor: pointer;
}

.villa-media>image-slot {
  pointer-events: none;
}

.villa-media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(20, 16, 13, 0);
  transition: background .35s ease;
}

.villa-media:hover::before {
  background: rgba(20, 16, 13, 0.14);
}

.villa-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(0.8rem, 2vw, 1.4rem);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(20, 16, 13, 0.8);
  backdrop-filter: blur(6px);
  padding: 0.85em 1.4em;
  border-radius: 40px;
  transition: background .3s ease, transform .3s ease;
}

.villa-media:hover .villa-hint {
  background: var(--accent);
  transform: translateX(-50%) translateY(-3px);
}

.villa-hint .vh-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.villa-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.8rem;
  aspect-ratio: 1/1;
}

.villa-media image-slot {
  width: 100%;
  height: 100%;
}

.villa-media .v-big {
  grid-row: span 2;
}

.villa-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem 1.5rem;
  margin-top: 2.2rem;
}

.villa-feat {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.villa-feat b {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.villa-feat span {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ════════ VILLA GALLERY MODAL ════════ */
.vmodal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(18, 14, 11, 0.97);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.vmodal[data-open="true"] {
  display: flex;
}

.vmodal-stage {
  position: relative;
  width: min(92vw, 1080px);
  height: min(82vh, 740px);
  overflow: hidden;
}

.vmodal-track {
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.4, 0, .1, 1);
}

.vmodal-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  background: #EFE8DD;
  border-radius: 4px;
  overflow: hidden;
}

.vmodal-slide image-slot {
  width: 100%;
  height: 100%;
}

.vmodal-slide image-slot::part(frame) {
  background: #EFE8DD;
}

.vm-btn {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 243, 238, 0.06);
  color: var(--paper);
  border: 1px solid rgba(247, 243, 238, 0.28);
  cursor: pointer;
  transition: background .3s ease, border-color .3s ease, transform .2s ease;
  font-family: var(--serif);
}

.vm-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.vm-btn:active {
  transform: scale(0.94);
}

.vm-nav {
  top: 50%;
  transform: translateY(-50%);
  width: clamp(46px, 5vw, 58px);
  height: clamp(46px, 5vw, 58px);
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  padding-bottom: 0.15em;
}

.vm-prev {
  left: clamp(0.5rem, 3vw, 2rem);
}

.vm-next {
  right: clamp(0.5rem, 3vw, 2rem);
}

.vm-close {
  top: clamp(1rem, 3vw, 1.8rem);
  right: clamp(1rem, 3vw, 1.8rem);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.3rem;
  font-family: var(--sans);
}

.vm-counter {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 3vw, 1.8rem);
  transform: translateX(-50%);
  z-index: 4;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: rgba(247, 243, 238, 0.75);
  font-family: var(--sans);
}

.vm-counter .vm-cur {
  color: var(--paper);
}

.vm-caption {
  position: absolute;
  left: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 4;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: rgba(247, 243, 238, 0.85);
}

/* ════════ REVIEWS ════════ */
.reviews {
  background: var(--paper);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  padding: clamp(1.8rem, 2.6vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.review-quote {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-soft);
}

.review-avatar {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.review-meta b {
  display: block;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

.review-meta span {
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ════════ INCLUDED + PRICE ════════ */
.included .inner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.incl-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.incl-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  color: var(--ink);
}

.incl-col.out h4 {
  color: var(--muted);
}

.incl-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.incl-list li {
  font-size: 0.92rem;
  line-height: 1.45;
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-2);
}

.incl-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.incl-col.out .incl-list li {
  color: var(--muted);
}

.incl-col.out .incl-list li::before {
  background: none;
  border: 1px solid var(--muted);
  top: 0.45em;
}

.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  position: sticky;
  top: 6rem;
}

.price-card .pc-label {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-card .pc-amount {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1;
  margin: 0.5rem 0 0.3rem;
}

.price-card .pc-amount small {
  font-size: 0.9rem;
  color: var(--muted);
  font-family: var(--sans);
}

.price-card .pc-note {
  font-size: 0.86rem;
  color: var(--ink-2);
  margin-bottom: 1.6rem;
  line-height: 1.5;
}

.price-card .pc-rows {
  margin-top: 20px;
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.8rem;
}

.price-card .pc-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line-soft);
}

.price-card .pc-row span:first-child {
  color: var(--muted);
}

.price-card .pc-row span:last-child {
  color: var(--ink);
}

.price-card .btn {
  width: 100%;
  justify-content: center;
}

.price-card .btn--accent:hover,
.lead-card .btn--accent:hover {
  background: color-mix(in srgb, var(--accent) 88%, #000);
  border-color: color-mix(in srgb, var(--accent) 88%, #000);
  color: var(--paper);
  box-shadow: 0 3px 14px color-mix(in srgb, var(--accent) 30%, transparent);
}

/* ════════ DATES ════════ */
.dates {
  background: var(--paper);
}

.dates-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 3rem auto 0;
  max-width: 820px;
}

.date-card {
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .3s, transform .3s;
}

.date-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.date-card .dc-season {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.date-card .dc-range {
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.1;
}

.date-card .dc-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.date-status {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  text-align: center;
}

.status-open {
  background: rgba(107, 140, 116, 0.16);
  color: var(--sage);
}

.status-few {
  background: rgba(196, 148, 58, 0.16);
  color: var(--gold);
}

.status-wait {
  background: rgba(158, 145, 137, 0.16);
  color: var(--muted);
}

/* ════════ ABOUT ════════ */
.about .inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-photo {
  aspect-ratio: 3/4;
  pointer-events: none;
}

.about-photo image-slot {
  width: 100%;
  height: 100%;
}

.about h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}

.about blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.35;
  margin: 0 0 1.8rem;
  color: var(--ink);
}

.about .about-sign {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-top: 2rem;
}

.about .about-sign span {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ════════ FAQ ════════ */
.faq .inner {
  max-width: 880px;
}

.faq-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid #434D75;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: #fff;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform .3s;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  transform: translateX(-50%);
}

.faq-item[data-open="true"] .faq-icon::after {
  transform: translateX(-50%) scaleY(0);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-a-inner {
  padding: 0 0 1.6rem;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.7;
  max-width: 64ch;
}

/* ════════ LEAD FORM ════════ */
.lead-sec {
  background: var(--ink);
  color: var(--paper);
}

.lead-sec .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.lead-sec .eyebrow {
  color: #E9C9A0;
}

.lead-sec h2 {
  color: var(--paper);
}

.lead-sec h2 em {
  color: #F8E9A1;
}

.lead-intro p {
  color: rgba(247, 243, 238, 0.7);
  font-size: 1.05rem;
  max-width: 40ch;
  margin-top: 1.4rem;
}

.lead-contacts {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}

.lead-contacts a {
  color: rgba(247, 243, 238, 0.85);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  transition: color .3s;
}

.lead-contacts a:hover {
  color: #E9C9A0;
}

.lead-contacts a span.lbl {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.4);
  min-width: 5.5rem;
}

.lead-card {
  background: rgba(247, 243, 238, 0.05);
  border: 1px solid rgba(247, 243, 238, 0.15);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
}

.lead-card-eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E9C9A0;
}

.lead-card-h {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--paper);
  line-height: 1.15;
}

.lead-card-p {
  color: rgba(247, 243, 238, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 38ch;
}

.lead-tg-btn {
  margin-top: 0.6rem;
}

.lead-tg-btn .tg-ico {
  font-size: 1rem;
}

.form {
  display: grid;
  gap: 1.3rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.55);
}

.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(247, 243, 238, 0.25);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  padding: 0.7rem 0;
  transition: border-color .3s;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(247, 243, 238, 0.3);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #E9C9A0;
}

.field select option {
  background: var(--ink);
  color: var(--paper);
}

.field textarea {
  resize: vertical;
  min-height: 2.5rem;
}

.form .btn {
  margin-top: 0.6rem;
  justify-self: start;
}

.form-note {
  font-size: 0.74rem;
  color: rgba(247, 243, 238, 0.4);
  line-height: 1.5;
}

.form-success {
  display: none;
  padding: 2rem;
  border: 1px solid rgba(233, 201, 160, 0.4);
  text-align: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: #E9C9A0;
}

.form[data-sent="true"] {
  display: none;
}

.form[data-sent="true"]+.form-success {
  display: block;
}

/* ════════ FOOTER ════════ */
.footer {
  position: relative;
  z-index: 2;
  background: var(--ink);
  color: rgba(247, 243, 238, 0.5);
  padding: clamp(3rem, 6vw, 5rem) var(--pad) 2.5rem;
  border-top: 1px solid rgba(247, 243, 238, 0.1);
}

.footer .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  letter-spacing: 0.3em;
  color: var(--paper);
  font-weight: 500;
}

.footer-tag {
  font-size: 0.8rem;
  margin-top: 0.8rem;
  max-width: 30ch;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.4);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(247, 243, 238, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  transition: color .3s;
}

.footer-col a:hover {
  color: #E9C9A0;
}

.footer-bottom {
  max-width: var(--maxw);
  margin: 3rem auto 0;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(247, 243, 238, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(247, 243, 238, 0.35);
}

/* ════════ reveal animation ════════ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s ease, transform .8s ease;
  }

  .reveal.in {
    opacity: 1;
    transform: none;
  }
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 900px) {
  .nav-mid {
    display: none;
  }

  .nav-burger {
    display: inline-flex;
  }

  .intro .inner,
  .villa .inner,
  .included .inner,
  .about .inner,
  .lead-sec .inner {
    grid-template-columns: 1fr;
  }

  .days .day {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .day:nth-child(even) {
    direction: ltr;
  }

  .day-photos image-slot:first-child,
  .day-photos image-slot:last-child {
    margin-top: 0;
    align-self: stretch;
  }

  .day-body {
    order: 2;
  }

  .incl-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .villa-feats {
    grid-template-columns: 1fr 1fr;
  }

  .price-card {
    position: static;
  }

  .hero--b {
    grid-template-columns: 1fr;
  }

  .hero--b .hb-media {
    min-height: 50svh;
  }
}

@media (max-width: 540px) {
  .nav-right .nav-cta {
    display: none;
  }

  .hero-meta {
    gap: 0 1.6rem;
  }

  /* третий по счету hero-meta */
  .hero-meta .mi:nth-child(3),
  .hero-meta .mi:nth-child(4) {
    display: none;
  }

  .villa-feats {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════
   INTRO LOADER + ZOOM-TO-HERO + PARALLAX
   ════════════════════════════════════════════════════════════ */
.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  overflow: hidden;
  opacity: 1;
}

.intro-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(130% 90% at 50% -10%, rgba(255, 255, 255, 0.7), transparent 55%),
    radial-gradient(110% 90% at 50% 120%, rgba(28, 23, 20, 0.06), transparent 60%);
}

.intro-screen[data-state="done"] {
  opacity: 0;
  pointer-events: none;
  transition: opacity .85s ease;
}

/* top brand row */
.intro-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.3rem, 3vw, 1.9rem) var(--pad);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .8s ease, transform .8s ease;
}

.intro-screen:not([data-step="0"]) .intro-top {
  opacity: 1;
  transform: none;
}

.intro-screen.zoom .intro-top {
  opacity: 0;
  transition: opacity .45s ease;
}

.intro-brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.34em;
  color: var(--ink);
  padding-left: 0.34em;
  font-weight: 500;
}

.intro-loc {
  font-size: 0.64rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}

/* the photo frame that grows into the hero */
.intro-frame {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(232px, 23vw, 300px);
  height: clamp(322px, 52vh, 426px);
  transform: translate(-50%, -50%) scale(0.9);
  border-radius: 3px;
  overflow: hidden;
  background: rgba(28, 23, 20, 0.06);
  box-shadow: 0 36px 80px -24px rgba(28, 23, 20, 0.45), 0 3px 10px rgba(28, 23, 20, 0.12);
  opacity: 0;
  transition:
    width 1.15s cubic-bezier(.78, 0, .16, 1),
    height 1.15s cubic-bezier(.78, 0, .16, 1),
    border-radius 1.1s ease,
    box-shadow 1.1s ease,
    transform .85s cubic-bezier(.2, .7, .2, 1),
    opacity .75s ease;
}

.intro-screen:not([data-step="0"]) .intro-frame {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.intro-screen.zoom .intro-frame {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  box-shadow: none;
  transform: translate(-50%, -50%) scale(1);
}

.intro-frame .ils {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .7s ease;
}

.intro-frame .ils::part(frame) {
  background: transparent;
}

.intro-screen[data-step="1"] #load-1 {
  opacity: 1;
}

.intro-screen[data-step="2"] #load-2 {
  opacity: 1;
}

.intro-screen[data-step="3"] #load-3 {
  opacity: 1;
}

.intro-screen[data-step="4"] .ils-final,
.intro-screen.zoom .ils-final {
  opacity: 1;
}

/* caption under frame */
.intro-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(4.6rem, 13vh, 7.2rem);
  text-align: center;
  z-index: 4;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .85s ease, transform .85s ease;
}

.intro-screen:not([data-step="0"]) .intro-caption {
  opacity: 1;
  transform: none;
}

.intro-screen.zoom .intro-caption {
  opacity: 0;
  transition: opacity .4s ease;
}

.ic-line {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.1vw, 1.55rem);
  color: var(--ink-2);
  letter-spacing: 0.01em;
}

.ic-line em {
  font-style: italic;
  color: var(--accent);
}

/* progress bar + counter */
.intro-bar {
  position: absolute;
  left: 50%;
  bottom: clamp(2.4rem, 7.5vh, 3.7rem);
  transform: translateX(-50%);
  z-index: 4;
  width: min(228px, 42vw);
  height: 1.5px;
  background: var(--line);
  overflow: hidden;
  opacity: 0;
  transition: opacity .6s ease;
}

.intro-screen:not([data-step="0"]) .intro-bar {
  opacity: 1;
}

.intro-screen.zoom .intro-bar,
.intro-screen.zoom .intro-count {
  opacity: 0;
  transition: opacity .3s ease;
}

.intro-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--ink);
  transition: width 2.05s cubic-bezier(.55, 0, .2, 1);
}

.intro-screen:not([data-step="0"]) .intro-bar-fill {
  width: 100%;
}

.intro-count {
  position: absolute;
  left: 50%;
  bottom: clamp(1.3rem, 4vh, 2rem);
  transform: translateX(-50%);
  z-index: 4;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  opacity: 0;
  transition: opacity .6s ease;
}

.intro-screen:not([data-step="0"]) .intro-count {
  opacity: 1;
}

/* replay control */
.intro-replay {
  position: fixed;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(253, 250, 246, 0.7);
  backdrop-filter: blur(8px);
  color: var(--ink-2);
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease, color .25s ease, border-color .25s ease, transform .4s ease;
}

body[data-intro-done] .intro-replay {
  opacity: 0.55;
  pointer-events: auto;
}

.intro-replay:hover {
  opacity: 1;
  color: var(--accent);
  border-color: var(--accent);
  transform: rotate(-90deg);
}

/* nav hidden until intro completes */
.nav {
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease,
    opacity .8s ease, transform .8s ease;
}

body:not([data-intro-done]) .nav {
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
}

/* hero A: post-intro reveal */
.hero--a .hero-body>* {
  opacity: 0;
  transform: translateY(28px);
}

body[data-intro-done] .hero--a .hero-body>* {
  animation: heroRise 1s cubic-bezier(.2, .72, .2, 1) forwards;
}

body[data-intro-done] .hero--a .hero-body>*:nth-child(1) {
  animation-delay: .08s;
}

body[data-intro-done] .hero--a .hero-body>*:nth-child(2) {
  animation-delay: .20s;
}

body[data-intro-done] .hero--a .hero-body>*:nth-child(3) {
  animation-delay: .32s;
}

body[data-intro-done] .hero--a .hero-body>*:nth-child(4) {
  animation-delay: .44s;
}

body[data-intro-done] .hero--a .hero-body>*:nth-child(5) {
  animation-delay: .56s;
}

@keyframes heroRise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  .intro-screen .intro-top,
  .intro-screen .intro-frame,
  .intro-screen .intro-caption,
  .intro-screen .intro-bar,
  .intro-screen .intro-bar-fill,
  .intro-screen .intro-count,
  .intro-frame .ils {
    transition: none !important;
  }

  .hero--a .hero-body>* {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}