:root {
  --white: #ffffff;
  --bg: #fdfcfb;
  --bg-warm: #f7f4ef;
  --text: #1a1a1a;
  --text-soft: #6f6a63;
  --line: rgba(26, 26, 26, 0.08);
  --accent: #2c2c2c;
  --warm: #b8956b;
  --radius: 16px;
  --transition: 0.35s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Montserrat", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1.4rem 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.25s;
}

.nav a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn--dark {
  background: var(--accent);
  color: #fff;
}

.btn--dark:hover {
  background: #000;
  transform: translateY(-1px);
}

.btn--light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn--light:hover { background: #fff; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 5rem;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.15) 45%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

.hero__content {
  width: min(1200px, 90vw);
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.hero__label {
  display: inline-block;
  margin-bottom: 1.75rem;
  font-size: clamp(1.45rem, 4.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.95;
}

.hero__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 1.4rem;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
}

.hero__subtitle {
  max-width: 560px;
  margin: 0 auto 2.4rem;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.92;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

/* Sections */
.section {
  padding: 6.5rem 0;
}

.section--warm { background: var(--bg-warm); }

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section__label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
}

.section__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.section__text {
  color: var(--text-soft);
  font-size: 1.02rem;
}


/* Info grid */
.info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
}

.info-card {
  background: var(--white);
  padding: 3rem 2.8rem;
  transition: background 0.3s;
}

.info-card:hover { background: var(--bg); }

.info-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.info-card__text {
  color: var(--text-soft);
  font-size: 0.98rem;
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}

.btn--outline:hover {
  border-color: var(--text);
  background: var(--white);
}

/* Program */
.program {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.program__day {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem 1.8rem;
  height: 100%;
}

.program__day--featured {
  border-color: var(--warm);
  box-shadow: 0 8px 40px rgba(184, 149, 107, 0.12);
}

.program__day-head {
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.program__day-num {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 0.4rem;
}

.program__day-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.program__day-theme {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--warm);
  line-height: 1.2;
}

.program__block {
  margin-bottom: 1.6rem;
}

.program__block:last-child {
  margin-bottom: 0;
}

.program__block-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.program__list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.program__list li {
  font-size: 0.92rem;
  color: var(--text-soft);
  padding-left: 0.75rem;
  border-left: 2px solid var(--line);
}

.program__list li em {
  font-style: normal;
  font-size: 0.82rem;
  opacity: 0.75;
}

/* Location */
.location {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.location__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.location__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.location__item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.location__item img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.location__item:hover img {
  transform: scale(1.04);
}

.location__hint {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-align: center;
}

.location__address {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.location__address strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
  margin-bottom: 0.3rem;
}

.location__text {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.location__transport {
  padding: 1.4rem 1.6rem;
  background: var(--bg-warm);
  border-radius: var(--radius);
}

.location__transport strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.location__transport p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.pricing__card {
  background: var(--bg-warm);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.2rem 2rem;
  border: 1px solid var(--line);
}

.pricing__card--main {
  background: var(--white);
  border-color: var(--text);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm);
}

.pricing__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  margin: 0.8rem 0;
}

.pricing__price span {
  font-size: 1.8rem;
}

.pricing__note {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.pricing__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.pricing__list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.pricing__list li {
  font-size: 0.9rem;
  color: var(--text-soft);
  padding-left: 1.4rem;
  position: relative;
}

.pricing__list--yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--warm);
  font-weight: 700;
}

.pricing__list--no li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-soft);
}

.pricing__hint {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  font-style: italic;
}

/* Reviews — uses gallery carousel styles */

.reviews__placeholder {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.02rem;
  padding: 3rem 2rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

/* CTA extras */
.cta__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

/* Gallery carousel */
.gallery__wrap {
  position: relative;
  margin-top: 1rem;
}

.gallery__scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.5rem 0 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.gallery__scroll::-webkit-scrollbar { display: none; }

.gallery__item {
  flex: 0 0 clamp(240px, 28vw, 340px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--wide { flex: 0 0 clamp(300px, 36vw, 440px); }

.gallery__item img {
  width: 100%;
  height: clamp(280px, 32vw, 400px);
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img { transform: scale(1.03); }

.gallery__hint {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* Host — Aniko style */
.host {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
}

.host__photo {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
}

.host__photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center 15%;
}

.host__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1rem;
}

.host__name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 2rem;
}

.host__text {
  color: var(--text-soft);
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
}

.host__text strong { color: var(--text); font-weight: 600; }

/* CTA */
.cta {
  text-align: center;
  padding: 7rem 0;
  background: var(--bg-warm);
}

.cta__inner {
  max-width: 560px;
  margin: 0 auto;
}

.cta__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 1rem;
}

.cta__text {
  color: var(--text-soft);
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  padding: 2rem 0 2.5rem;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  border-top: 1px solid var(--line);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 2rem;
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox img {
  max-height: 90vh;
  max-width: 92vw;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  margin: 5px 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .nav {
    display: none;
    position: fixed;
    inset: 0 0 0 auto;
    width: 280px;
    flex-direction: column;
    padding: 5rem 2rem;
    background: var(--white);
    box-shadow: -8px 0 40px rgba(0,0,0,0.08);
    gap: 1.5rem;
  }

  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .header .btn { display: none; }

  .info__grid { grid-template-columns: 1fr; }
  .program { grid-template-columns: 1fr; }
  .location__content { grid-template-columns: 1fr; gap: 2rem; }
  .pricing { grid-template-columns: 1fr; }
  .host { grid-template-columns: 1fr; gap: 2.5rem; }
  .host__photo img { height: 480px; }
}

@media (max-width: 560px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 300px; }
  .info-card { padding: 2rem 1.6rem; }
}
