/* ============================================================
   Путь к Себе — Ретрит в Турцию
   Soft эзотерика × Premium
   ============================================================ */

:root {
  --cream:           #fbf4ea;
  --cream-2:         #f5ead9;
  --cream-3:         #efe0c8;
  --deep:            #2d1a0d;
  --deep-2:          #3b2314;
  --deep-3:          #1a0f08;
  --warm:            #5a3d2a;
  --muted:           #7a6452;
  --peach:           #e8b48a;
  --peach-light:     #f3d2b3;
  --gold:            #c4975a;
  --gold-light:      #d4a976;
  --gold-deep:       #a67a3f;
  --burgundy:        #8b3a2f;
  --border:          rgba(45, 26, 13, .08);
  --border-light:    rgba(251, 244, 234, .15);
  --shadow-soft:     0 4px 20px rgba(45, 26, 13, .06);
  --shadow-med:      0 10px 40px rgba(45, 26, 13, .10);
  --shadow-premium:  0 20px 60px rgba(139, 58, 47, .14);
  --shadow-gold:     0 12px 40px rgba(196, 151, 90, .35);
  --grad-gold:       linear-gradient(135deg, #c4975a 0%, #a67a3f 50%, #7d5a2e 100%);
  --grad-gold-rev:   linear-gradient(135deg, #7d5a2e 0%, #a67a3f 50%, #c4975a 100%);
  --grad-gold-light: linear-gradient(135deg, #e8c896 0%, #c4975a 50%, #a67a3f 100%);
  --grad-peach:      linear-gradient(180deg, #fbf4ea 0%, #f5ead9 100%);
  --grad-deep:       linear-gradient(180deg, #2d1a0d 0%, #1a0f08 100%);
  --radius:          20px;
  --radius-sm:       12px;
  --radius-lg:       32px;
  --ease:            cubic-bezier(.4, 0, .2, 1);
  --ease-out:        cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--gold); color: #fff; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--deep);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .2s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* --------------- CONTAINER --------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 880px; }

@media (min-width: 768px) { .container { padding: 0 48px; } }

/* --------------- BUTTONS --------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: all .35s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn--gold {
  background: var(--grad-gold);
  color: #fff;
  box-shadow: var(--shadow-gold);
  text-shadow: 0 1px 2px rgba(45, 20, 5, .35);
  font-weight: 600;
}
.btn--gold::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-gold-rev);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.btn--gold > * { position: relative; z-index: 1; }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(196, 151, 90, .5); }
.btn--gold:hover::before { opacity: 1; }
.btn--gold:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--deep);
  border: 1.5px solid var(--deep);
}
.btn--ghost:hover {
  background: var(--deep);
  color: var(--cream);
}

.section--deep .btn--ghost {
  color: var(--cream);
  border-color: rgba(251, 244, 234, .5);
}
.section--deep .btn--ghost:hover {
  background: var(--cream);
  color: var(--deep);
}

.btn--lg  { padding: 16px 32px; font-size: 1rem; }
.btn--xl  { padding: 20px 44px; font-size: 1.0625rem; }

/* --------------- NAV --------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all .4s var(--ease);
  background: transparent;
}
.nav--scrolled {
  background: rgba(251, 244, 234, .92);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  max-width: 1240px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
@media (min-width: 768px) { .nav__inner { padding: 0 48px; } }

.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem; font-weight: 600;
  color: var(--deep);
  letter-spacing: .01em;
}
.nav__mark {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-gold);
  color: #fff;
  border-radius: 50%;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
}
.nav:not(.nav--scrolled) .nav__brand { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.25); }

.nav__links {
  display: none;
  gap: 28px;
  align-items: center;
}
@media (min-width: 960px) { .nav__links { display: flex; } }

.nav__links > a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--deep);
  opacity: .8;
  transition: opacity .2s var(--ease);
}
.nav:not(.nav--scrolled) .nav__links > a {
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}
.nav__links > a:hover { opacity: 1; }
.nav__cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--grad-gold);
  color: #fff !important;
  opacity: 1 !important;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  text-shadow: 0 1px 2px rgba(45, 20, 5, .4) !important;
}

.nav__burger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 8px;
}
@media (min-width: 960px) { .nav__burger { display: none; } }
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--deep);
  transition: all .3s var(--ease);
}
.nav:not(.nav--scrolled) .nav__burger span { background: #fff; }
.nav--open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__burger span:nth-child(2) { opacity: 0; }
.nav--open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  flex-direction: column; gap: 8px;
  padding: 24px;
  background: var(--cream);
  box-shadow: 0 20px 40px rgba(45, 26, 13, .1);
}
.nav__mobile > a {
  padding: 14px 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.nav__mobile > a:last-child { border: none; margin-top: 12px; text-align: center; }
.nav--open .nav__mobile { display: flex; }

/* --------------- HERO --------------- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: slowZoom 20s var(--ease) both;
}
.hero__gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 40%, rgba(0,0,0,.5) 70%, rgba(0,0,0,.8) 100%),
    linear-gradient(90deg, rgba(26, 15, 8, .55), rgba(26, 15, 8, .2) 55%, transparent 80%);
}
@keyframes slowZoom { from { transform: scale(1.05); } to { transform: scale(1.0); } }

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%; max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  color: #fff;
  text-align: center;
  animation: fadeUp 1.2s var(--ease-out) both;
}
.hero__content .hero__title,
.hero__content .hero__sub { margin-left: auto; margin-right: auto; }
.hero__content .hero__cta { justify-content: center; }
.hero__content .hero__meta {
  justify-content: center;
  margin-left: auto; margin-right: auto;
}
@media (min-width: 768px) {
  .hero__content { padding: 0 48px; }
  .hero__content .hero__title { max-width: 16ch; }
}

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

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(26, 15, 8, .45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 215, 156, .28);
  font-size: .8125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
  color: #ffe8c4;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.02em;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  margin-bottom: 28px;
  max-width: 20ch;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, .55),
    0 8px 24px rgba(0, 0, 0, .45);
}
.hero__title-line { display: block; }
.hero__title-accent {
  display: block;
  font-style: italic;
  color: #ffd99c;
  font-weight: 600;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, .33),
    0 8px 24px rgba(0, 0, 0, .27);
  letter-spacing: -.005em;
}

.hero__sub {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  max-width: 30rem;
  margin-bottom: 40px;
  opacity: .95;
  font-weight: 400;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, .55),
    0 4px 16px rgba(0, 0, 0, .4);
}

.hero__cta {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-bottom: 48px;
}
.hero__cta .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, .06);
}
.hero__cta .btn--ghost:hover {
  background: rgba(255, 255, 255, .95);
  color: var(--deep);
  border-color: transparent;
}

.hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-size: .875rem;
  max-width: 32rem;
}
.hero__meta > div:not(.hero__meta-sep) {
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1;
  min-width: 60px;
}
.hero__meta strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #ffd99c;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}
.hero__meta-sep {
  width: 1px; height: 32px;
  background: rgba(255, 255, 255, .2);
}
@media (max-width: 560px) {
  .hero__meta-sep { display: none; }
}

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.125rem;
  border: 1px solid rgba(255, 255, 255, .25);
  animation: bounce 2.4s var(--ease) infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* --------------- SECTIONS --------------- */
.section {
  padding: 80px 0;
  position: relative;
}
@media (min-width: 768px) { .section { padding: 120px 0; } }

.section--cream { background: var(--cream); }
.section--deep {
  background: var(--grad-deep);
  color: var(--cream);
  position: relative;
}
.section--deep::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(196, 151, 90, .12), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(139, 58, 47, .1), transparent 50%);
  pointer-events: none;
}
.section--deep > .container { position: relative; z-index: 1; }

/* --------------- PILLAR HEAD --------------- */
.pillar-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
@media (min-width: 768px) { .pillar-head { margin-bottom: 72px; } }

.pillar-head__eyebrow {
  display: inline-block;
  padding: 6px 16px;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  background: rgba(196, 151, 90, .1);
  border-radius: 999px;
  margin-bottom: 20px;
}
.pillar-head--light .pillar-head__eyebrow {
  color: var(--gold-light);
  background: rgba(212, 169, 118, .15);
}

.pillar-head__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.015em;
  margin-bottom: 20px;
}
.pillar-head--light .pillar-head__title { color: var(--cream); }

.pillar-head__desc {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 44rem;
  margin: 0 auto;
}
.pillar-head--light .pillar-head__desc { color: rgba(251, 244, 234, .7); }

/* --------------- FOR-WHOM CARDS --------------- */
.forwhom__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .forwhom__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .forwhom__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.forwhom__card {
  position: relative;
  padding: 36px 28px 32px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: all .4s var(--ease);
}
.forwhom__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: transparent;
}
.forwhom__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 600;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  line-height: 1;
  letter-spacing: .02em;
  font-variant-numeric: normal;
}
.forwhom__card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--warm);
}

/* --------------- PILLARS --------------- */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .pillars { grid-template-columns: repeat(3, 1fr); } }

.pillar {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-med);
  transition: all .5s var(--ease);
  display: flex; flex-direction: column;
}
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-premium); }

.pillar__img {
  aspect-ratio: 4 / 3;
  background-color: var(--cream-2);
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform .8s var(--ease-out);
}
.pillar:hover .pillar__img { transform: scale(1.04); }

.pillar__body { padding: 28px 28px 32px; color: var(--deep); }
.pillar__kicker {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
  font-weight: 600;
}
.pillar__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -.005em;
}
.pillar__body p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--warm);
}

/* --------------- PROGRAM --------------- */
.program {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.prog-day {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .35s var(--ease);
  box-shadow: var(--shadow-soft);
}
.prog-day:hover { border-color: var(--gold-light); }
.prog-day[open] {
  box-shadow: var(--shadow-med);
  border-color: transparent;
}
.prog-day summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 24px 24px 28px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .3s var(--ease);
}
.prog-day summary::-webkit-details-marker { display: none; }
.prog-day:hover summary { background: var(--cream); }

.prog-day__day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--grad-gold);
  color: #fff;
  white-space: nowrap;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.prog-day__title {
  flex: 1;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--deep);
}
@media (min-width: 640px) { .prog-day__title { font-size: 1.1875rem; } }

.prog-day__chevron {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold-deep);
  font-size: 1.125rem;
  font-weight: 300;
  transition: all .35s var(--ease);
  flex-shrink: 0;
}
.prog-day[open] .prog-day__chevron {
  transform: rotate(45deg);
  background: var(--gold);
  color: #fff;
}

.prog-day__body {
  padding: 0 28px 28px;
  color: var(--warm);
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 4px;
}
.prog-day__body p { margin-bottom: 12px; line-height: 1.65; }
.prog-day__body ul { list-style: none; }
.prog-day__body li {
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.55;
}
.prog-day__body li::before {
  content: '';
  position: absolute;
  left: 0; top: 15px;
  width: 12px; height: 1px;
  background: var(--gold);
}
.prog-day__body em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--burgundy);
  font-weight: 500;
}

/* --------------- INCLUDED --------------- */
.incl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) { .incl { grid-template-columns: 1fr 1fr; gap: 32px; } }

.incl__col {
  padding: 40px 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.incl__col::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.incl__col--yes::before { background: var(--grad-gold); }
.incl__col--no::before  { background: linear-gradient(90deg, #c89c8f, #8b3a2f); }

.incl__head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.incl__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 600;
  flex-shrink: 0;
}
.incl__col--yes .incl__icon {
  background: var(--grad-gold);
  color: #fff;
}
.incl__col--no .incl__icon {
  background: rgba(139, 58, 47, .1);
  color: var(--burgundy);
}
.incl__head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.incl__col ul { list-style: none; }
.incl__col li {
  padding: 12px 0 12px 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--warm);
}
.incl__col li:last-child { border: none; }
.incl__col--yes li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 12px;
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  font-weight: 600;
  font-size: .875rem;
}
.incl__col--no li::before {
  content: '';
  position: absolute;
  left: 2px; top: 20px;
  width: 14px; height: 1.5px;
  background: var(--burgundy);
  opacity: .5;
}

/* --------------- GALLERY --------------- */
.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (min-width: 960px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }
  .gallery__item--lg { grid-column: span 2; grid-row: span 2; }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: var(--deep-2);
}
@media (min-width: 960px) { .gallery__item { aspect-ratio: auto; height: 100%; } }

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: '↗';
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  color: var(--deep);
  border-radius: 50%;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: all .35s var(--ease);
}
.gallery__item:hover::after { opacity: 1; transform: translateY(0); }

/* --------------- OPTIONS --------------- */
.opts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 640px) { .opts { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .opts { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.opt {
  padding: 28px 24px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all .35s var(--ease);
  text-align: left;
}
.opt:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-med);
  border-color: var(--gold-light);
}
.opt__ico {
  width: 72px; height: 72px;
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .5s var(--ease);
}
.opt__ico img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.opt:hover .opt__ico { transform: translateY(-4px) scale(1.05); }
.opt__emoji {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
  filter: saturate(110%);
}
.opt h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--deep);
}
.opt p {
  font-size: .9375rem;
  line-height: 1.55;
  color: var(--muted);
}

/* --------------- PRICE BLOCK --------------- */
.section--price {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(196, 151, 90, .18), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(232, 180, 138, .2), transparent 55%),
    var(--cream-2);
  padding: 80px 0;
}
@media (min-width: 768px) { .section--price { padding: 120px 0; } }

.price {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 32px 48px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.price::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--grad-gold);
}
.price::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 151, 90, .12), transparent 70%);
  pointer-events: none;
}

.price__eyebrow {
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
  font-weight: 500;
}
.price__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 24px;
  font-style: italic;
}
.price__num {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
  position: relative;
}
.price__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 600;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.03em;
}
.price__cur {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  color: var(--gold);
}
.price__sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 32px;
  font-style: italic;
}
.price__note {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 20px;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.price__trust {
  display: flex; justify-content: center; gap: 20px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.price__trust > div {
  display: flex; flex-direction: column; gap: 4px;
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.2;
}
.price__trust strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--deep);
}

/* --------------- FAQ --------------- */
.faq { display: grid; gap: 10px; max-width: 780px; margin: 0 auto; }
.faq__item {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-soft);
}
.faq__item[open] { border-color: var(--gold-light); }

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--deep);
  transition: background .25s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item:hover summary { background: var(--cream); }

.faq__item summary span {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold-deep);
  font-size: 1rem;
  font-weight: 400;
  transition: all .3s var(--ease);
  flex-shrink: 0;
}
.faq__item[open] summary span {
  background: var(--grad-gold);
  color: #fff;
  transform: rotate(45deg);
}

.faq__body {
  padding: 0 24px 20px;
  color: var(--warm);
  line-height: 1.65;
  font-size: .9375rem;
}
.faq__body a { color: var(--burgundy); text-decoration: underline; text-underline-offset: 3px; }

/* --------------- CONTACT --------------- */
.contact {
  display: flex; flex-direction: column; gap: 16px;
  align-items: center;
  margin-top: 40px;
}
@media (min-width: 640px) {
  .contact { flex-direction: row; justify-content: center; }
}

/* --------------- FOOTER --------------- */
.foot {
  background: var(--deep-3);
  color: rgba(251, 244, 234, .6);
  padding: 64px 0 32px;
  font-size: .875rem;
  line-height: 1.6;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(251, 244, 234, .08);
}
@media (min-width: 640px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .foot__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.foot__mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}
.foot__brand p { max-width: 28rem; }

.foot h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: .01em;
}
.foot__col a {
  display: block;
  padding: 4px 0;
  color: rgba(251, 244, 234, .6);
}
.foot__col a:hover { color: var(--gold-light); }
.foot__col p a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }

.placeholder {
  color: var(--gold);
  font-style: italic;
  opacity: .7;
}

.foot__copy {
  padding-top: 28px;
  text-align: center;
  color: rgba(251, 244, 234, .4);
  font-size: .8125rem;
}

/* --------------- FLOATING BOT BUTTON --------------- */
.fab {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 900;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px 14px 18px;
  background: var(--grad-gold);
  color: #fff;
  border-radius: 999px;
  font-size: .9375rem;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  transition: all .35s var(--ease);
}
.fab:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(196, 151, 90, .55); }
.fab__ico { font-size: 1.125rem; }
@media (max-width: 640px) {
  .fab__txt { display: none; }
  .fab { padding: 14px; }
}

/* --------------- LIGHTBOX --------------- */
.lightbox {
  position: fixed; inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(26, 15, 8, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px;
}
.lightbox--open { display: flex; animation: lightboxIn .3s var(--ease-out); }
@keyframes lightboxIn {
  from { opacity: 0; } to { opacity: 1; }
}
.lightbox img {
  max-width: 100%;
  max-height: 92vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .6);
  animation: lightboxZoom .4s var(--ease-out);
}
@keyframes lightboxZoom {
  from { transform: scale(.94); opacity: 0; } to { transform: scale(1); opacity: 1; }
}
.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .2);
  transition: all .25s var(--ease);
}
.lightbox__close:hover { background: rgba(255, 255, 255, .2); transform: rotate(90deg); }

/* --------------- SCROLL REVEAL --------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__media img { animation: none; }
  .hero__dot, .hero__scroll { animation: none; }
}
