:root {
  --bg: #fff8ed;
  --text: #2d2118;
  --muted: #756354;
  --gold: #e69a3a;
  --gold-dark: #bf6d1f;
  --brown: #2a1c14;
  --cream: #f3dfc3;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(61, 36, 17, 0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.cursor-glow {
  position: fixed; width: 280px; height: 280px; border-radius: 50%;
  pointer-events: none; z-index: 1; opacity: .22;
  background: radial-gradient(circle, rgba(230,154,58,.75), transparent 68%);
  transform: translate(-50%, -50%); filter: blur(8px);
}
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(36, 24, 17, .72); color: var(--white);
  backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,.12);
}
.header__inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; }
.logo__mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), #ffe2a6); color: #3a2415; }
.nav { display: flex; align-items: center; gap: 28px; font-size: 15px; }
.nav a { opacity: .88; transition: .25s; }
.nav a:hover { opacity: 1; color: #ffd18a; }
.header__cta { padding: 11px 18px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; transition: .25s; }
.header__cta:hover { background: var(--white); color: var(--brown); }
.burger { display: none; border: 0; background: transparent; cursor: pointer; }
.burger span { display: block; width: 27px; height: 2px; margin: 6px 0; background: var(--white); }

.hero { min-height: 100vh; position: relative; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background: url("img/hero.png") center/cover no-repeat; transform: scale(1.02); }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(31,21,14,.90), rgba(31,21,14,.55), rgba(31,21,14,.10)), linear-gradient(0deg, rgba(0,0,0,.32), transparent 55%); }
.hero__content { position: relative; z-index: 2; max-width: 790px; padding-top: 80px; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 2.5px; font-size: 13px; font-weight: 800; margin-bottom: 16px; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; line-height: 1.08; }
h1 { font-size: clamp(44px, 7.5vw, 86px); margin-bottom: 26px; }
h2 { font-size: clamp(34px, 4.7vw, 58px); margin-bottom: 24px; }
h3 { font-size: 22px; line-height: 1.25; margin-bottom: 12px; }
.hero__lead { font-size: clamp(18px, 2vw, 22px); max-width: 680px; margin-bottom: 34px; color: rgba(255,255,255,.90); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer; font-weight: 800; transition: .25s; font-family: inherit; }
.btn--primary { color: var(--white); background: linear-gradient(135deg, var(--gold), var(--gold-dark)); box-shadow: 0 16px 34px rgba(210,118,31,.28); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(210,118,31,.34); }
.btn--glass { color: var(--white); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(14px); }
.btn--glass:hover { background: var(--white); color: var(--brown); }
.hero__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 680px; }
.hero__stats div { padding: 18px; border-radius: 22px; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(14px); }
.hero__stats strong { display: block; font-size: 30px; line-height: 1; color: #ffd18a; }
.hero__stats span { display: block; margin-top: 7px; font-size: 14px; color: rgba(255,255,255,.82); }

.section { padding: 104px 0; position: relative; }
.grid-2 { display: grid; grid-template-columns: 1fr 1.08fr; gap: 72px; align-items: start; }
.text-block p, .master__text p, .contact-info__text p, .dark__lead {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 18px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }
.title-narrow { max-width: 780px; }
.warm { background: linear-gradient(180deg, #f5e2c8, #fff2df); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 46px; }
.card, .place, .method div, .audience div { background: rgba(255,255,255,.74); border: 1px solid rgba(128,77,28,.12); border-radius: 28px; box-shadow: var(--shadow); }
.card { padding: 34px; transition: .25s; }
.card:hover, .place:hover { transform: translateY(-8px); }
.card span { display: inline-block; color: var(--gold-dark); font-weight: 900; font-size: 22px; margin-bottom: 20px; }
.card p, .place p, .feature p { color: var(--muted); }

.places { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 46px; }
.place { padding: 28px; min-height: 310px; transition: .25s; background: linear-gradient(180deg, #fff9ef, #f1d9b7); }
.place__icon { font-size: 34px; margin-bottom: 16px; }
.dark { color: var(--white); background: radial-gradient(circle at 20% 10%, rgba(230,154,58,.28), transparent 34%), linear-gradient(135deg, #21150e, #3b2619); }
.dark .dark__lead { color: rgba(255,255,255,.78); }
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.feature { padding: 25px; border-radius: 24px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13); }
.feature p { color: rgba(255,255,255,.74); }
.method-section { background: #fff8ed; }
.method { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.method div { min-height: 132px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
.method b { color: var(--gold-dark); font-size: 15px; }
.method span { font-size: 19px; font-weight: 800; }
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.audience div { padding: 24px; font-weight: 800; min-height: 94px; display: flex; align-items: center; }
.master { display: grid; grid-template-columns: .92fr 1.08fr; gap: 66px; align-items: center; }
.master__image-wrap { position: relative; }
.master__image-wrap::before { content: ""; position: absolute; inset: 26px -22px -26px 22px; border-radius: 34px; background: linear-gradient(135deg, var(--gold), #f5d4a2); z-index: -1; }
.master__image-wrap img { width: 100%; height: 580px; object-fit: cover; object-position: center; border-radius: 34px; box-shadow: var(--shadow); }
.master blockquote { margin-top: 26px; padding: 28px; border-radius: 24px; background: #fff2df; border-left: 5px solid var(--gold); font-size: 20px; color: #4a3323; }
.contact-section { color: var(--white); background: linear-gradient(135deg, #2a1a11, #7e431e); }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.contact-info__text p {
  color: rgba(255,255,255,.82);
}

.contact-panel p {
  color: #5f4a3b;
}

.price-card__hint,
.program-note {
  color: #5f4a3b !important;
}

.price-card__hint b,
.program-note b {
  color: #2d231c;
}
.form { display: grid; gap: 16px; padding: 34px; border-radius: 30px; background: rgba(255,255,255,.96); color: var(--text); box-shadow: var(--shadow); }
.form label { display: grid; gap: 7px; font-weight: 800; font-size: 14px; }
.form input, .form textarea { width: 100%; border: 1px solid #e4c7a1; border-radius: 16px; padding: 15px 16px; font: inherit; outline: none; background: #fffaf4; }
.form textarea { min-height: 118px; resize: vertical; }
.form input:focus, .form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(230,154,58,.13); }
.form__success { display: none; color: #207a3a !important; font-weight: 800; }
.footer { padding: 30px 0; background: #1c130e; color: var(--white); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer a { color: #ffd18a; }
.reveal { opacity: 0; transform: translateY(28px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .header__cta { display: none; }
  .burger { display: block; }
  .nav { position: absolute; top: 78px; left: 0; right: 0; display: none; flex-direction: column; align-items: flex-start; padding: 26px 4%; background: rgba(36,24,17,.96); }
  .nav.active { display: flex; }
  .grid-2, .master, .contact { grid-template-columns: 1fr; gap: 44px; }
  .cards, .places, .method, .audience { grid-template-columns: 1fr 1fr; }
  .master__image-wrap img { height: 470px; }
}
@media (max-width: 640px) {
  .section { padding: 74px 0; }
  .hero__stats, .cards, .places, .method, .audience, .features { grid-template-columns: 1fr; }
  .hero__content { padding-top: 100px; }
  h1 { font-size: 43px; }
  .form { padding: 24px; }
  .footer__inner { flex-direction: column; }
  .cursor-glow { display: none; }
}


/* Contact info block */
.contact-info { align-items: stretch; }
.contact-info__text { align-self: center; }
.contact-panel { display: grid; gap: 18px; }
.price-card, .dates-card, .contacts-card {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  color: var(--text);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.32);
}
.price-card__label, .dates-card__label, .contacts-card__label {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.price-card strong {
  display: block;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}
.date-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(128,77,28,.16);
}
.date-row:last-child { border-bottom: 0; padding-bottom: 0; }
.date-row b { font-size: 22px; }
.date-row span { color: var(--muted); font-weight: 700; }
.contact-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0;
}
.contact-links a, .phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 900;
  transition: .25s;
}
.contact-links a {
  background: #fff4e5;
  color: #6b3a19;
  border: 1px solid rgba(128,77,28,.14);
}
.contact-links a:hover { transform: translateY(-2px); background: #ffe0b1; }
.phone-link {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 14px 30px rgba(210,118,31,.25);
}
.phone-link:hover { transform: translateY(-2px); }
.contact-note {
  margin-top: 14px;
  color: var(--muted) !important;
  font-size: 14px !important;
}
@media (max-width: 640px) {
  .contact-links { grid-template-columns: 1fr; }
  .date-row { flex-direction: column; gap: 4px; }
  .price-card, .dates-card, .contacts-card { padding: 24px; }
}


/* Guides section */
.guides-grid {
  display: grid;
  gap: 34px;
  margin-top: 48px;
}
.guide-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 52px;
  align-items: center;
  padding: 18px;
  border-radius: 36px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(128,77,28,.12);
  box-shadow: var(--shadow);
}
.guide-card__image-wrap {
  position: relative;
}
.guide-card__image-wrap::before {
  content: "";
  position: absolute;
  inset: 22px -18px -22px 18px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--gold), #f5d4a2);
  z-index: -1;
}
.guide-card__image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.guide-card__text p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 16px;
}
.guide-card__text .eyebrow {
  margin-bottom: 10px;
}
.guide-card blockquote {
  margin-top: 24px;
  padding: 24px;
  border-radius: 24px;
  background: #fff2df;
  border-left: 5px solid var(--gold);
  font-size: 19px;
  color: #4a3323;
}
@media (max-width: 980px) {
  .guides-grid { gap: 26px; }
  .guide-card { grid-template-columns: 1fr; gap: 28px; padding: 16px; }
  .guide-card__image-wrap img { height: 420px; }
}
@media (max-width: 640px) {
  .guide-card__image-wrap img { height: 360px; }
}


/* Stay section */
.stay-section {
  background: linear-gradient(180deg, #fff9ef 0%, #f5e7d2 100%);
}
.stay-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: start;
  margin-top: 48px;
}
.stay-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.stay-gallery__item {
  background: rgba(255,255,255,.72);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(128,77,28,.12);
}
.stay-gallery__item img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.stay-gallery__item--large img {
  height: 320px;
}
.stay-gallery__item:not(.stay-gallery__item--large) img {
  height: 280px;
}
.stay-content p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 18px;
}
.stay-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
}
.stay-highlights div {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(128,77,28,.12);
  box-shadow: var(--shadow);
}
.stay-highlights span {
  display: inline-block;
  font-size: 26px;
  margin-bottom: 10px;
}
.stay-highlights b {
  display: block;
  font-size: 17px;
  margin-bottom: 4px;
}
.stay-highlights small {
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 980px) {
  .stay-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 640px) {
  .stay-highlights {
    grid-template-columns: 1fr;
  }
  .stay-gallery__item--large img,
  .stay-gallery__item:not(.stay-gallery__item--large) img {
    height: auto;
  }
}
/* Route fixes */
.route-note {
  max-width: 820px;
  margin: 20px auto 38px;
  text-align: center;
  color: var(--muted);
  font-size: 18px;
}

.place {
  min-height: auto;
  padding: 22px;
}

.place__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.place__icon {
  margin-bottom: 0;
}

.place__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff4e5;
  color: #8a4a22;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.place__badge--included {
  background: #e9f7df;
  color: #3f7a23;
}

/* Practice flow instead of technical method */
.practice-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.practice-flow article {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(128,77,28,.12);
  box-shadow: var(--shadow);
}

.practice-flow span {
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 900;
  margin-bottom: 18px;
}

.practice-flow p {
  color: var(--muted);
}

/* Contact urgency */
.price-card__hint,
.program-note {
  margin-top: 14px;
  color: #2d2118;
  font-size: 15px;
}

.deadline-countdown {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: #fff4e5;
  color: #6b3a19;
}

.deadline-countdown span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.deadline-countdown b {
  font-size: 24px;
}

/* Veronika photo position */
.guide-card:nth-child(2) .guide-card__image-wrap img {
  object-position: center top;
}

@media (max-width: 980px) {
  .practice-flow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .practice-flow {
    grid-template-columns: 1fr;
  }

  .route-note {
    text-align: left;
  }
}
/* Places with photos */
.places {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 46px;
}

.place {
  min-height: auto;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(128,77,28,.12);
  box-shadow: var(--shadow);
  transition: .25s;
}

.place:hover {
  transform: translateY(-8px);
}

.place__image {
  height: 180px;
  overflow: hidden;
}

.place__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s;
}

.place:hover .place__image img {
  transform: scale(1.06);
}

.place__content {
  padding: 20px;
}

.place__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.place__icon {
  font-size: 28px;
  margin-bottom: 0;
}

.place__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff4e5;
  color: #8a4a22;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.place__badge--included {
  background: #e9f7df;
  color: #3f7a23;
}

.place h3 {
  margin-bottom: 10px;
}

.place p {
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 980px) {
  .places {
    grid-template-columns: 1fr 1fr;
  }

  .place__image {
    height: 210px;
  }
}

@media (max-width: 640px) {
  .places {
    grid-template-columns: 1fr;
  }

  .place__image {
    height: 220px;
  }
}
/* Schedule */
.schedule-section {
  background: linear-gradient(180deg, #fff8ed 0%, #f4e2c9 100%);
}

.schedule-note {
  max-width: 820px;
  margin: 20px auto 42px;
  text-align: center;
  color: var(--muted);
  font-size: 18px;
}

.schedule-list {
  display: grid;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.schedule-day {
  border-radius: 26px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(128,77,28,.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.schedule-day summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-weight: 900;
}

.schedule-day summary::-webkit-details-marker {
  display: none;
}

.schedule-day summary span {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
}

.schedule-day summary b {
  font-size: 24px;
  color: var(--text);
}

.schedule-day summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff4e5;
  color: #8a4a22;
  font-size: 24px;
  line-height: 1;
  flex: 0 0 auto;
}

.schedule-day[open] summary::after {
  content: "−";
}

.schedule-events {
  padding: 0 28px 26px;
  display: grid;
  gap: 12px;
}

.schedule-event {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(128,77,28,.12);
}

.schedule-event time {
  color: #8a4a22;
  font-weight: 900;
}

.schedule-event p {
  color: var(--muted);
  margin: 0;
}

.schedule-event p span {
  display: inline-flex;
  margin-left: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #fff4e5;
  color: #8a4a22;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 640px) {
  .schedule-note {
    text-align: left;
  }

  .schedule-day summary {
    padding: 22px;
  }

  .schedule-day summary b {
    font-size: 21px;
  }

  .schedule-events {
    padding: 0 22px 22px;
  }

  .schedule-event {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
/* Fix text color inside white contact cards */
.contact-panel p,
.price-card__hint,
.program-note {
  color: #5f4a3b !important;
}

.price-card__hint b,
.program-note b {
  color: #2d231c;
}
