/* index.css — Homepage specific styles */

/* ── PAGE BASE ── */
.page-index { background: var(--off-black); }

/* ── HERO ── */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .75; z-index: 0;
}
.hero__content {
  position: relative; z-index: 5;
  padding: 0 4rem calc(var(--nav-h) + 3rem);
  max-width: 720px;
}
.hero-eyebrow-text {
  color: #ffffff;
}

.hero-h1 {
  color: #ffffff;
}

.hero-h1 em {
  color: #ffffff;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
}
.hero__ctas { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: 2.5rem; }

/* Spinning badge */
.hero-badge {
  position: absolute; top: 50%; right: 5rem; z-index: 10;
  transform: translateY(-50%);
}
.hero-badge__ring {
  width: 120px; height: 120px;
  border: 1px solid rgba(200,205,154,.2); border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .2rem;
  animation: badgeSpin 20s linear infinite;
}
@keyframes badgeSpin { to { transform: rotate(360deg); } }
.hero-badge__price {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  color: var(--olive-pale); line-height: 1;
}
.hero-badge__label {
  font-size: .5rem; font-weight: 300; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(200,205,154,.4);
}

/* ── TRI HITA KARANA STRIP ── */
.thk-strip {
  background: var(--brown);
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
  position: relative; overflow: hidden;
}
.thk-strip__divider { background: rgba(200,205,154,.12); }
.thk-item {
  padding: 4rem 3.5rem; text-align: center;
}
.thk-item__numeral {
  font-family: var(--serif); font-size: 3rem; font-weight: 400;
  color: rgba(200,205,154,.12); line-height: 1; display: block;
}
.thk-item__name {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 400;
  font-style: italic; color: var(--cream); margin: .5rem 0;
}
.thk-item__concept {
  font-size: .6rem; font-weight: 400; letter-spacing: .22em;
  text-transform: uppercase; color: var(--olive-pale); margin-bottom: 1rem;
}
.thk-item__desc {
  font-size: .85rem; font-weight: 200; line-height: 1.8;
  color: rgba(232,224,204,.5);
}

/* ── STORY SECTION ── */
.story-section {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 640px;
}
.story-visual {
  position: relative; overflow: hidden;
}
.story-visual__img {
  width: 100%; height: 100%; object-fit: cover;
}
.story-visual__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 30%, rgba(28,26,20,.5) 100%);
}
.story-visual__quote {
  position: absolute; bottom: 3rem; left: 2.5rem; right: 2.5rem; z-index: 2;
  font-family: var(--serif); font-size: 1.35rem; font-weight: 400;
  font-style: italic; line-height: 1.55; color: rgba(232,237,232,.9);
}
.story-text {
  background: var(--cream-light);
  padding: 5.5rem 5rem; display: flex; flex-direction: column; justify-content: center;
}
.story-stats {
  display: flex; gap: 0; margin: 2rem 0;
  border-top: 1px solid rgba(98,107,58,.15);
  border-bottom: 1px solid rgba(98,107,58,.15);
}
.story-stat {
  flex: 1; padding: 1.25rem 0; text-align: center;
  border-right: 1px solid rgba(98,107,58,.15);
}
.story-stat:last-child { border-right: none; }
.story-stat__num {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 400;
  color: var(--olive); display: block; line-height: 1;
}
.story-stat__label {
  font-size: .6rem; font-weight: 400; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-light);
  margin-top: .25rem; display: block;
}

/* ── EXPERIENCES BENTO ── */
.bento-section { padding: var(--section-pad); background: var(--cream-light); }
.bento-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3.5rem;
}
.bento-header__intro {
  font-size: .88rem; font-weight: 200; line-height: 1.85;
  color: var(--text-mid); max-width: 320px; text-align: right;
}
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto; gap: 10px;
}
.bento-tile {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem; min-height: 268px;
  transition: transform .4s var(--ease);
  background: var(--off-black);
}
.bento-tile:hover { transform: scale(.984); }
.bento-tile--span5 { grid-column: span 5; grid-row: span 2; min-height: 560px; }
.bento-tile--span4 { grid-column: span 4; }
.bento-tile--span3 { grid-column: span 3; }
.bento-tile--span5 { grid-column: span 5; }
.bento-tile__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform .6s var(--ease);
}
.bento-tile:hover .bento-tile__img { transform: scale(1.04); }
.bento-tile__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.05) 55%, transparent 100%);
  z-index: 1;
}
.bento-tile__content { position: relative; z-index: 2; }
.bento-tile__tag {
  font-size: .58rem; font-weight: 400; letter-spacing: .22em;
  text-transform: uppercase; color: var(--olive-pale); display: block; margin-bottom: .5rem;
}
.bento-tile__title {
  font-family: var(--serif); font-size: 1.35rem; font-weight: 400;
  color: var(--white); line-height: 1.22; margin-bottom: .4rem;
}
.bento-tile--span5 .bento-tile__title { font-size: 1.9rem; }
.bento-tile__price {
  font-size: .72rem; font-weight: 200; color: rgba(200,205,154,.7);
}
.bento-tile__arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .75rem; font-size: .65rem; font-weight: 300;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(200,205,154,.55); transition: color .3s;
}
.bento-tile:hover .bento-tile__arrow { color: var(--olive-pale); }

/* ── NATURE BAND ── */
.nature-band {
  background: var(--olive-deep);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.nature-band__item {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(200,205,154,.1);
}
.nature-band__item:last-child { border-right: none; }
.nature-band__title {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 400;
  color: var(--cream); margin-bottom: .75rem;
}
.nature-band__desc {
  font-size: .85rem; font-weight: 200; line-height: 1.8;
  color: rgba(200,213,160,.6); margin-bottom: 1.5rem;
}
.nature-band__link {
  font-size: .62rem; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; color: var(--olive-pale);
  border-bottom: 1px solid rgba(200,205,154,.25);
  padding-bottom: 3px; transition: color .3s, border-color .3s;
}
.nature-band__link:hover { color: var(--cream); border-color: rgba(232,224,204,.5); }

/* ── PACKAGES SECTION ── */
.packages-section { padding: var(--section-pad); background: var(--brown); position: relative; overflow: hidden; }
.packages-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 70% at 100% 0%, rgba(98,107,58,.12) 0%, transparent 60%);
}
.packages-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem;
  position: relative; z-index: 1;
}
.packages-header__note {
  font-size: .78rem; font-weight: 200; color: rgba(200,213,160,.5);
  max-width: 280px; text-align: right;
}
.packages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(200,205,154,.08);
  position: relative; z-index: 1;
}
.pkg-card { padding: 3rem 2.5rem; display: flex; flex-direction: column; }
.pkg-card--featured { background: var(--olive-deep); }
.pkg-card--regular  { background: rgba(255,255,255,.03); }
.pkg-card--custom   { background: rgba(255,255,255,.015); }
.pkg-card__badge {
  font-size: .58rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brown);
  background: var(--olive-pale);
  padding: .3rem .85rem; display: inline-block;
  align-self: flex-start; margin-bottom: 1.5rem;
}
.pkg-card__type {
  font-size: .58rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(200,213,160,.5); margin-bottom: 1.25rem; display: block;
}
.pkg-card__name {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 400;
  color: var(--cream); line-height: 1.2; margin-bottom: .3rem;
}
.pkg-card__divider { height: 1px; background: rgba(200,205,154,.1); margin: 1.75rem 0; }
.pkg-card__price {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 400;
  color: var(--cream); line-height: 1;
}
.pkg-card--featured .pkg-card__price { color: var(--cream); }
.pkg-card--regular  .pkg-card__price { color: var(--olive-pale); }
.pkg-card--custom   .pkg-card__price { font-size: 1.6rem; color: rgba(200,205,154,.6); }
.pkg-card__price-note {
  font-size: .7rem; font-weight: 200; color: rgba(200,205,154,.4);
  margin-top: .3rem; margin-bottom: 1.75rem;
}
.pkg-card__includes { list-style: none; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.pkg-card__includes li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .83rem; font-weight: 200; line-height: 1.5;
  color: rgba(200,213,160,.6);
}
.pkg-card__includes li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--olive-pale); flex-shrink: 0; margin-top: 6px; display: block;
}
.pkg-card__cta {
  display: block; text-align: center; padding: .85rem;
  font-size: .68rem; font-weight: 400; letter-spacing: .2em;
  text-transform: uppercase; margin-top: 2rem;
  transition: background .3s, color .3s;
}
.pkg-card--featured .pkg-card__cta { background: var(--cream); color: var(--olive-deep); }
.pkg-card--featured .pkg-card__cta:hover { background: var(--white); }
.pkg-card--regular .pkg-card__cta,
.pkg-card--custom  .pkg-card__cta {
  background: transparent; color: var(--olive-pale);
  border: 1px solid rgba(200,205,154,.3);
}
.pkg-card--regular .pkg-card__cta:hover,
.pkg-card--custom  .pkg-card__cta:hover {
  background: rgba(200,205,154,.1); border-color: rgba(200,205,154,.5);
}

/* ── TESTIMONIAL ── */
.testimonial-section {
  padding: var(--section-pad); background: var(--cream-light);
  display: grid; grid-template-columns: 1fr 2fr; gap: 7rem; align-items: center;
}
.testimonial-nav { display: flex; flex-direction: column; gap: .75rem; }
.testimonial-dot {
  width: 6px; height: 6px; border-radius: 50%;
  border: 1px solid rgba(98,107,58,.35);
  background: transparent; padding: 0; cursor: pointer;
  transition: background .3s;
}
.testimonial-dot.is-active { background: var(--olive); border-color: var(--olive); }
.testimonial-item { display: none; }
.testimonial-item.is-active { display: block; }
.testimonial-mark {
  font-family: var(--serif); font-size: 5rem; font-weight: 400;
  color: var(--olive-pale); opacity: .25; line-height: .7;
  display: block; margin-bottom: .5rem;
}
.testimonial-quote {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400; font-style: italic;
  color: var(--brown); line-height: 1.55; margin-bottom: 2rem;
  transition: opacity .5s;
}
.testimonial-attr { display: flex; align-items: center; gap: 1.5rem; }
.testimonial-attr__line { width: 40px; height: 1px; background: var(--olive); }
.testimonial-attr__name {
  font-size: .78rem; font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-mid);
}
.testimonial-attr__origin, .testimonial-attr__program {
  font-size: .72rem; font-weight: 200; color: var(--text-light); margin-top: .15rem;
}
.testimonial-attr__program {
  font-size: .62rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--olive); margin-top: .2rem;
}

/* ── CTA SPLIT ── */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }
.cta-split__panel {
  padding: 5.5rem 4.5rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.cta-split__panel--olive { background: var(--olive-deep); }
.cta-split__panel--brown { background: var(--brown); }
.cta-split__panel::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 100% 100%, rgba(138,148,80,.2) 0%, transparent 60%);
}
.cta-split__panel--brown::before {
  background: radial-gradient(ellipse 60% 60% at 0% 0%, rgba(160,120,64,.12) 0%, transparent 55%);
}
.cta-split__detail {
  display: flex; flex-direction: column; gap: 1.25rem;
  position: relative; margin-bottom: 2.5rem;
}
.cta-split__detail-row { display: flex; gap: 1.25rem; }
.cta-split__detail-label {
  font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(200,205,154,.35); min-width: 70px; padding-top: 1px; flex-shrink: 0;
}
.cta-split__detail-val { font-size: .85rem; font-weight: 200; color: rgba(200,213,160,.7); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero__content { padding: 0 2rem calc(var(--nav-h) + 2rem); }
  .hero-badge { display: none; }
  .thk-strip { grid-template-columns: 1fr; }
  .thk-strip__divider { display: none; }
  .story-section { grid-template-columns: 1fr; }
  .story-visual { min-height: 380px; }
  .story-text { padding: 4rem 2rem; }
  .bento-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .bento-header__intro { text-align: left; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-tile--span5 { grid-column: span 2; min-height: 320px; grid-row: span 1; }
  .bento-tile--span4, .bento-tile--span3 { grid-column: span 1; }
  .nature-band { grid-template-columns: 1fr 1fr; }
  .packages-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .packages-header__note { text-align: left; }
  .packages-grid { grid-template-columns: 1fr; gap: 1px; }
  .testimonial-section { grid-template-columns: 1fr; gap: 2rem; }
  .testimonial-nav { flex-direction: row; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-split__panel { padding: 4rem 2rem; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bento-tile--span5 { grid-column: span 1; }
  .nature-band { grid-template-columns: 1fr; }
}
