/* ── Design system ── */
:root {
  --canvas: #0a0908;
  --canvas-elevated: #11100e;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.05);
  --dark: #0a0908;
  --text: #F3F3F1;
  --text-muted: rgba(255, 255, 255, 0.62);
  --text-dim: rgba(255, 255, 255, 0.45);
  --line: rgba(255, 255, 255, 0.14);
  --line-subtle: rgba(255, 255, 255, 0.08);
  --line-faint: rgba(255, 255, 255, 0.05);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.1);
  --btn-primary-bg: #F5F5F3;
  --btn-primary-hover: #FFFFFF;
  --btn-primary-text: #0a0908;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --radius-lg: 12px;
  --header-h: 72px;
  --container: 1200px;
  --space-section: clamp(64px, 7vw, 92px);
  --space-section-sm: clamp(48px, 5.5vw, 68px);
  --transition: 0.25s ease;
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --hero-overlay: linear-gradient(105deg, rgba(10, 9, 8, 0.82) 0%, rgba(10, 9, 8, 0.52) 55%, rgba(10, 9, 8, 0.32) 100%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main { background: var(--canvas); position: relative; }
main > section { position: relative; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.section-label--light { color: rgba(255, 255, 255, 0.58); }

.section-head {
  margin-bottom: 32px;
  max-width: 540px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.section-head--wide { max-width: none; }

.section-head--compact {
  max-width: 420px;
  margin-bottom: 24px;
}

.section-head__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 32px;
}

.section-head .section-label { margin-bottom: 10px; }

.section-head__title {
  font-size: clamp(1.75rem, 2.8vw, 2.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section-head__lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 400px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform 0.15s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--btn-primary-hover);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

.btn--outline {
  background: var(--glass);
  color: #fff;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  background: var(--surface-hover);
}

.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--full { width: 100%; }
.btn--cta { padding: 15px 26px; font-size: 15px; }
.btn:focus-visible { outline: 2px solid rgba(255, 255, 255, 0.45); outline-offset: 2px; }
.btn:active { transform: scale(0.98); }

.text-link {
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.text-link--light {
  color: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.text-link--light:hover { color: #fff; border-bottom-color: rgba(255, 255, 255, 0.6); }

/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  padding-top: 10px;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-top var(--transition);
}

.header--hidden { transform: translateY(calc(-100% - 12px)); }

.header--on-hero:not(.header--scrolled) .logo,
.header--on-hero:not(.header--scrolled) .nav__link { color: rgba(255, 255, 255, 0.92); }
.header--on-hero:not(.header--scrolled) .nav__link::after { background: #fff; }
.header--on-hero:not(.header--scrolled) .burger__line { background: #fff; }

.header--scrolled { padding-top: 6px; }
.header--scrolled .logo,
.header--scrolled .nav__link { color: rgba(255, 255, 255, 0.78); }
.header--scrolled .nav__link:hover { color: #fff; }
.header--scrolled .burger__line { background: var(--text); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  gap: 20px;
  padding: 0 14px 0 18px;
  border: 1px solid var(--line-faint);
  border-radius: var(--radius-lg);
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: auto;
  transition: background var(--transition), border-color var(--transition);
}

.header--scrolled .header__inner {
  background: rgba(14, 13, 11, 0.88);
  border-color: var(--line-subtle);
}

.logo {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav__list { display: flex; align-items: center; gap: 22px; }

.nav__link {
  font-size: 13px;
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link--active::after { width: 100%; }
.nav__link--active { color: #fff !important; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  z-index: 110;
}

.burger__line {
  display: block;
  width: 100%; height: 1.5px;
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger--active .burger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger--active .burger__line:nth-child(2) { opacity: 0; }
.burger--active .burger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-overlay { display: none; }
.nav__cta-mobile { display: none; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: var(--hero-overlay); }

.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: 1;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, var(--canvas) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--header-h) + 8px);
  min-height: 100vh;
  min-height: 100dvh;
}

.hero__content { padding: 72px 0 24px; max-width: 600px; }

.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(1.875rem, 4.2vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
  text-wrap: balance;
}

.hero__lead {
  font-size: clamp(15px, 1.7vw, 16px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 24px;
  max-width: 480px;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-bottom: 24px;
}

.hero-booking {
  background: rgba(10, 9, 8, 0.55);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  backdrop-filter: blur(12px);
  max-width: 680px;
}

.hero-booking__fields {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1.3fr auto;
  gap: 10px;
  align-items: end;
}

.hero-booking__field { display: flex; flex-direction: column; gap: 5px; min-width: 0; }

.hero-booking__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.hero-booking__input {
  width: 100%;
  padding: 10px 11px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  appearance: none;
}

.hero-booking__input option { color: var(--btn-primary-text); background: #fff; }

.hero-booking__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.28);
  background: var(--surface-hover);
}

.hero-booking__submit { padding: 10px 20px; height: 38px; align-self: end; }

.hero__facts { position: relative; z-index: 2; }
.hero__facts-inner { padding: 0 0 16px; }

.hero__facts-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(8, 7, 6, 0.72);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero__fact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 20px;
  border-right: 1px solid var(--line-faint);
  transition: background var(--transition);
}

.hero__fact:last-child { border-right: none; }
.hero__fact:hover { background: var(--surface); }

.hero__fact-value {
  font-size: clamp(14px, 1.3vw, 15px);
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.01em;
}

.hero__fact-label {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.48);
}

/* ── Included ── */
.included {
  padding: var(--space-section-sm) 0 0;
}

.included__editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(32px, 4.5vw, 64px);
  align-items: center;
  padding-bottom: clamp(28px, 3.5vw, 44px);
}

.included__hero-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  max-height: 580px;
  overflow: hidden;
}

.included__hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.9) saturate(0.92);
}

.included__photo-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.included__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.included__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 16px;
  text-wrap: balance;
}

.included__lead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 32em;
  margin-bottom: 28px;
}

.included__points { border-top: 1px solid var(--line-subtle); }

.included__point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-subtle);
  align-items: start;
}

.included__point-num {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.28);
  padding-top: 2px;
}

.included__point-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.included__point-text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.included__metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(24px, 3vw, 36px) 0 0;
  border-top: 1px solid var(--line-subtle);
}

.included__metric { flex: 1; text-align: center; }

.included__metric-value {
  display: block;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 6px;
}

.included__metric-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.included__metric-divider {
  width: 1px;
  height: 40px;
  background: var(--line-subtle);
  flex-shrink: 0;
}

/* ── Programs / Pricing ── */
.programs {
  padding: var(--space-section-sm) 0 var(--space-section);
}

.programs::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-faint) 20%, var(--line-faint) 80%, transparent);
}

.programs__note {
  margin-top: 18px;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.38);
  border-left: 1px solid var(--line-subtle);
}

.pricing {
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.pricing__row {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: clamp(16px, 3vw, 32px);
  padding: clamp(22px, 2.5vw, 28px) clamp(22px, 3vw, 32px);
  border-bottom: 1px solid var(--line-faint);
  align-items: center;
  transition: background var(--transition);
}

.pricing__row:last-child { border-bottom: none; }
.pricing__row:hover { background: var(--surface-hover); }

.pricing__row--featured {
  background: rgba(255, 255, 255, 0.04);
  border-bottom-color: var(--line-subtle);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.pricing__row--featured:hover { background: rgba(255, 255, 255, 0.05); }

.pricing__head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.pricing__name {
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pricing__badge {
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line-subtle);
  border-radius: 4px;
}

.pricing__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 10px;
  max-width: 460px;
}

.pricing__includes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
}

.pricing__includes li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 10px;
  position: relative;
}

.pricing__includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.pricing__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.pricing__time {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.pricing__price {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
}

.pricing__aside .btn { min-width: 130px; }

/* ── Atmosphere ── */
.atmosphere {
  padding: 0 0 var(--space-section-sm);
}

.atmosphere__hero {
  position: relative;
  min-height: clamp(360px, 48vh, 480px);
  margin-bottom: clamp(16px, 2.5vw, 28px);
  overflow: hidden;
}

.atmosphere__hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.8) saturate(0.88);
}

.atmosphere__hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.9) 0%, rgba(10, 9, 8, 0.4) 55%, rgba(10, 9, 8, 0.15) 100%),
    linear-gradient(0deg, rgba(10, 9, 8, 0.45) 0%, transparent 45%);
}

.atmosphere__hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(360px, 48vh, 480px);
  padding-bottom: clamp(36px, 4.5vw, 52px);
  max-width: 520px;
}

.atmosphere__hero-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  text-wrap: balance;
}

.atmosphere__hero-lead {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: 380px;
}

.atmosphere__strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.atmosphere__tile {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
}

.atmosphere__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.86) saturate(0.9);
  transition: transform 0.45s ease, filter var(--transition);
}

.atmosphere__tile:hover img {
  transform: scale(1.03);
  filter: brightness(0.92) saturate(0.95);
}

.atmosphere__tile figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 10px 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
  background: linear-gradient(0deg, rgba(10, 9, 8, 0.75) 0%, transparent 100%);
}

/* ── FAQ ── */
.faq-section {
  padding: var(--space-section-sm) 0;
}

.faq-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-faint) 20%, var(--line-faint) 80%, transparent);
}

.faq-section .container { max-width: 680px; }

.faq__list { display: flex; flex-direction: column; gap: 6px; }

.faq__item {
  background: var(--surface);
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}

.faq__item:hover { border-color: var(--line-subtle); }

.faq__item--open {
  border-color: var(--line-subtle);
  background: rgba(255, 255, 255, 0.04);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 15px 18px;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  color: var(--text);
  transition: color var(--transition);
}

.faq__question:hover { color: #fff; }

.faq__icon {
  flex-shrink: 0;
  width: 16px; height: 16px;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 1px;
  transition: opacity var(--transition), background var(--transition);
}

.faq__icon::before { top: 7px; left: 0; width: 16px; height: 1.5px; }
.faq__icon::after { top: 0; left: 7px; width: 1.5px; height: 16px; }
.faq__item--open .faq__icon::after { opacity: 0; }
.faq__item--open .faq__icon::before { background: rgba(255, 255, 255, 0.75); }

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__item--open .faq__answer { grid-template-rows: 1fr; }

.faq__answer > p {
  overflow: hidden;
  padding: 0 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

.faq__item--open .faq__answer > p { padding: 0 18px 15px; }

/* ── CTA / Form ── */
.cta {
  position: relative;
  padding: var(--space-section) 0;
  color: #fff;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-subtle) 30%, var(--line-subtle) 70%, transparent);
  z-index: 2;
}

.cta__bg { position: absolute; inset: 0; z-index: 0; }

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.32;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 9, 8, 0.95) 0%, rgba(12, 11, 9, 0.9) 50%, rgba(10, 9, 8, 0.94) 100%);
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 56px);
  align-items: start;
}

.cta__title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 14px;
  text-wrap: balance;
}

.cta__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 400px;
}

.cta__phone {
  display: inline-block;
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 20px;
  transition: opacity var(--transition);
}

.cta__phone:hover { opacity: 0.8; }

.cta__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.cta__perks li {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  background: var(--glass);
  border: 1px solid var(--line-faint);
  border-radius: 4px;
}

.cta__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.cta__channel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--glass);
  transition: background var(--transition), border-color var(--transition);
}

.cta__channel:hover {
  background: var(--surface-hover);
  border-color: rgba(255, 255, 255, 0.18);
}

.cta__channel-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}

.cta__meta {
  font-size: 13px;
  color: var(--text-dim);
}

.cta__panel {
  background: rgba(12, 11, 9, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.cta__panel-head {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-faint);
}

.cta__panel-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}

.cta__panel-sub {
  font-size: 13px;
  color: var(--text-dim);
}

.cta-form { display: flex; flex-direction: column; gap: 12px; }
.cta-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cta-form__group { display: flex; flex-direction: column; gap: 5px; }

.cta-form__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.cta-form__input {
  width: 100%;
  padding: 11px 13px;
  font-family: inherit;
  font-size: 14px;
  color: #fff;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 6px;
  transition: border-color var(--transition), background var(--transition);
}

.cta-form__input::placeholder { color: rgba(255, 255, 255, 0.28); }

.cta-form__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.28);
  background: var(--surface-hover);
}

.cta-form__textarea { resize: vertical; min-height: 72px; }
.cta-form--hidden { display: none; }

.cta-form__success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  text-align: center;
}

.cta-form__success-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

/* ── Footer ── */
.footer {
  padding: 36px 0 24px;
  background: var(--dark);
  border-top: 1px solid var(--line-faint);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px 28px;
  align-items: start;
}

.footer__logo { font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.82); }

.footer__tagline {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-dim);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  grid-column: 2;
}

.footer__nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
  transition: color var(--transition);
}

.footer__nav a:hover { color: #fff; }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  grid-column: 3;
  text-align: right;
}

.footer__contact a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  transition: color var(--transition);
}

.footer__contact a:hover { color: #fff; }

.footer__copy {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line-faint);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
}

/* ── Scroll top ── */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: rgba(14, 13, 11, 0.92);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), background var(--transition);
  backdrop-filter: blur(8px);
}

.scroll-top--visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: #fff; color: var(--btn-primary-text); border-color: #fff; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .included__editorial { grid-template-columns: 1fr; gap: 32px; }
  .included__hero-photo { max-height: 400px; aspect-ratio: 16 / 10; }

  .pricing__row { grid-template-columns: 1fr; gap: 14px; }
  .pricing__aside {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid var(--line-faint);
  }
  .pricing__aside .btn { min-width: 0; }

  .atmosphere__strip { grid-template-columns: repeat(3, 1fr); }
  .atmosphere__tile:nth-child(4),
  .atmosphere__tile:nth-child(5) { display: none; }

  .cta__inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }

  .header__inner { height: 48px; padding: 0 12px 0 16px; }

  .nav {
    position: fixed;
    top: 0; right: 0;
    width: min(280px, 82vw);
    height: 100dvh;
    background: rgba(10, 9, 8, 0.98);
    backdrop-filter: blur(20px);
    padding: calc(var(--header-h) + 20px) 24px 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 105;
    border-left: 1px solid var(--line-faint);
  }

  .nav--open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 2px; }

  .nav__link {
    display: block;
    padding: 13px 12px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.72) !important;
    transition: background var(--transition), color var(--transition);
  }

  .nav__link:hover,
  .nav__link--active {
    background: var(--surface);
    color: #fff !important;
  }

  .nav__link::after { display: none; }
  .nav__cta-mobile { display: inline-flex; margin-top: 16px; }
  .header__cta { display: none; }
  .burger { display: flex; }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 104;
  }

  .nav-overlay--visible { opacity: 1; pointer-events: auto; }
  body.menu-open { overflow: hidden; }

  .hero__inner { min-height: auto; }
  .hero__content { padding: 40px 0 20px; }
  .hero-booking { padding: 12px 14px; }
  .hero-booking__fields { grid-template-columns: 1fr 1fr; }
  .hero-booking__field--wide,
  .hero-booking__submit { grid-column: span 2; }
  .hero-booking__submit { width: 100%; }

  .hero__facts-list { grid-template-columns: repeat(2, 1fr); }
  .hero__fact { padding: 14px 16px; border-bottom: 1px solid var(--line-faint); border-right: none; }
  .hero__fact:nth-child(odd) { border-right: 1px solid var(--line-faint); }
  .hero__fact:nth-last-child(-n+2) { border-bottom: none; }

  .included { padding-top: var(--space-section-sm); }
  .included__metrics { flex-direction: column; gap: 20px; }
  .included__metric-divider { width: 40px; height: 1px; }

  .section-head__row { flex-direction: column; align-items: flex-start; }

  .atmosphere__strip { grid-template-columns: repeat(2, 1fr); }
  .atmosphere__tile:nth-child(3) { display: block; }
  .atmosphere__tile:nth-child(4),
  .atmosphere__tile:nth-child(5) { display: none; }

  .cta-form__row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__nav { grid-column: 1; justify-content: center; }
  .footer__contact { grid-column: 1; text-align: center; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero__title { font-size: 1.625rem; }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .hero__cta-row .btn { width: 100%; }

  .hero-booking__fields { grid-template-columns: 1fr; }
  .hero-booking__field--wide,
  .hero-booking__submit { grid-column: span 1; }

  .hero__facts-list { grid-template-columns: 1fr; }
  .hero__fact { border-right: none !important; }
  .hero__fact:not(:last-child) { border-bottom: 1px solid var(--line-faint); }

  .included__hero-photo { aspect-ratio: 4 / 3; max-height: none; }
  .included__title { font-size: 1.75rem; }

  .pricing__aside { flex-wrap: wrap; }
  .pricing__aside .btn { width: 100%; justify-content: center; }

  .atmosphere__hero { min-height: 300px; }
  .atmosphere__hero-content { min-height: 300px; padding-bottom: 28px; }

  .cta__panel { padding: 20px 16px; }
  .cta__channels { flex-direction: column; }
  .cta__channels .cta__channel { width: 100%; justify-content: center; }
  .scroll-top { bottom: 16px; right: 16px; }
}