/* ===================================================
   DAG travel GORI — Landing Page Styles
   Brandbook: Cormorant Garamond + Mulish
   Colors: #B85C38 #FAF7F2 #1C1714 #C4A265
   =================================================== */

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

:root {
  --clay:    #B85C38;
  --clay-d:  #9A4A2C;
  --clay-l:  #D4845A;
  --stone:   #F5ECD7;
  --cream:   #FAF7F2;
  --dark:    #1C1714;
  --gold:    #C4A265;
  --muted:   #8A9BAE;
  --blue:    #2C4A6E;
  --olive:   #6B7C5C;
  --r: 8px;
  --shadow: 0 2px 20px rgba(28,23,20,0.08);
  --shadow-h: 0 8px 40px rgba(28,23,20,0.14);
  --trans: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Mulish', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
h1 { font-size: clamp(36px, 5vw, 68px); font-weight: 300; }
h2 { font-size: clamp(30px, 3.5vw, 46px); font-weight: 400; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 500; }
h4 { font-size: 20px; font-weight: 500; }

.section { padding: 96px 0; }
.section-label {
  font-family: 'Mulish', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 16px;
}
.section-title { margin-bottom: 48px; }

/* ── DIVIDER LINE ── */
.section-title::after {
  content: ''; display: block;
  width: 50px; height: 2px; margin-top: 16px;
  background: linear-gradient(90deg, var(--clay), var(--gold));
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Mulish', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 15px 32px; border-radius: var(--r);
  border: 1.5px solid transparent;
  cursor: pointer; transition: all var(--trans);
  white-space: nowrap;
}
.btn--primary {
  background: var(--clay); color: var(--cream);
  border-color: var(--clay);
}
.btn--primary:hover { background: var(--clay-d); border-color: var(--clay-d); }
.btn--outline {
  background: transparent; color: var(--clay);
  border-color: var(--clay);
}
.btn--outline:hover { background: rgba(184,92,56,0.06); }
.btn--ghost {
  background: rgba(250,247,242,0.12); color: var(--cream);
  border-color: rgba(250,247,242,0.4); backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(250,247,242,0.22); }
.btn--sm { padding: 10px 22px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }

/* ── LOGO ── */
.logo { display: flex; align-items: center; gap: 10px; }
.logo__text {
  font-family: 'Mulish', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--dark);
}
.logo__text em {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal; font-weight: 600;
  color: var(--clay); font-size: 17px;
}

/* ── HEADER ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0;
  transition: background var(--trans), box-shadow var(--trans);
}
.header.scrolled {
  background: rgba(250,247,242,0.96);
  box-shadow: 0 1px 20px rgba(28,23,20,0.1);
  backdrop-filter: blur(8px);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-size: 14px; font-weight: 600; color: var(--dark);
  transition: color var(--trans);
}
.nav a:hover { color: var(--clay); }
.header.hero-mode .logo__text, .header.hero-mode .nav a { color: var(--cream); }
.header.hero-mode .logo__text em { color: var(--gold); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); transition: all var(--trans);
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #2C1A0E 0%, #4A2C1A 30%, #2C3E50 100%);
}
.hero__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.7;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(28,23,20,0.5) 0%,
    rgba(28,23,20,0.2) 50%,
    rgba(28,23,20,0.6) 100%);
}
.hero__content {
  position: relative; z-index: 1;
  padding: 120px 0 80px;
  max-width: 780px;
}
.hero__label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.hero__title {
  color: var(--cream); margin-bottom: 24px;
  font-weight: 300;
}
.hero__title em {
  font-style: italic; color: var(--gold); font-weight: 400;
}
.hero__sub {
  color: rgba(250,247,242,0.8); font-size: 18px;
  margin-bottom: 40px; max-width: 560px;
}
.hero__btns { display: flex; gap: 16px; margin-bottom: 64px; flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  border-top: 1px solid rgba(250,247,242,0.2);
  padding-top: 32px;
}
.hero__stat span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 500; color: var(--cream);
}
.hero__stat p {
  font-size: 13px; color: rgba(250,247,242,0.6);
  font-weight: 300;
}
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 1;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ── VS ── */
.vs { background: var(--stone); }
.vs__grid {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  gap: 24px; align-items: start; margin-bottom: 48px;
}
.vs__col h3 {
  font-size: 18px; font-weight: 700;
  font-family: 'Mulish',sans-serif;
  margin-bottom: 20px;
}
.vs__col--bad h3 { color: var(--muted); }
.vs__col--good h3 { color: var(--clay); }
.vs__col ul li {
  padding: 10px 0; border-bottom: 1px solid rgba(28,23,20,0.08);
  font-size: 15px;
}
.vs__col--bad li { color: var(--muted); text-decoration: line-through; }
.vs__col--good li { color: var(--dark); }
.vs__col--good li::before { content: '✓ '; color: var(--olive); font-weight: 700; }
.vs__divider {
  display: flex; align-items: center; justify-content: center;
  padding-top: 52px;
}
.vs__vs {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--clay); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.vs__quote {
  border-left: 3px solid var(--clay);
  padding: 20px 24px; background: var(--cream);
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic; color: var(--dark); font-size: 16px;
}
.vs__quote cite {
  display: block; font-style: normal;
  font-size: 14px; color: var(--muted); margin-top: 12px;
}

/* ── ABOUT ── */
.about { background: var(--cream); }
.about__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; margin-bottom: 64px;
}
.about__photo {
  border-radius: var(--r); overflow: hidden;
  background: linear-gradient(135deg,#4a3728,#8B5E3C);
  aspect-ratio: 4/5; position: relative;
}
.about__photo img { width:100%; height:100%; object-fit: cover; }
.about__photo--placeholder { display: flex; align-items: flex-end; padding: 24px; }
.about__photo-caption {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(28,23,20,0.7); color: var(--cream);
  padding: 8px 16px; border-radius: 4px; font-size: 13px;
  backdrop-filter: blur(4px);
}
.about__text h2 { margin: 12px 0 24px; }
.about__text p { color: #4a3a30; margin-bottom: 16px; }
.about__nums {
  display: flex; gap: 32px; margin-top: 36px;
  padding-top: 32px; border-top: 1px solid rgba(28,23,20,0.1);
}
.about__num span {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 500; color: var(--clay);
}
.about__num p { font-size: 13px; color: var(--muted); }
.about__quote-wrap { background: var(--stone); padding: 64px 24px; text-align: center; }
.about__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 36px); font-weight: 400; font-style: italic;
  color: var(--dark); max-width: 800px; margin: 0 auto;
  border: none; padding: 0;
}

/* ── PRICES ── */
.prices { background: var(--cream); }
.prices__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 40px;
}
.price-card {
  background: var(--cream); border: 1px solid rgba(184,92,56,0.15);
  border-radius: 12px; padding: 32px;
  box-shadow: var(--shadow); transition: all var(--trans);
  position: relative;
}
.price-card:hover { box-shadow: var(--shadow-h); transform: translateY(-3px); }
.price-card--featured {
  border-color: var(--clay); background: var(--dark);
}
.price-card--featured h3, .price-card--featured p,
.price-card--featured .price-card__desc, .price-card--featured li { color: var(--cream); }
.price-card--featured .price-card__tag { color: var(--gold); }
.price-card--featured .price-card__price { color: var(--cream); }
.price-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--clay); color: var(--cream);
  padding: 4px 18px; border-radius: 20px;
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.price-card__tag { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); margin-bottom: 8px; }
.price-card h3 { font-family: 'Mulish',sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.price-card h3 span { font-weight: 400; font-size: 16px; color: var(--muted); }
.price-card--featured h3 span { color: rgba(250,247,242,0.5); }
.price-card__desc { font-size: 14px; color: #6a5a50; margin-bottom: 20px; }
.price-card__includes { margin-bottom: 28px; }
.price-card__includes li {
  font-size: 14px; padding: 6px 0;
  border-bottom: 1px solid rgba(28,23,20,0.07);
  color: #4a3a30;
}
.price-card--featured .price-card__includes li { color: rgba(250,247,242,0.8); border-color: rgba(250,247,242,0.1); }
.price-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 500; color: var(--clay);
  margin-bottom: 20px;
}
.price-card__price span { font-size: 18px; font-weight: 300; }
.price-card--featured .btn--primary { background: var(--cream); color: var(--clay); }
.price-card--featured .btn--primary:hover { background: var(--stone); }
.prices__note {
  display: flex; gap: 0; background: var(--stone);
  border-radius: var(--r); overflow: hidden;
}
.prices__note-item { flex: 1; padding: 24px 28px; font-size: 14px; }
.prices__note-divider { width: 1px; background: rgba(28,23,20,0.1); }

/* ── INCLUDED ── */
.included { background: var(--stone); }
.included__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.included__col h3 { font-family: 'Mulish',sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 20px; }
.included__col li {
  padding: 10px 0; border-bottom: 1px solid rgba(28,23,20,0.08);
  font-size: 15px;
}
.included__col--no li { color: var(--muted); }

/* ── PROGRAM ── */
.program { background: var(--cream); }
.days { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.day {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 24px; padding: 28px 0;
  border-bottom: 1px solid rgba(28,23,20,0.08);
}
.day--bonus { opacity: 0.85; }
.day__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 300; color: var(--clay);
  opacity: 0.5; padding-top: 4px;
}
.day--bonus .day__num { font-size: 32px; color: var(--gold); opacity: 1; }
.day__content h4 { margin-bottom: 8px; font-size: 18px; }
.day__content p { font-size: 15px; color: #4a3a30; }
.program__note {
  text-align: center; font-size: 15px; color: var(--muted);
  font-style: italic; padding: 24px; background: var(--stone);
  border-radius: var(--r);
}

/* ── EXCLUSIVE ── */
.exclusive { position: relative; padding: 96px 0; overflow: hidden; }
.exclusive__bg {
  position: absolute; inset: 0;
  background: var(--dark);
}
.exclusive .container { position: relative; z-index: 1; }
.excl-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 48px; }
.excl-card { border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.04); border: 1px solid rgba(250,247,242,0.1); }
.excl-card__img { height: 220px; overflow: hidden; position: relative; }
.excl-card__img img { width:100%; height:100%; object-fit:cover; }
.excl-card h4 {
  font-family: 'Cormorant Garamond',serif; font-size: 22px;
  color: var(--cream); padding: 20px 20px 8px;
}
.excl-card p { font-size: 14px; color: rgba(250,247,242,0.65); padding: 0 20px 20px; }
.excl-quote {
  font-family: 'Cormorant Garamond',serif;
  font-size: clamp(18px,2vw,24px); font-style: italic;
  color: rgba(250,247,242,0.75); text-align: center;
  max-width: 700px; margin: 0 auto; padding: 0;
  border: none;
}

/* ── HOME SECTION ── */
.home-section { background: var(--stone); }
.home-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.home-section__text h2 { margin: 12px 0 20px; }
.home-section__text p { color: #4a3a30; margin-bottom: 14px; }
.home-section__facts { margin-top: 24px; }
.home-section__facts li {
  padding: 8px 0; border-bottom: 1px solid rgba(28,23,20,0.08);
  font-size: 15px;
}
.home-section__facts li::before { content: '— '; color: var(--clay); font-weight: 700; }
.home-section__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.home-photo { border-radius: var(--r); overflow: hidden; background: linear-gradient(135deg,#4a3728,#8B5E3C); }
.home-photo--big { grid-column: 1/-1; height: 260px; }
.home-photo--small { height: 180px; }
.home-photo img { width:100%; height:100%; object-fit: cover; }
.photo-placeholder { background: linear-gradient(135deg, #4a3728 0%, #8B5E3C 100%); }

/* ── REVIEWS ── */
.reviews { background: var(--cream); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-bottom: 40px;
}
.review-card {
  background: var(--stone); border-radius: 12px; padding: 28px;
  border: 1px solid rgba(184,92,56,0.1); transition: all var(--trans);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.review-card--featured { background: var(--dark); }
.review-card--featured p, .review-card--featured .review-card__author { color: rgba(250,247,242,0.85); }
.review-card--featured .review-card__stars { color: var(--gold); }
.review-card__stars { color: var(--clay); font-size: 16px; margin-bottom: 14px; }
.review-card p { font-size: 15px; color: #4a3a30; font-style: italic; margin-bottom: 16px; }
.review-card__author { font-size: 13px; font-weight: 600; color: var(--muted); }
.reviews__more { text-align: center; }

/* ── QUIZ ── */
.quiz { position: relative; padding: 96px 0; overflow: hidden; }
.quiz__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #6B3021 0%, #3D1F10 50%, #2C3E50 100%);
}
.quiz .container { position: relative; z-index: 1; }
.quiz__sub { margin-bottom: 40px; }
.quiz__box {
  background: rgba(250,247,242,0.95); border-radius: 16px;
  padding: 48px; max-width: 640px; margin: 0 auto;
  box-shadow: 0 20px 60px rgba(28,23,20,0.3);
}
.quiz__step { display: none; }
.quiz__step.active { display: block; }
.quiz__progress {
  height: 4px; background: rgba(28,23,20,0.1);
  border-radius: 2px; margin-bottom: 24px; overflow: hidden;
}
.quiz__bar { height: 100%; background: var(--clay); border-radius: 2px; transition: width 0.4s; }
.quiz__counter { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); margin-bottom: 12px; }
.quiz__step h3 { font-size: 22px; margin-bottom: 28px; }
.quiz__options { display: flex; flex-direction: column; gap: 10px; }
.quiz__opt {
  background: var(--stone); border: 1.5px solid rgba(184,92,56,0.15);
  border-radius: var(--r); padding: 14px 20px;
  text-align: left; font-size: 15px; font-family: 'Mulish',sans-serif;
  cursor: pointer; transition: all var(--trans);
}
.quiz__opt:hover { border-color: var(--clay); background: rgba(184,92,56,0.06); }
.quiz__opt.selected { border-color: var(--clay); background: rgba(184,92,56,0.1); font-weight: 600; }
/* Result */
.quiz__result { text-align: center; }
.quiz__result-icon { font-size: 52px; margin-bottom: 16px; }
.quiz__result h3 { margin-bottom: 12px; }
.quiz__result-desc { color: #4a3a30; margin-bottom: 28px; }
.quiz__result-price { background: var(--stone); border-radius: var(--r); padding: 24px; margin-bottom: 28px; }
.quiz__discount { font-size: 14px; font-weight: 700; color: var(--olive); margin-bottom: 12px; }
.quiz__price-old { font-size: 18px; color: var(--muted); text-decoration: line-through; margin-right: 12px; }
.quiz__price-new { font-family: 'Cormorant Garamond',serif; font-size: 36px; font-weight: 500; color: var(--clay); }
.quiz__result-btns { display: flex; flex-direction: column; gap: 12px; }
.quiz__restart { background: none; border: 1.5px solid rgba(28,23,20,0.2); }

/* ── FAQ ── */
.faq { background: var(--stone); }
.faq__list { max-width: 760px; }
.faq__item { border-bottom: 1px solid rgba(28,23,20,0.1); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 0; background: none; border: none;
  font-size: 16px; font-weight: 600; font-family: 'Mulish',sans-serif;
  cursor: pointer; text-align: left; transition: color var(--trans);
}
.faq__q:hover { color: var(--clay); }
.faq__q span {
  font-size: 22px; font-weight: 300; color: var(--clay); flex-shrink: 0;
  transition: transform var(--trans);
}
.faq__item.open .faq__q span { transform: rotate(45deg); }
.faq__a {
  display: none; padding-bottom: 20px;
  font-size: 15px; color: #4a3a30; line-height: 1.65;
}
.faq__item.open .faq__a { display: block; }

/* ── CONTACT ── */
.contact { position: relative; padding: 96px 0; }
.contact__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1C1714 0%, #2C1A0E 60%, #2C3E50 100%);
}
.contact .container { position: relative; z-index: 1; }
.contact .section-title { margin-bottom: 48px; }
.contact__inner { max-width: 600px; margin: 0 auto; }
.contact-form { background: rgba(250,247,242,0.95); border-radius: 16px; padding: 40px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.field:last-child { margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 700; }
.field input, .field textarea {
  padding: 12px 16px; background: var(--stone);
  border: 1.5px solid rgba(184,92,56,0.15); border-radius: var(--r);
  font-size: 15px; font-family: 'Mulish',sans-serif;
  transition: border-color var(--trans); resize: none;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--clay);
}
.contact-form__note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 12px; }
.contact__or {
  text-align: center; margin: 28px 0; position: relative;
  display: flex; align-items: center; gap: 16px;
}
.contact__or::before, .contact__or::after {
  content: ''; flex: 1; height: 1px; background: rgba(250,247,242,0.2);
}
.contact__or span { font-size: 13px; color: rgba(250,247,242,0.5); white-space: nowrap; }
.contact__channels { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.contact__channel {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: var(--r);
  font-size: 15px; font-weight: 600; transition: all var(--trans);
}
.contact__channel--tg { background: #229ED9; color: white; }
.contact__channel--tg:hover { background: #1a8fc5; }
.contact__channel--wa { background: #25D366; color: white; }
.contact__channel--wa:hover { background: #1db956; }
.contact__channel--phone { background: rgba(250,247,242,0.1); color: var(--cream); border: 1px solid rgba(250,247,242,0.2); }
.contact__channel--phone:hover { background: rgba(250,247,242,0.18); }
.contact__info {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 14px; color: rgba(250,247,242,0.6);
}

/* ── FOOTER ── */
.footer { background: var(--dark); padding: 40px 0; }
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer .logo__text { color: var(--cream); }
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__nav a { font-size: 14px; color: rgba(250,247,242,0.5); transition: color var(--trans); }
.footer__nav a:hover { color: var(--cream); }
.footer__copy { font-size: 13px; color: rgba(250,247,242,0.3); }

/* ── FLOATING BUTTONS ── */
.float-btns {
  position: fixed; bottom: 32px; right: 24px; z-index: 90;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; transform: translateY(20px);
  transition: all 0.4s ease; pointer-events: none;
}
.float-btns.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(28,23,20,0.25);
  transition: transform var(--trans);
}
.float-btn:hover { transform: scale(1.1); }
.float-btn--tg { background: #229ED9; }
.float-btn--wa { background: #25D366; }
.float-btn--phone { background: var(--clay); }

/* ── MODAL ── */
.modal {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(28,23,20,0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity var(--trans);
}
.modal.open { opacity: 1; pointer-events: all; }
.modal__box {
  background: var(--cream); border-radius: 16px; padding: 48px;
  text-align: center; max-width: 400px; width: 90%;
  box-shadow: 0 20px 60px rgba(28,23,20,0.3);
}
.modal__icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--olive);
  color: white; font-size: 28px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.modal__box h3 { margin-bottom: 12px; }
.modal__box p { color: #4a3a30; margin-bottom: 24px; }
.modal__box a { color: var(--clay); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .prices__grid { grid-template-columns: 1fr; }
  .vs__grid { grid-template-columns: 1fr; }
  .vs__divider { display: none; }
  .about__inner { grid-template-columns: 1fr; }
  .about__photo { aspect-ratio: 16/9; }
  .home-section__inner { grid-template-columns: 1fr; }
  .included__grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .excl-grid { grid-template-columns: 1fr; }
  .prices__note { flex-direction: column; }
  .prices__note-divider { width: auto; height: 1px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 68px 0 0;
    background: var(--cream); padding: 32px 24px;
    gap: 24px; z-index: 99;
  }
  .nav.open a { font-size: 18px; }
  .burger { display: flex; }
  .hero__btns { flex-direction: column; }
  .hero__stats { gap: 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
  .quiz__box { padding: 28px 20px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .float-btns { bottom: 20px; right: 16px; }
  .about__nums { flex-wrap: wrap; gap: 20px; }
  .hero__stat span { font-size: 24px; }
}
