/* ══════════════════════════════════════
   AKIHI TALES — Page Sections
   Hero banner, destination grid,
   "The Akihi Way" section styles.
   ══════════════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative;
  height: clamp(420px, 70vh, 620px);
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(21,44,51,0.90) 0%, rgba(21,44,51,0.45) 60%, transparent 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg) 3rem;
  max-width: 540px;
}
.hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-grey);
  margin-bottom: var(--space-sm);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.hero-title em { font-style: italic; color: var(--orange-lt); }
.hero-sub {
  color: rgba(220,232,236,0.85);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 360px;
}
.hero-btns { display: flex; gap: var(--space-sm); flex-wrap: wrap; }

/* Viral package CTA button in hero (Sprint 2) */
.hero-viral-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 0.72rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s;
  margin-top: 0.75rem;
}
.hero-viral-cta:hover { background: var(--orange-lt); }
.hero-viral-cta .viral-badge {
  background: rgba(255,255,255,0.22);
  font-size: 0.6rem;
  padding: 0.15rem 0.45rem;
  border-radius: 10px;
  letter-spacing: 0.5px;
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(220,232,236,0.4);
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  text-align: center;
}

/* ── THE AKIHI WAY ── */
.way-center { text-align: center; margin-bottom: 1.75rem; }
.way-center p { color: var(--muted); font-size: 0.85rem; margin-top: 0.5rem; max-width: 440px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.way-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.way-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  border: 1px solid var(--border);
}
.way-card.dark { background: var(--teal); border-color: var(--teal); }
.way-card.warm { background: #fff5ee; border-color: rgba(232,114,42,0.25); }
.way-title { font-size: 0.95rem; font-weight: 600; color: var(--teal-deep); margin-bottom: 0.4rem; }
.way-card.dark .way-title { color: var(--cream); }
.way-card.warm .way-title { color: var(--orange); }
.way-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.65; }
.way-card.dark .way-desc { color: var(--blue-grey); }
.way-img { border-radius: var(--radius-lg); overflow: hidden; min-height: 155px; }
.way-img img { width: 100%; height: 100%; object-fit: cover; min-height: 155px; }

/* ── DESTINATION GRID ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 195px;
  transition: transform 0.2s;
  cursor: pointer;
}
.dest-card:hover { transform: translateY(-3px); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; }
.dest-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,44,51,0.92) 0%, rgba(21,44,51,0.12) 55%, transparent 100%);
}
.dest-info { position: absolute; bottom: 0; padding: 0.85rem 0.75rem; }
.dest-name { font-family: var(--font-serif); font-size: 0.95rem; color: var(--white); font-weight: 700; }
.dest-tag { font-size: 0.58rem; color: var(--blue-grey); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }

/* Highlight badges on destination cards */
.dest-badges {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
}
.dest-badge-pill {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.15rem 0.42rem;
  border-radius: 10px;
  text-transform: uppercase;
}
.dest-badge-pill.jacuzzi { background: rgba(232,114,42,0.9); color: #fff; }
.dest-badge-pill.pet     { background: rgba(45,95,107,0.88);  color: #fff; }

/* ── HOW IT WORKS ── */
.hiw-sec {
  background: var(--teal-deep);
  padding: var(--space-xl) var(--space-lg);
}
.hiw-header { margin-bottom: 3rem; }
.hiw-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-grey);
  margin-bottom: 1.25rem;
}
.hiw-line {
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--blue-grey);
  flex-shrink: 0;
}
.hiw-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--cream);
  line-height: 1.2;
  max-width: 520px;
  font-weight: 400;
}
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 2.5rem;
}
.hiw-step { padding: 0 1rem; }
.hiw-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: rgba(184,205,212,0.22);
  line-height: 1;
  margin-bottom: 1rem;
  font-weight: 400;
}
.hiw-step-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.hiw-step-desc {
  font-size: 0.8rem;
  color: var(--blue-grey);
  line-height: 1.72;
}
.hiw-divider {
  width: 1px;
  background: rgba(184,205,212,0.2);
  align-self: stretch;
  margin-top: 1rem;
}
.hiw-cta-row { display: flex; }
.btn-hiw {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(184,205,212,0.4);
  padding: 0.72rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.btn-hiw:hover { border-color: var(--cream); background: rgba(255,255,255,0.06); }

/* Instagram footer link */
.f-insta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.f-insta svg { flex-shrink: 0; }

@media (max-width: 768px) {
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hiw-divider {
    width: 100%;
    height: 1px;
    margin: 1.25rem 0;
    align-self: auto;
  }
  .hiw-step { padding: 0; }
}

/* ── DESTINATIONS SLIDER ── */
.dest-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.dest-slider {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  flex: 1;
  padding-bottom: 4px;
}
.dest-slider::-webkit-scrollbar { display: none; }
.dest-slider .exp-card {
  flex: 0 0 calc(33.333% - 0.85rem);
  min-width: 220px;
  max-width: 320px;
  scroll-snap-align: start;
}
.slider-arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--teal-deep);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  z-index: 1;
}
.slider-arrow:hover { background: var(--blue-light); border-color: var(--teal); }
.slider-arrow:disabled { opacity: 0.3; cursor: default; }
.slider-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 1rem;
}
.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot.active { background: var(--teal); transform: scale(1.3); }
.exp-tag-pill {
  font-size: 0.6rem;
  background: var(--blue-light);
  color: var(--teal);
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── THE AKIHI WAY (redesigned) ── */
.bg-way { background: #f0eeea; }
.way-center { text-align: center; margin-bottom: 2rem; }
.way-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--teal-deep);
  margin-bottom: 0.6rem;
}
.way-subhead {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.72;
}
.way-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.way-card2 {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.way-card2--white { background: var(--white); border: 1px solid var(--border); }
.way-card2--dark  { background: var(--teal-deep); color: var(--cream); border: none; }
.way-card2--warm  { background: #fce9de; border: 1px solid rgba(232,114,42,0.18); }
.way-icon-wrap {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-light); color: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-bottom: 0.4rem;
}
.way-icon-wrap--light { background: rgba(255,255,255,0.15); color: var(--cream); }
.way-icon-wrap--bottom { margin-top: auto; background: rgba(232,114,42,0.15); color: var(--orange); }
.way-card2-title {
  font-family: var(--font-serif);
  font-size: 1.05rem; font-weight: 700;
  color: var(--teal-deep); line-height: 1.25;
}
.way-card2--dark .way-card2-title { color: var(--cream); }
.way-card2-desc { font-size: 0.82rem; line-height: 1.68; color: var(--muted); }
.way-card2--dark .way-card2-desc { color: var(--blue-grey); }
.way-card2--warm .way-card2-desc { color: #6b5040; }
.way-img2 { border-radius: var(--radius-lg); overflow: hidden; }
.way-img2 img { width: 100%; height: 100%; min-height: 210px; object-fit: cover; display: block; }

/* ── RESPONSIVE — SECTIONS ── */
@media (max-width: 768px) {
  .hero-content { padding: var(--space-lg) 1.5rem; max-width: 100%; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(21,44,51,0.5) 0%, rgba(21,44,51,0.75) 100%); }

  .way-grid { grid-template-columns: 1fr; }
  .way-img { min-height: 200px; }
  .way-img img { min-height: 200px; }

  .way-grid2 { grid-template-columns: 1fr; }
  .way-img2 img { min-height: 180px; }

  .dest-slider .exp-card { flex: 0 0 calc(80% - 0.6rem); }
  .slider-arrow { display: none; }

  .dest-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.7rem; }
  .dest-card { height: 170px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-eyebrow { font-size: 0.58rem; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card { height: 160px; }
  .dest-name { font-size: 0.88rem; }
  .dest-slider .exp-card { flex: 0 0 calc(90% - 0.6rem); }
}


/* ── BUNGEE SECTION ── */
.bungee-sec { padding: 80px 48px; }

.bungee-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.bungee-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--teal);
}
.bungee-eyebrow-text {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--teal);
  font-weight: 500;
}
.bungee-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.bungee-heading {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  margin: 0;
}
.bungee-heading em {
  font-style: italic;
  color: var(--orange);
}
.bungee-subhead {
  font-size: 15px;
  color: #777;
  max-width: 340px;
  line-height: 1.65;
  margin: 0;
}
.bungee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #ddd;
  border-radius: 16px;
  overflow: hidden;
}
.bungee-card {
  padding: 36px 28px 32px;
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease;
}
.bungee-card:last-child { border-right: none; }
.bungee-card:hover { background: #fafaf8; }
.bungee-card--dark {
  background: #2c3a38;
  border-right: 1px solid #3d4f4c;
}
.bungee-card--dark:hover { background: #334442; }
.bungee-card--darkest {
  background: #1a2825;
  border-right: none;
}
.bungee-card--darkest:hover { background: #1f302d; }

.bungee-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}
.bungee-badge--orange {
  background: rgba(192,98,42,0.3);
  color: #e8a06a;
}

.bungee-height-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  line-height: 1.1;
}
.bungee-height-circle strong {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.bungee-height-circle span {
  font-size: 11px;
  color: #999;
}
.bungee-height-circle--light { border-color: rgba(255,255,255,0.2); }
.bungee-height-circle--light strong { color: #fff; }
.bungee-height-circle--light span { color: rgba(255,255,255,0.4); }

.bungee-tier {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 10px;
  font-weight: 500;
}
.bungee-tier--light { color: rgba(255,255,255,0.4); }

.bungee-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 12px;
}
.bungee-name--light { color: #fff; }

.bungee-desc {
  font-size: 13.5px;
  color: #777;
  line-height: 1.65;
  margin: 0 0 18px;
  flex: 1;
}
.bungee-desc--light { color: rgba(255,255,255,0.5); }

.bungee-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.bungee-features li {
  font-size: 13px;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.bungee-features li::before {
  content: '•';
  color: var(--orange);
  font-size: 14px;
  line-height: 1.2;
  flex-shrink: 0;
}
.bungee-features--light li { color: rgba(255,255,255,0.55); }
.bungee-features--light li::before { color: #e8a06a; }

.bungee-divider { height: 1px; background: #eee; margin-bottom: 20px; }
.bungee-divider--dark { background: rgba(255,255,255,0.1); }

.bungee-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.bungee-price {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.bungee-price span { font-size: 12px; font-weight: 400; color: #aaa; }
.bungee-price--light { color: #fff; }
.bungee-price--light span { color: rgba(255,255,255,0.35); }

.bungee-book-btn {
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.bungee-book-btn--light { color: #e8a06a; }

/* Responsive */
@media (max-width: 900px) {
  .bungee-sec { padding: 60px 20px; }
  .bungee-grid {
    grid-template-columns: 1fr 1fr;
    border-radius: 12px;
  }
  .bungee-card { border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; }
  .bungee-card--dark { border-right: none; border-bottom: 1px solid #3d4f4c; }
  .bungee-card--darkest { border-right: none; border-bottom: none; }
  .bungee-heading { font-size: 36px; }
}
@media (max-width: 560px) {
  .bungee-grid { grid-template-columns: 1fr; }
  .bungee-card, .bungee-card--dark { border-right: none; border-bottom: 1px solid #ddd; }
  .bungee-card--dark { border-bottom: 1px solid #3d4f4c; }
}
.bungee-height-circles {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}