:root {
  --bg: #121110;
  --bg-surface: #1A1816;
  --bg-wood: #22201C;
  --bg-elevated: #1E1C18;
  --dark: #0E0C0A;
  --dark-soft: #1E1C18;
  --canvas: #0f0d0b;
  --canvas-mid: #141210;
  --surface-1: #161412;
  --surface-2: #1a1714;
  --surface-3: #1e1b17;
  --surface-card: rgba(26, 23, 19, 0.82);
  --text: #EAE6E0;
  --text-muted: rgba(234, 230, 224, 0.62);
  --accent: #6B7D62;
  --accent-dark: #5A6B52;
  --accent-light: #8A9B82;
  --accent-glow: rgba(107, 125, 98, 0.2);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --border-accent: rgba(107, 125, 98, 0.35);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius: 12px;
  --radius-lg: 18px;
  --header-h: 76px;
  --container: 1200px;
  --section-pad: clamp(52px, 5.5vw, 76px);
  --section-pad-tight: clamp(44px, 5vw, 64px);
  --transition: 0.3s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --hero-overlay: linear-gradient(105deg, rgba(18, 16, 14, 0.72) 0%, rgba(18, 16, 14, 0.45) 55%, rgba(18, 16, 14, 0.25) 100%);
  --section-fade: linear-gradient(180deg, transparent 0%, var(--canvas) 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;
  line-height: 1.6;
  color: var(--text);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main { background: var(--canvas); }

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;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-label--light { color: rgba(138, 155, 130, 0.9); }

.section-head {
  margin-bottom: 36px;
  max-width: 540px;
  padding-left: 18px;
  border-left: 2px solid rgba(107, 125, 98, 0.45);
}

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

.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
}

.section-head__lead {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 480px;
}

.section-head--light {
  border-left-color: rgba(107, 125, 98, 0.55);
}

.section-head--light .section-label {
  color: var(--accent-light);
  opacity: 1;
}

.section-head--light .section-head__title { color: #fff; }
.section-head--light .section-head__lead { color: rgba(234, 230, 224, 0.72); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  border-radius: 8px;
  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(--accent); color: #fff; }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--accent-dark); }

.btn--light { background: #fff; color: var(--dark); }
.btn--light:hover, .btn--light:focus-visible { background: #eee; }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.btn--outline:hover, .btn--outline:focus-visible {
  border-color: var(--border-accent);
  color: var(--accent-light);
  background: rgba(107, 125, 98, 0.08);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--full { width: 100%; }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn:active { transform: scale(0.98); }

.text-link {
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.text-link--light {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.35);
}
.text-link--light:hover { color: #fff; border-bottom-color: #fff; }

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

.header--hidden {
  transform: translateY(calc(-100% - 16px));
  pointer-events: none;
}

.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: 8px; }
.header--scrolled .logo, .header--scrolled .nav__link { color: rgba(234, 230, 224, 0.82); }
.header--scrolled .nav__link:hover { color: #fff; }
.header--scrolled .burger__line { background: var(--text); }

.header__cta {
  background: var(--accent);
  color: #fff;
  border: none;
  box-shadow: 0 4px 18px rgba(107, 125, 98, 0.3);
}
.header__cta:hover, .header__cta:focus-visible {
  background: var(--accent-dark);
  box-shadow: 0 6px 22px rgba(107, 125, 98, 0.38);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: 22px;
  padding: 0 16px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(18, 16, 14, 0.42);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  pointer-events: auto;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.header--scrolled .header__inner {
  background: rgba(22, 20, 18, 0.78);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.logo { font-size: 16px; font-weight: 650; letter-spacing: -0.02em; flex-shrink: 0; }
.nav__list { display: flex; align-items: center; gap: 24px; }
.nav__link {
  font-size: 14px;
  font-weight: 600;
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  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: 2px;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger--active .burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger--active .burger__line:nth-child(2) { opacity: 0; }
.burger--active .burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay { display: none; }
.nav__cta-mobile { display: none; }

/* Hero — unchanged */
.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, rgba(18, 16, 14, 0) 0%, rgba(18, 16, 14, 0.65) 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) + 6px);
  min-height: 100vh;
  min-height: 100dvh;
}
.hero__content { padding: 86px 0 28px; max-width: 640px; }
.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}
.hero__lead {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
  max-width: 520px;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-bottom: 32px;
}
.hero-booking {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 16px 20px;
  backdrop-filter: blur(16px);
  max-width: 720px;
}
.hero-booking__fields {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.4fr auto;
  gap: 12px;
  align-items: end;
}
.hero-booking__field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.hero-booking__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-booking__input {
  width: 100%;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  appearance: none;
}
.hero-booking__input option { color: var(--text); background: #fff; }
.hero-booking__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
}
.hero-booking__submit { padding: 11px 24px; height: 42px; align-self: end; }
.hero__facts {
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
}
.hero__facts-inner {
  padding: 0 0 20px;
}
.hero__facts-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(10, 9, 8, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.hero__fact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition);
}
.hero__fact:last-child { border-right: none; }
.hero__fact:hover { background: rgba(107, 125, 98, 0.08); }
.hero__fact-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(107, 125, 98, 0.18);
  border: 1px solid rgba(107, 125, 98, 0.32);
  border-radius: 11px;
  box-shadow: 0 2px 12px rgba(107, 125, 98, 0.12);
}
.hero__fact-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-light);
}
.hero__fact-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.hero__fact-value {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero__fact-label {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.52);
}

/* ── Post-hero unified system ── */

.included {
  position: relative;
  padding: clamp(40px, 5vw, 60px) 0 clamp(28px, 3.5vw, 44px);
  color: var(--text);
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(107, 125, 98, 0.06), transparent 55%),
    var(--canvas);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.included__inner { position: relative; }
.included__editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: stretch;
  padding-bottom: clamp(20px, 2.5vw, 28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.included__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: clamp(14px, 2vw, 20px);
}
.included__title {
  font-family: var(--font);
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 14em;
  margin-bottom: clamp(14px, 2vw, 18px);
}
.included__lead {
  font-size: clamp(14px, 1.4vw, 15px);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 36em;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.included__steps {
  list-style: none;
  max-width: 400px;
}
.included__step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.included__step:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.included__step-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.32);
  padding-top: 2px;
}
.included__step-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 4px;
}
.included__step-text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}
.included__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  min-height: 0;
  align-self: stretch;
}
.included__photo {
  margin: 0;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 0;
}
.included__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9) saturate(0.88);
}
.included__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  margin: 0;
  padding-top: clamp(16px, 2vw, 22px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(234, 230, 224, 0.42);
}
.included__facts-sep {
  color: rgba(107, 125, 98, 0.45);
  user-select: none;
}

/* Programs */
.programs {
  position: relative;
  margin-top: 0;
  padding: clamp(40px, 5vw, 64px) 0 var(--section-pad);
  color: var(--text);
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(107, 125, 98, 0.07), transparent 50%),
    var(--surface-1);
}
.programs .container { position: relative; z-index: 1; }
.programs .section-label { color: var(--accent-light); }

.programs__note {
  margin-top: 24px;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(234, 230, 224, 0.4);
  border-left: 2px solid rgba(107, 125, 98, 0.2);
}

.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.format-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 26px;
  background: var(--surface-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: border-color var(--transition), box-shadow var(--transition), transform 0.2s ease;
}
.format-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-glow);
}
.format-card--featured {
  padding-top: 36px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(107, 125, 98, 0.16), transparent 60%),
    rgba(32, 28, 22, 0.9);
  border-color: var(--border-accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(107, 125, 98, 0.1);
  transform: translateY(-4px);
}
.format-card--featured:hover {
  border-color: rgba(107, 125, 98, 0.45);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35), 0 0 40px rgba(107, 125, 98, 0.08);
}
.format-card__badge {
  position: absolute;
  top: 18px; right: 18px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(107, 125, 98, 0.12);
  border: 1px solid rgba(107, 125, 98, 0.25);
  border-radius: 20px;
}
.format-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.format-card__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.format-card__time {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-light);
  padding: 4px 10px;
  background: rgba(107, 125, 98, 0.1);
  border-radius: 20px;
}
.format-card__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 18px;
  min-height: 42px;
}
.format-card__list {
  flex: 1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.format-card__list li {
  font-size: 14px;
  color: rgba(234, 230, 224, 0.58);
  padding-left: 14px;
  position: relative;
}
.format-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}
.format-card--featured .format-card__list li::before { background: var(--accent-light); opacity: 0.8; }
.format-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.format-card__price {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.format-card--featured .format-card__price { color: var(--accent-light); }

/* Atmosphere */
.atmosphere {
  position: relative;
  padding: clamp(40px, 4.5vw, 56px) 0;
  color: #fff;
  background: linear-gradient(180deg, var(--surface-1) 0%, var(--canvas) 100%);
}
.atmosphere::before {
  content: '';
  position: absolute;
  left: 10%; right: 10%; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.atmosphere__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.atmosphere__shot {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.atmosphere__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.92);
  transition: transform 0.5s ease, filter var(--transition);
}
.atmosphere__shot:hover img {
  transform: scale(1.04);
  filter: brightness(0.94) saturate(1);
}
.atmosphere__shot--main {
  grid-column: span 2;
  grid-row: span 2;
}
.atmosphere__shot--wide { grid-column: span 2; }
.atmosphere__shot figcaption {
  position: absolute;
  left: 12px; bottom: 12px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  background: rgba(14, 12, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

/* FAQ */
.faq-section {
  position: relative;
  padding: clamp(40px, 4.5vw, 56px) 0;
  background: var(--surface-2);
}

.faq-section .container {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.15fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.faq-section .section-head {
  margin-bottom: 0;
}
.faq-section::before {
  content: '';
  position: absolute;
  left: 10%; right: 10%; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}
.faq-section .section-label { color: var(--accent-light); }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  background: rgba(20, 18, 15, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: border-color var(--transition);
}
.faq__item:hover { border-color: rgba(255, 255, 255, 0.12); }
.faq__item--open {
  border-color: rgba(107, 125, 98, 0.28);
  background: rgba(34, 28, 22, 0.55);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  color: var(--text);
  transition: color var(--transition);
}
.faq__question:hover { color: var(--accent-light); }
.faq__icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  position: relative;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  border-radius: 1px;
  transition: opacity var(--transition), background var(--transition);
}
.faq__icon::before { top: 8px; left: 1px; width: 16px; height: 2px; }
.faq__icon::after { top: 1px; left: 8px; width: 2px; height: 16px; }
.faq__item--open .faq__icon::after { opacity: 0; }
.faq__item--open .faq__icon::before { background: var(--accent); }
.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq__item--open .faq__answer { grid-template-rows: 1fr; }
.faq__answer > p {
  overflow: hidden;
  padding: 0 22px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}
.faq__item--open .faq__answer > p { padding: 0 22px 18px; }

/* CTA */
.cta {
  position: relative;
  padding: clamp(48px, 5vw, 68px) 0;
  color: #fff;
  overflow: hidden;
  margin-bottom: 0;
}
.cta::before {
  content: '';
  position: absolute;
  left: 10%; right: 10%; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  z-index: 2;
}
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.cta__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(107, 125, 98, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(107, 125, 98, 0.1), transparent 50%),
    linear-gradient(135deg, rgba(14, 12, 10, 0.94) 0%, rgba(18, 14, 11, 0.88) 50%, rgba(14, 12, 10, 0.92) 100%);
}
.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.cta__info {
  padding-top: 8px;
}

.cta__info .section-label {
  margin-bottom: 10px;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta__text {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(234, 230, 224, 0.72);
  margin-bottom: 20px;
  max-width: 420px;
}

.cta__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.cta__perks li {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(234, 230, 224, 0.75);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.cta__panel-head {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.cta__panel-sub {
  font-size: 13px;
  color: rgba(234, 230, 224, 0.5);
}
.cta__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.cta__channel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  transition: background var(--transition), border-color var(--transition), transform 0.15s ease;
}
.cta__channel:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}
.cta__channel--wa:hover {
  border-color: rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.08);
}
.cta__channel--tg:hover {
  border-color: rgba(42, 171, 238, 0.35);
  background: rgba(42, 171, 238, 0.08);
}
.cta__channel-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}
.cta__meta {
  font-size: 13px;
  color: rgba(234, 230, 224, 0.45);
}
.cta__panel {
  position: relative;
  background: rgba(18, 16, 13, 0.82);
  border: 1px solid rgba(107, 125, 98, 0.25);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.cta__panel::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107, 125, 98, 0.25), transparent);
}
.cta-form { display: flex; flex-direction: column; gap: 14px; }
.cta-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form__group { display: flex; flex-direction: column; gap: 6px; }
.cta-form__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(138, 155, 130, 0.75);
}
.cta-form__input {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  transition: border-color var(--transition), background var(--transition);
}
.cta-form__input::placeholder { color: rgba(234, 230, 224, 0.3); }
.cta-form__input:focus {
  outline: none;
  border-color: rgba(107, 125, 98, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.cta-form__textarea { resize: vertical; min-height: 64px; }
.cta-form--hidden { display: none; }
.cta-form__success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  text-align: center;
}
.cta-form__success-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--accent-light);
}

/* Footer */
.footer {
  padding: 40px 0 28px;
  background: var(--dark);
  color: rgba(234, 230, 224, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer__brand { grid-column: 1; }
.footer__logo { font-size: 15px; font-weight: 600; color: rgba(234, 230, 224, 0.85); }
.footer__tagline {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(234, 230, 224, 0.45);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  grid-column: 2;
}

.footer__nav a {
  font-size: 13px;
  color: rgba(234, 230, 224, 0.55);
  transition: color var(--transition);
}

.footer__nav a:hover { color: var(--accent-light); }

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

.footer__contact a {
  font-size: 13px;
  color: rgba(234, 230, 224, 0.65);
  transition: color var(--transition);
}

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

.footer__copy {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: rgba(234, 230, 224, 0.35);
}

/* Scroll top */
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: rgba(30, 26, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text);
  box-shadow: var(--shadow-md);
  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: var(--accent); color: #fff; border-color: var(--accent); }

/* Responsive */
@media (max-width: 1024px) {
  .included__editorial { grid-template-columns: 1fr; gap: 36px; }
  .included__visual { max-height: 380px; }
  .formats { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .format-card--featured { transform: none; }
  .atmosphere__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .atmosphere__shot--main { grid-column: span 2; grid-row: span 1; }
  .atmosphere__shot--wide { grid-column: span 2; }
  .atmosphere__shot { min-height: 200px; }
  .cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-section .container { grid-template-columns: 1fr; gap: 28px; }
  .faq-section .section-head { margin-bottom: 0; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .nav {
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 85vw);
    height: 100dvh;
    background: rgba(18, 16, 14, 0.96);
    backdrop-filter: blur(20px);
    padding: calc(var(--header-h) + 24px) 28px 28px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 105;
    box-shadow: -4px 0 24px rgba(0,0,0,0.3);
  }
  .nav--open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav__link {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--border);
    color: rgba(234, 230, 224, 0.75) !important;
  }
  .nav__link::after { display: none; }
  .nav__cta-mobile {
    display: inline-flex;
    margin-top: 20px;
  }
  .header__cta { display: none; }
  .burger { display: flex; }
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    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: 48px 0 24px; }
  .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: 16px 18px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hero__fact:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .hero__fact:nth-last-child(-n+2) { border-bottom: none; }
  .hero__fact-icon-wrap { width: 38px; height: 38px; }
  .hero__fact-value { font-size: 15px; }

  .included { padding-top: 36px; padding-bottom: 28px; }
  .included__title { max-width: none; font-size: 1.5rem; }
  .included__steps { max-width: none; }
  .included__visual {
    max-height: none;
    aspect-ratio: 16 / 9;
    gap: 6px;
  }
  .included__facts { gap: 4px 8px; font-size: 10px; letter-spacing: 0.08em; }
  .atmosphere__grid { grid-template-columns: 1fr; }
  .atmosphere__shot--main, .atmosphere__shot--wide { grid-column: span 1; }
  .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__facts-list { grid-template-columns: 1fr; }
  .hero__fact {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hero__fact:last-child { border-bottom: none; }
  .hero__title { font-size: 1.75rem; }
  .hero__cta-row { flex-direction: column; align-items: stretch; }
  .hero__cta-row .btn { width: 100%; justify-content: center; }
  .hero-booking__fields { grid-template-columns: 1fr; }
  .hero-booking__field--wide, .hero-booking__submit { grid-column: span 1; }
  .format-card { padding: 24px 20px; }
  .format-card__bottom { flex-direction: column; align-items: stretch; }
  .format-card__bottom .btn { width: 100%; justify-content: center; }
  .cta__panel { padding: 22px 18px; }
  .cta__channels { flex-direction: column; }
  .scroll-top { bottom: 16px; right: 16px; }
  .included__editorial { gap: 28px; }
  .included__title { font-size: 1.35rem; }
  .included__step { padding: 14px 0; grid-template-columns: 32px 1fr; gap: 10px; }
  .included__visual { aspect-ratio: 4 / 3; }
}