/* ── Fade-in animation ──────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 7rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-img.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,14,13,0.72) 0%,
    rgba(14,14,13,0.25) 50%,
    rgba(14,14,13,0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2.5rem;
  max-width: 700px;
}
.hero-heading {
  font-size: clamp(3.2rem, 7vw, 6rem);
  color: var(--off-white);
  margin: 0.75rem 0 1rem;
  font-weight: 300;
}
.hero-heading-sans {
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.hero-heading em,
.cycle-you {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  display: inline-block;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.hero-sub {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.55);
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 1;
  width: 1px;
  height: 60px;
  display: flex;
  justify-content: center;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(247,245,242,0.3);
  position: relative;
  overflow: hidden;
}
.hero-scroll span::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--off-white);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ── Niche strip ────────────────────────────────────── */
.niches-strip { background: var(--off-white); }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.niche-item {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.niche-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.niche-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.niche-item:hover .niche-img-wrap img {
  transform: scale(1.04);
}
.niche-label {
  padding: 0.75rem 0 0.25rem;
}
.niche-label h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 300;
  margin-top: 0.25rem;
  color: var(--black);
}

/* ── Featured masonry ───────────────────────────────── */
.featured-section { background: var(--off-white); }
.masonry-grid {
  columns: 3;
  column-gap: 1rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.02); }
.featured-cta {
  margin-top: 3rem;
  text-align: center;
}

/* ── About teaser ───────────────────────────────────── */
.about-teaser { background: #f0ede8; }
.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-teaser-text p {
  color: var(--warm-muted);
  margin-top: 1rem;
}
.about-teaser-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
.about-teaser-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}

/* ── Packages teaser ────────────────────────────────── */
.packages-teaser { background: var(--off-white); }
.packages-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--warm-mid);
  border: 0.5px solid var(--warm-mid);
  margin: 3rem 0 2.5rem;
  overflow: hidden;
}
.pkg-card {
  background: var(--off-white);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.pkg-card:hover { background: #f0ede8; }
.pkg-featured {
  background: var(--black);
}
.pkg-featured:hover { background: #1a1a18; }
.pkg-featured .eyebrow { color: rgba(247,245,242,0.5); }
.pkg-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0.5rem 0 1rem;
  color: var(--black);
}
.pkg-featured .pkg-name { color: var(--off-white); }
.pkg-price {
  font-size: 13px;
  color: var(--warm-muted);
  margin-bottom: 0.5rem;
}
.pkg-featured .pkg-price { color: rgba(247,245,242,0.6); }
.pkg-price strong { font-size: 1.6rem; font-weight: 300; color: var(--black); font-family: var(--serif); }
.pkg-featured .pkg-price strong { color: var(--off-white); }
.pkg-detail {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--warm-muted);
}
.pkg-featured .pkg-detail { color: rgba(247,245,242,0.45); }

/* ── Instagram CTA ──────────────────────────────────── */
.insta-cta {
  background: var(--black);
  text-align: center;
}
.insta-inner { padding: 3rem 0; }
.insta-inner h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--off-white);
  margin-top: 0.5rem;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .niches-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 2; }
  .about-teaser-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .packages-strip { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-content { padding: 0 1.5rem; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .masonry-grid { columns: 1; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}
