:root {
  --sand: #efe1cc;
  --clay: #b8774f;
  --forest: #21352c;
  --night: #101817;
  --mist: #f7f2ea;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Manrope", sans-serif;
  color: #1f2328;
  background: linear-gradient(160deg, #f7efe2 0%, #f2e5d3 50%, #ece0cf 100%);
}

.brand,
.section-title,
.hero-title {
  font-family: "Fraunces", serif;
  letter-spacing: 0.2px;
}

.glass-nav {
  background: rgba(16, 24, 23, 0.62);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: #fff;
}

.hero {
  min-height: 95vh;
  background: url("assets/img/gyg_images_10.jpg") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(185, 112, 65, 0.45), transparent 45%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(7, 13, 11, 0.82) 85%);
}

.eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  color: #f4e8d6;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 1rem;
}

.hero-title {
  color: #fff;
  max-width: 15ch;
}

.hero-copy {
  color: #efe3d4;
  max-width: 60ch;
}

.cta-btn {
  border-radius: 999px;
  font-weight: 700;
  padding-inline: 1.4rem;
}

.section-warm {
  background: transparent;
}

.section-dark {
  background: linear-gradient(160deg, #192722 0%, #0f1815 100%);
}

.section-cta {
  background:
    radial-gradient(circle at 10% 10%, rgba(235, 175, 124, 0.2), transparent 35%),
    linear-gradient(120deg, #1a2823, #111a18);
}

.section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}

.retreat-card {
  border: 0;
  border-radius: 1rem;
  background: #fff7ed;
  box-shadow: 0 18px 35px rgba(22, 24, 28, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.retreat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(22, 24, 28, 0.16);
}

.gallery-note {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0.8rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.02);
}

.timeline li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.timeline span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, var(--clay), #d5976e);
  flex-shrink: 0;
}

.quote-box {
  background: #fff;
  border-left: 6px solid var(--clay);
  border-radius: 0.8rem;
  padding: 1.6rem;
  box-shadow: 0 16px 30px rgba(18, 20, 23, 0.1);
}

.footer-dark {
  background: var(--night);
  color: #e6dfd6;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

@media (max-width: 768px) {
  .hero {
    min-height: 82vh;
    background-position: 62% center;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .gallery-img {
    height: 220px;
  }
}
