@charset "UTF-8";

/* =========================================================
   Ichigo Tour - Spesialis Private Tour Jepang
   ========================================================= */

:root {
  --red: #e03446;          /* merah stroberi ichigo */
  --red-dark: #b8243a;
  --brown: #6e3a3d;        /* cokelat script logo ichigo */
  --leaf: #3f9d58;         /* hijau daun stroberi */
  --navy: #1c2437;
  --ink: #2b3245;
  --muted: #6b7385;
  --cream: #fffaf7;
  --pink: #fdeef1;
  --line: #eee3e0;
  --white: #ffffff;
  --wa: #25d366;
  --wa-dark: #1eb958;
  --shadow: 0 10px 30px rgba(28, 36, 55, 0.10);
  --shadow-sm: 0 4px 14px rgba(28, 36, 55, 0.08);
  --radius: 18px;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}
.container-narrow { width: min(820px, 92%); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(214, 48, 75, 0.35);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.15); }
.btn-wa {
  background: var(--wa);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}
.btn-wa:hover { background: var(--wa-dark); }
.btn-sm { padding: 8px 14px; font-size: 0.82rem; }
.btn-light {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: rgba(255, 250, 247, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-cta { padding: 10px 16px; font-size: 0.88rem; flex-shrink: 0; }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand img { height: 52px; width: auto; max-width: none; display: block; }
.brand .logo-light { display: none; }
.header.scrolled .brand .logo-dark { display: none; }
.header.scrolled .brand .logo-light { display: block; }
.brand-mark { line-height: 0; display: grid; place-items: center; }
.brand-text {
  font-size: 1.25rem;
  line-height: 1.1;
  color: var(--white);
  display: flex;
  flex-direction: column;
  transition: color 0.3s ease;
}
.brand-mark img { height: 54px; width: auto; max-width: none; display: block; }
.brand-name {
  font-family: "Leckerli One", "Brush Script MT", cursive;
  font-size: 1.85rem;
  line-height: 1;
  color: var(--white);
  transition: color 0.3s ease;
  padding-bottom: 4px;
}
.header.scrolled .brand-name { color: var(--brown); }
.brand-footer .brand-name { color: var(--white); }
.brand-text small {
  white-space: nowrap;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}
.header.scrolled .brand-text { color: var(--brown); }

.nav { display: flex; gap: 12px; }
.nav-link {
  font-weight: 700;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.92);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.3s ease, border-color 0.2s ease;
}
.nav-link:hover, .nav-link.active { border-color: var(--red); }
.header.scrolled .nav-link { color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.header.scrolled .nav-toggle span,
.header.nav-open .nav-toggle span { background: var(--navy); }
.header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Opening loader ---------- */
.opening-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 214, 223, 0.95), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(255, 246, 248, 0.95), transparent 32%),
    linear-gradient(135deg, #fffaf7 0%, #fff0f4 48%, #fdeef1 100%);
  color: var(--navy);
  opacity: 1;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.opening-loader-ready .opening-loader { display: grid; }
.opening-loader.is-hiding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.opening-loader__card {
  position: relative;
  z-index: 2;
  width: min(360px, 100%);
  padding: 28px 26px;
  text-align: center;
  border: 1px solid rgba(224, 52, 70, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(96, 30, 46, 0.16);
  backdrop-filter: blur(14px);
  animation: loader-pop 0.58s cubic-bezier(.2,.8,.2,1) both;
}
.opening-loader__badge {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--red-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.opening-loader__badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  animation: eyebrow-kilau 2.2s ease-in-out infinite;
}
.opening-loader__card strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  line-height: 1.1;
  color: var(--navy);
}
.opening-loader__card small {
  display: block;
  margin: 10px auto 0;
  color: var(--muted);
  line-height: 1.6;
}
.opening-loader__dots {
  display: inline-flex;
  gap: 7px;
  margin-top: 18px;
}
.opening-loader__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  animation: loader-dot 0.9s ease-in-out infinite;
}
.opening-loader__dots span:nth-child(2) { animation-delay: 0.15s; }
.opening-loader__dots span:nth-child(3) { animation-delay: 0.3s; }
.opening-loader__petals span {
  position: absolute;
  top: -42px;
  width: 18px;
  height: 14px;
  border-radius: 70% 30% 70% 30%;
  background: #f8b7c8;
  opacity: 0.72;
  transform: rotate(28deg);
  animation: loader-petal 2.8s linear infinite;
}
.opening-loader__petals span:nth-child(1) { left: 8%; animation-delay: 0s; animation-duration: 2.9s; }
.opening-loader__petals span:nth-child(2) { left: 24%; animation-delay: .35s; animation-duration: 3.4s; background: #fbdce5; }
.opening-loader__petals span:nth-child(3) { left: 45%; animation-delay: .1s; animation-duration: 3s; }
.opening-loader__petals span:nth-child(4) { left: 64%; animation-delay: .6s; animation-duration: 3.3s; background: #fff; }
.opening-loader__petals span:nth-child(5) { left: 78%; animation-delay: .25s; animation-duration: 2.7s; }
.opening-loader__petals span:nth-child(6) { left: 92%; animation-delay: .75s; animation-duration: 3.6s; background: #fbdce5; }
@keyframes loader-pop {
  from { opacity: 0; transform: translateY(18px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes loader-dot {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(-7px); opacity: 1; }
}
@keyframes loader-petal {
  0% { transform: translate3d(0, -40px, 0) rotate(0deg); opacity: 0; }
  12% { opacity: 0.82; }
  100% { transform: translate3d(42px, 110vh, 0) rotate(260deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .opening-loader,
  .opening-loader__card,
  .opening-loader__dots span,
  .opening-loader__petals span,
  .opening-loader__badge::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(640px, 82svh, 780px);
  display: flex;
  align-items: flex-start;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("../assets/hero-fuji-sakura.jpg") center 44% / cover no-repeat,
    linear-gradient(160deg, #33456e, #17203a);
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 26, 45, 0.66) 0%, rgba(20, 26, 45, 0.52) 45%, rgba(20, 26, 45, 0.76) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 86px 0 64px;
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(15, 20, 35, 0.18);
}
/* Kilau tipis yang menyapu badge sesekali. */
.hero-eyebrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: eyebrow-kilau 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes eyebrow-kilau {
  0%, 55% { left: -60%; }
  85%, 100% { left: 130%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow::after { display: none; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.6vw, 4rem);
  line-height: 1.12;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(12, 17, 32, 0.6);
}
.hero-title em {
  color: #ffd6df;
  font-family: "DM Serif Display", "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 22px rgba(255, 179, 193, 0.34);
}
.typed { display: inline-block; min-width: 5.2ch; text-align: left; }
.type-cursor {
  display: inline-block;
  width: 4px;
  height: 0.82em;
  background: #ffb3c1;
  margin-left: 5px;
  vertical-align: -0.06em;
  border-radius: 2px;
  animation: kedip 1s steps(1) infinite;
}
@keyframes kedip { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .type-cursor { display: none; }
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 620px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  text-shadow: 0 1px 10px rgba(12, 17, 32, 0.65);
}
.hero-sub em { color: #ffb3c1; font-style: italic; }
.hero-dest {
  display: block;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.72);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 26px;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.6rem; font-weight: 800; }
.stat span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.8); }
.season-canvas {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.sakura-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.sakura-canvas--page {
  position: fixed;
  inset: 0;
  z-index: 4;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 70px; }

/* ---------- Sections ---------- */
.section { padding: 54px 0 90px; }
.section-alt { background: var(--pink); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 54px; }
.section-eyebrow {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
}
.section-title em {
  color: var(--red);
  font-family: "DM Serif Display", "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.section-sub { margin-top: 14px; color: var(--muted); }

/* ---------- Keunggulan ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-icon {
  font-size: 1.7rem;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--pink);
  border-radius: 16px;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--navy); }
.feature-card p { font-size: 0.92rem; color: var(--muted); }

/* ---------- Filter chips ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 38px;
}
.chip {
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 9px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chip:hover { border-color: var(--red); color: var(--red); }
.chip.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(214, 48, 75, 0.3);
}

/* ---------- Paket ---------- */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package-card.hidden { display: none; }
.package-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.badge-hot { background: var(--red); color: var(--white); }
.badge-season { left: auto; right: 14px; }
.package-body {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.package-body h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 4px; }
.package-route {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.package-list { margin-bottom: 20px; flex: 1; }
.package-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.package-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}
.package-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px dashed var(--line);
  padding-top: 16px;
  margin-top: auto;
}
.price small { font-size: 0.72rem; color: var(--muted); }
.price-row { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price strong { font-size: 1.25rem; line-height: 1; color: var(--navy); font-weight: 800; }
.price span { font-size: 0.8rem; color: var(--muted); }
.price-note { display: block; margin-top: 8px; font-size: 0.72rem; color: var(--muted); line-height: 1.45; }

/* Gambar destinasi & paket — self-hosted, WebP + fallback JPG.
   Ganti file di assets/dest/ dengan foto tour sendiri kapan saja
   (nama file dipertahankan, CSS tidak perlu diubah). */
.img-sakura      { background-color: #e8a7b7; background-image: url("../assets/dest/sakura.jpg"); }
.img-tokyo       { background-color: #4b5875; background-image: url("../assets/dest/tokyo.jpg"); }
.img-osaka       { background-color: #38507a; background-image: url("../assets/dest/osaka.jpg"); }
.img-kyoto       { background-color: #b8442f; background-image: url("../assets/dest/kyoto.jpg"); }
.img-fuji        { background-color: #7d95b5; background-image: url("../assets/dest/fuji.jpg"); }
.img-hokkaido    { background-color: #9db4c9; background-image: url("../assets/dest/hokkaido.jpg"); }
.img-shirakawago { background-color: #8fa3b8; background-image: url("../assets/dest/shirakawago.jpg"); }
.img-kamakura    { background-color: #7aa6b7; background-image: url("../assets/dest/kamakura.jpg"); }
.img-kamikochi   { background-color: #6e9b7a; background-image: url("../assets/dest/kamikochi.jpg"); }

/* Sajikan WebP bila browser mendukung (hemat ~30-40%). */
.webp .img-sakura      { background-image: url("../assets/dest/sakura.webp"); }
.webp .img-tokyo       { background-image: url("../assets/dest/tokyo.webp"); }
.webp .img-osaka       { background-image: url("../assets/dest/osaka.webp"); }
.webp .img-kyoto       { background-image: url("../assets/dest/kyoto.webp"); }
.webp .img-fuji        { background-image: url("../assets/dest/fuji.webp"); }
.webp .img-hokkaido    { background-image: url("../assets/dest/hokkaido.webp"); }
.webp .img-shirakawago { background-image: url("../assets/dest/shirakawago.webp"); }
.webp .img-kamakura    { background-image: url("../assets/dest/kamakura.webp"); }
.webp .img-kamikochi   { background-image: url("../assets/dest/kamikochi.webp"); }

/* ---------- Custom CTA ---------- */
.custom-cta {
  position: relative;
  overflow: hidden;
  margin-top: 44px;
  background: linear-gradient(135deg, #fff2f4 0%, #fff8f5 55%, #fff1ec 100%);
  border: 1px solid rgba(224, 52, 70, 0.16);
  border-radius: var(--radius);
  padding: 34px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 16px 36px rgba(224, 52, 70, 0.1);
}
.custom-cta::before {
  content: "🍓";
  position: absolute;
  right: -14px;
  bottom: -26px;
  font-size: 8rem;
  line-height: 1;
  opacity: 0.07;
  transform: rotate(-12deg);
  pointer-events: none;
}
.custom-cta > * { position: relative; z-index: 1; }
.custom-cta h3 { font-size: 1.3rem; margin-bottom: 6px; color: var(--navy); }
.custom-cta p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Destinasi ---------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.dest-card {
  position: relative;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 20, 35, 0.85));
  transition: background 0.25s ease;
}
.dest-info {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 22px;
}
.dest-info h3 { font-size: 1.25rem; margin-bottom: 2px; }
.dest-info p { font-size: 0.84rem; color: rgba(255, 255, 255, 0.85); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(214, 48, 75, 0.35);
}
.step h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Tim ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  max-width: 860px;
  margin-inline: auto;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar {
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--brown);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 16px;
  border: 3px solid #f6c9d4;
}
.team-card h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 2px; }
.team-role {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.team-ig { color: var(--muted); font-size: 0.88rem; }
.team-ig:hover { color: var(--red); }

/* ---------- Testimoni ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}
.testi-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 52, 70, 0.24);
  box-shadow: var(--shadow);
}
.testi-photo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.testi-photo {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--pink), #fff6f8);
  border: 3px solid var(--white);
  box-shadow: 0 12px 28px rgba(12, 17, 32, 0.14);
}
.testi-photo--placeholder {
  display: grid;
  place-items: center;
  color: var(--red-dark);
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
}
.stars { color: #f5a623; letter-spacing: 3px; margin-bottom: 0; }
.testi-card blockquote {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 18px;
}
.testi-video-action { margin: 0 0 16px; }
.testi-video-action .btn {
  padding: 10px 16px;
  font-size: 0.84rem;
  box-shadow: none;
}
.testi-card figcaption strong { display: block; color: var(--navy); }
.testi-card figcaption span { font-size: 0.82rem; color: var(--muted); }
@media (max-width: 430px) {
  .testi-card { padding: 22px 20px 24px; }
  .testi-photo { width: 64px; height: 64px; border-radius: 18px; }
  .stars { letter-spacing: 1px; font-size: 0.88rem; }
}

/* ---------- Instagram ---------- */
.ig-section { padding-top: 0; }
.ig-card {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 38px;
  box-shadow: var(--shadow-sm);
}
.ig-icon {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(45deg, #f9ce34, #ee2a7b 55%, #6228d7);
}
.ig-icon--retro {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(180deg, #f6d17a 0 28%, #b9784c 29% 58%, #5e3428 59% 100%);
  border: 3px solid #3b2a24;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.18), 0 10px 22px rgba(28, 36, 55, 0.14);
}
.ig-icon--retro::before {
  content: "";
  position: absolute;
  inset-block-start: 8px;
  inset-inline-start: 8px;
  inline-size: 13px;
  block-size: 13px;
  border-radius: 3px;
  background: #5f8fb7;
  border: 2px solid #2f211d;
}
.ig-icon--retro::after {
  content: "";
  position: absolute;
  inset-block-start: 9px;
  inset-inline-end: 9px;
  inline-size: 11px;
  block-size: 11px;
  border-radius: 999px;
  background: #2f211d;
}
.ig-retro-lens {
  inline-size: 26px;
  block-size: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at 38% 35%, #f8fbff 0 12%, #78a5c5 13% 30%, #26374b 31% 58%, #111827 59% 100%);
  border: 4px solid #2f211d;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.28);
}
.ig-text { flex: 1; min-width: 240px; }
.ig-text h3 { color: var(--navy); font-size: 1.25rem; margin-bottom: 6px; }
.ig-text p { color: var(--muted); font-size: 0.95rem; }
.btn-ig {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(28, 36, 55, 0.18);
}
.btn-ig:hover {
  background: var(--red-dark);
}

/* ---------- FAQ ---------- */
.faq-section { position: relative; overflow: hidden; }
.faq-list { display: grid; gap: 14px; }

/* FAQ item */
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}
.faq-item:hover {
  box-shadow: 0 8px 28px rgba(28, 36, 55, 0.10);
  border-color: rgba(224, 52, 70, 0.18);
  transform: translateY(-2px);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.2s ease;
}
.faq-item summary:hover { background: rgba(253, 238, 241, 0.35); }
.faq-item summary::-webkit-details-marker { display: none; }

/* Icon circle */
.faq-item__icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff2f4, #fff8f5);
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* Text wrapper */
.faq-item__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Toggle button */
.faq-item__toggle {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(224, 52, 70, 0.06);
  flex-shrink: 0;
  position: relative;
  transition: background 0.3s ease;
}
.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  background: var(--red);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item__toggle::before { width: 12px; height: 2px; }
.faq-item__toggle::after { width: 2px; height: 12px; }
.faq-item[open] .faq-item__toggle {
  background: var(--red);
}
.faq-item[open] .faq-item__toggle::before,
.faq-item[open] .faq-item__toggle::after {
  background: var(--white);
}
.faq-item[open] .faq-item__toggle::after {
  transform: rotate(90deg);
}

.faq-question { line-height: 1.45; font-size: 0.95rem; }

/* Answer */
.faq-answer {
  padding: 0 22px 22px 78px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
  animation: faqSlideDown 0.3s ease;
}
.faq-answer strong { color: var(--navy); }
@keyframes faqSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mid CTA */
.faq-mid-cta {
  margin-top: 8px;
  padding: 32px 28px;
  background: linear-gradient(135deg, #fff2f4, #fffaf7);
  border: 1px solid rgba(224, 52, 70, 0.1);
  border-radius: var(--radius);
  text-align: center;
}
.faq-mid-cta__icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.faq-mid-cta strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.faq-mid-cta p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

/* ---------- FAQ Labels (per kategori) ---------- */
.faq-label {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  width: fit-content;
  white-space: nowrap;
}
.faq-label--harga  { background: #fff0f0; color: #c0392b; }
.faq-label--info   { background: #eaf4fd; color: #2477b5; }
.faq-label--visa   { background: #fef5e7; color: #c77c14; }
.faq-label--muslim { background: #e8f8ee; color: #1e8449; }
.faq-label--bayar  { background: #f3eafd; color: #7d3c98; }
.faq-label--waktu  { background: #fdf2e9; color: #b94a1e; }
.faq-label--custom { background: #eaf8f8; color: #148f8f; }

/* ---------- Sakura Petals ---------- */
.sakura-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.sakura-petal {
  position: absolute;
  width: 18px;
  height: 18px;
  background: radial-gradient(ellipse at 30% 30%, #fce4ec, #f8bbd0);
  border-radius: 50% 0 50% 0;
  opacity: 0.35;
  animation: sakuraFloat 8s ease-in-out infinite;
}
.sp-1 { top: 8%;  left: 5%;  animation-delay: 0s;   width: 14px; height: 14px; }
.sp-2 { top: 15%; right: 8%; animation-delay: 1.5s; width: 20px; height: 20px; opacity: 0.25; }
.sp-3 { top: 40%; left: 3%;  animation-delay: 3s;   width: 16px; height: 16px; }
.sp-4 { top: 55%; right: 4%; animation-delay: 4.5s; width: 12px; height: 12px; opacity: 0.3; }
.sp-5 { top: 75%; left: 7%;  animation-delay: 2s;   width: 18px; height: 18px; opacity: 0.2; }
.sp-6 { top: 85%; right: 6%; animation-delay: 5.5s; width: 15px; height: 15px; }
@keyframes sakuraFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-12px) rotate(15deg); }
  50%      { transform: translateY(6px) rotate(-10deg); }
  75%      { transform: translateY(-8px) rotate(8deg); }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background:
    linear-gradient(120deg, rgba(176, 31, 56, 0.93), rgba(214, 48, 75, 0.88)),
    url("../assets/dest/cta-japan.jpg") center/cover;
  color: var(--white);
  text-align: center;
  padding: 90px 0;
}
.webp .cta-banner {
  background:
    linear-gradient(120deg, rgba(176, 31, 56, 0.93), rgba(214, 48, 75, 0.88)),
    url("../assets/dest/cta-japan.webp") center/cover;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin-bottom: 12px;
}
.cta-inner p { margin-bottom: 28px; color: rgba(255, 255, 255, 0.92); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255, 255, 255, 0.8); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 36px;
  padding: 64px 0 44px;
}
.brand-footer .brand-text { color: var(--white); }
.footer-desc { margin-top: 16px; font-size: 0.9rem; }
.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer ul li { margin-bottom: 10px; font-size: 0.9rem; }
.footer a:hover { color: var(--white); text-decoration: underline; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  font-size: 0.82rem;
  text-align: center;
}

.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 22px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}

.footer-legal a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  white-space: nowrap;
}

.footer-legal a + a::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 50%;
  width: 1px;
  height: 12px;
  translate: 0 -50%;
  background: rgba(255, 255, 255, 0.22);
}

.footer-legal a:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 700px) {
  .footer-bottom__inner {
    justify-content: center;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* ---------- Kalkulator estimasi ---------- */
.est-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 34px 28px;
  box-shadow: var(--shadow-sm);
}
.est-form { display: grid; grid-template-columns: 2fr 1fr; gap: 18px; }
.est-form label { display: block; font-weight: 700; font-size: 0.85rem; color: var(--navy); margin-bottom: 6px; }
.est-form select, .est-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.est-form select:hover, .est-form input:hover {
  border-color: #c9cdd4;
}
.est-form select:focus, .est-form input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 52, 70, 0.15);
}
.est-form select:focus-visible, .est-form input:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.est-hasil {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 22px 0 18px;
}
.est-hasil > div {
  background: var(--pink);
  border-radius: 14px;
  padding: 16px 20px;
}
.est-hasil small { display: block; color: var(--muted); font-size: 0.78rem; margin-bottom: 2px; }
.est-hasil strong { font-size: 1.55rem; font-weight: 800; color: var(--red-dark); font-variant-numeric: tabular-nums; }
.est-catatan { color: var(--muted); font-size: 0.8rem; margin-top: 14px; }
@media (max-width: 560px) {
  .est-form, .est-hasil { grid-template-columns: 1fr; }
}

/* ---------- Tips & trik ---------- */
.tips-kelompok { margin: 44px 0 18px; }
.tips-kelompok:first-of-type { margin-top: 0; }
.tips-judul { font-size: 1.3rem; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.tips-judul span { font-size: 1.5rem; }
.tips-sub { color: var(--muted); font-size: 0.92rem; margin-top: 2px; }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-bottom: 10px;
}
.tips-grid {
  align-items: start;
}

/* Kartu tips = <details>, isi tersembunyi sampai diklik */
.tips-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.tips-card:hover {
  transform: translateY(-3px) rotate(-0.35deg);
  border-color: rgba(224, 52, 70, 0.3);
  box-shadow: 0 16px 34px rgba(12, 17, 32, 0.1);
}

.tips-card[open] {
  border-left-color: var(--red-dark);
  box-shadow: 0 18px 38px rgba(12, 17, 32, 0.11);
}

.tips-card summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.tips-card summary::-webkit-details-marker { display: none; }
.tips-card summary::marker { content: ""; }

.tips-card summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -3px;
  border-radius: 14px;
}

.tips-card__ikon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(224, 52, 70, 0.1);
  font-size: 1.15rem;
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.4), background 0.22s ease;
}

.tips-card:hover .tips-card__ikon {
  transform: rotate(-8deg) scale(1.08);
}

.tips-card[open] .tips-card__ikon {
  background: rgba(224, 52, 70, 0.18);
  transform: rotate(6deg) scale(1.06);
}

.tips-card__judul {
  flex: 1 1 auto;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.tips-card__hint {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(224, 52, 70, 0.09);
  color: var(--red-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.22s ease;
}

.tips-card:hover .tips-card__hint {
  background: rgba(224, 52, 70, 0.16);
}

.tips-card__chev {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  transition: transform 0.28s ease;
}

.tips-card[open] .tips-card__chev {
  transform: rotate(180deg);
}

.tips-card[open] .tips-card__hint-teks::after {
  content: " tutup";
}

.tips-card__isi {
  padding: 0 20px 20px 70px;
  animation: tips-buka 0.3s ease both;
}

.tips-card__isi p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.tips-card__isi::before {
  content: "";
  display: block;
  height: 1px;
  margin: 0 0 12px -50px;
  background: linear-gradient(90deg, rgba(224, 52, 70, 0.28), transparent);
}

@keyframes tips-buka {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .tips-card summary { padding: 15px 16px; gap: 10px; }
  .tips-card__hint-teks { display: none; }
  .tips-card__isi { padding: 0 16px 18px 16px; }
  .tips-card__isi::before { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .tips-card,
  .tips-card__ikon,
  .tips-card__chev { transition: none; }
  .tips-card:hover { transform: none; }
  .tips-card__isi { animation: none; }
}

/* ---------- Multi-halaman: topbar, site guide, journey ---------- */
.page-spacer {
  height: 46px;
  background: var(--cream);
}

@media (max-width: 520px) {
  .page-spacer {
    height: 52px;
  }
}

/* ---------- 404 halaman tidak ditemukan ---------- */
.not-found-page {
  overflow: hidden;
  background: var(--cream);
}

.not-found-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 46px);
  display: grid;
  align-items: center;
  padding: clamp(70px, 9vw, 118px) 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(253, 238, 241, 0.95), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.82), transparent 24%),
    linear-gradient(135deg, #fffaf7 0%, #fff3f5 48%, #fdeef1 100%);
}

.not-found-bg,
.not-found-orb,
.not-found-petal {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.not-found-orb {
  width: clamp(180px, 24vw, 340px);
  height: clamp(180px, 24vw, 340px);
  border-radius: 50%;
  border: 1px solid rgba(224, 52, 70, 0.12);
}

.not-found-orb--one {
  inset: 9% auto auto 5%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.78), rgba(253, 238, 241, 0.34) 64%, transparent 65%);
}

.not-found-orb--two {
  inset: auto 7% 9% auto;
  background: radial-gradient(circle, rgba(224, 52, 70, 0.08), transparent 68%);
}

.not-found-petal {
  inset: auto;
  width: 18px;
  height: 26px;
  border-radius: 70% 20% 70% 20%;
  background: rgba(224, 52, 70, 0.22);
  transform: rotate(28deg);
  filter: blur(0.1px);
}

.not-found-petal:nth-child(3) { left: 18%; top: 28%; }
.not-found-petal:nth-child(4) { right: 24%; top: 18%; transform: rotate(-18deg) scale(0.8); }
.not-found-petal:nth-child(5) { right: 16%; bottom: 26%; transform: rotate(48deg) scale(1.1); }

.not-found-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.not-found-card {
  position: relative;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(224, 52, 70, 0.16);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 28px 80px rgba(96, 30, 46, 0.14);
  backdrop-filter: blur(18px);
}

.not-found-title {
  max-width: 720px;
  margin-top: 10px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.not-found-copy {
  max-width: 620px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.not-found-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.not-found-links a {
  padding: 7px 12px;
  border: 1px solid rgba(224, 52, 70, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--red-dark);
  font-weight: 800;
}

.not-found-links a:hover {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
}

.not-found-visual {
  position: relative;
  min-height: 430px;
  border-radius: 38px;
  background:
    linear-gradient(rgba(28, 36, 55, 0.1), rgba(28, 36, 55, 0.46)),
    url("../assets/hero-fuji-sakura.jpg") center/cover;
  box-shadow: 0 32px 90px rgba(28, 36, 55, 0.22);
  overflow: hidden;
}

.not-found-visual::after {
  content: "";
  position: absolute;
  inset: auto -20% -28% -20%;
  height: 52%;
  background: radial-gradient(ellipse at center, rgba(255, 250, 247, 0.92), rgba(255, 250, 247, 0) 68%);
}

.not-found-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.not-found-map {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 250, 247, 0.9);
  box-shadow: 0 18px 44px rgba(28, 36, 55, 0.16);
}

.not-found-map strong,
.not-found-map em {
  color: var(--navy);
  font-style: normal;
  font-weight: 800;
}

.map-line {
  height: 2px;
  background: linear-gradient(90deg, var(--red), rgba(224, 52, 70, 0.2));
}

.map-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(224, 52, 70, 0.13);
}

@media (max-width: 860px) {
  .not-found-wrap {
    grid-template-columns: 1fr;
  }

  .not-found-visual {
    min-height: 280px;
  }
}

@media (max-width: 520px) {
  .not-found-hero {
    padding-block: 42px 64px;
  }

  .not-found-card {
    border-radius: 26px;
  }

  .not-found-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .not-found-visual {
    min-height: 240px;
    border-radius: 28px;
  }

  .not-found-badge {
    width: 78px;
    height: 78px;
    font-size: 1.72rem;
  }

  .not-found-map {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.explore-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.explore-card--primary {
  border-color: color-mix(in srgb, var(--red), white 78%);
  background: linear-gradient(180deg, #fff8fa, #ffffff);
}
.explore-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #f3b8c4; }
.explore-icon {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--pink);
  border-radius: 12px;
  margin-bottom: 4px;
}
.explore-card h3 { color: var(--navy); font-size: 0.98rem; line-height: 1.3; }
.explore-card p { color: var(--muted); font-size: 0.82rem; line-height: 1.45; }
.explore-go { color: var(--red); font-weight: 700; font-size: 0.82rem; margin-top: 6px; }

.journey { padding: 6px 0 80px; background: var(--cream); }
.journey-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px dashed var(--line);
  padding-top: 28px;
}
.journey-prev { color: var(--muted); font-weight: 600; }
a.journey-prev:hover { color: var(--red); }
.journey-hint {
  font-family: "DM Serif Display", "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--brown);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}
.journey-hint [lang="ja"] {
  font-style: italic;
  font-size: 1.35rem;
  color: var(--red-dark);
  opacity: 1;
}

/* ---------- Galeri klien ---------- */
.gallery-grid {
  columns: 4 240px;
  column-gap: 16px;
  margin-bottom: 44px;
}
.gallery-item {
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--pink);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ---------- Berita / Japan Updates ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.news-grid { align-items: start; }

/* Kartu berita = <details>, isi berita tersembunyi sampai judul diklik */
.news-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 52, 70, 0.28);
  box-shadow: var(--shadow);
}
.news-card[open] {
  border-color: rgba(224, 52, 70, 0.32);
  box-shadow: 0 18px 38px rgba(12, 17, 32, 0.11);
}

.news-card summary {
  padding: 24px 24px 20px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.news-card summary::-webkit-details-marker { display: none; }
.news-card summary::marker { content: ""; }
.news-card summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -3px;
  border-radius: var(--radius);
}

.news-card summary h3 { margin-bottom: 0; }
.news-card:hover summary h3 { color: var(--red-dark); }

.news-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 700;
}

.news-toggle__chev {
  display: inline-block;
  font-size: 0.72rem;
  line-height: 1;
  transition: transform 0.28s ease;
}
.news-card[open] .news-toggle__chev { transform: rotate(180deg); }
.news-card[open] .news-toggle__teks::after { content: " (tutup)"; }

.news-card__isi {
  padding: 0 24px 24px;
  animation: news-buka 0.3s ease both;
}
.news-card__isi::before {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, rgba(224, 52, 70, 0.28), transparent);
}

@keyframes news-buka {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .news-card summary { padding: 20px 18px 16px; }
  .news-card__isi { padding: 0 18px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .news-card, .news-toggle__chev { transition: none; }
  .news-card:hover { transform: none; }
  .news-card__isi { animation: none; }
}
.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.news-tag {
  background: var(--pink);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.news-meta time { color: var(--muted); font-size: 0.8rem; }
.news-card h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 10px; line-height: 1.35; }
.news-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.news-links { margin-bottom: 16px; }
.news-links li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.news-links li::before { content: "\2192"; position: absolute; left: 0; color: var(--red); }
.news-links a:hover { color: var(--red); text-decoration: underline; }
.news-src { margin-top: auto; color: var(--red); font-weight: 700; font-size: 0.88rem; }
.news-src:hover { text-decoration: underline; }
.news-disclaimer {
  margin-top: 34px;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  max-width: 720px;
  margin-inline: auto;
}

/* ---------- Linktree / Link Bio ---------- */
.linkhub-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(253, 238, 241, 0.95), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.86), transparent 26%),
    linear-gradient(160deg, #fffaf7 0%, #fff0f4 48%, #fdeef1 100%);
}
.linkhub-page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(28px, 6vw, 60px) 18px;
  overflow: hidden;
}
.linkhub-page::before,
.linkhub-page::after {
  content: "";
  position: absolute;
  width: clamp(220px, 32vw, 420px);
  height: clamp(220px, 32vw, 420px);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.linkhub-page::before {
  top: -110px;
  right: -120px;
  background: radial-gradient(circle, rgba(224, 52, 70, 0.16), transparent 68%);
}
.linkhub-page::after {
  bottom: -130px;
  left: -120px;
  background: radial-gradient(circle, rgba(63, 157, 88, 0.12), transparent 70%);
}
.linkhub-card {
  width: min(480px, 100%);
  padding: clamp(22px, 5vw, 34px);
  border: 1px solid rgba(224, 52, 70, 0.16);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 80px rgba(96, 30, 46, 0.16);
  backdrop-filter: blur(18px);
}
.linkhub-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 22px;
}
.linkhub-mini,
.linkhub-share,
.linkhub-more {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(224, 52, 70, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--red-dark);
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}
.linkhub-share {
  font: inherit;
  cursor: pointer;
}
.linkhub-mini:hover,
.linkhub-share:hover,
.linkhub-more:hover {
  transform: translateY(-2px);
  background: var(--red);
  color: var(--white);
}
.linkhub-profile {
  text-align: center;
}
.linkhub-avatar {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin: 0 auto 18px;
  padding: 16px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 42px rgba(224, 52, 70, 0.28);
}
.linkhub-avatar img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.linkhub-profile h1 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.linkhub-profile p {
  max-width: 320px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.linkhub-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.linkhub-link {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 9px 12px 9px 10px;
  border: 1px solid rgba(224, 52, 70, 0.16);
  border-radius: 20px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  font-weight: 850;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.linkhub-link:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 52, 70, 0.36);
  box-shadow: var(--shadow);
}
.linkhub-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--pink);
  font-size: 1.18rem;
}
.linkhub-more {
  width: 32px;
  height: 32px;
  box-shadow: none;
  color: var(--muted);
}
.linkhub-empty {
  margin-top: 24px;
  padding: 18px;
  border: 1px dashed rgba(224, 52, 70, 0.3);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
  background: rgba(255, 255, 255, 0.62);
}
.linkhub-footer {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}
.linkhub-footer a:hover {
  color: var(--red);
}
@media (max-width: 460px) {
  .linkhub-card { border-radius: 26px; }
  .linkhub-avatar { width: 98px; height: 98px; border-radius: 26px; }
  .linkhub-link { grid-template-columns: 40px minmax(0, 1fr) 30px; border-radius: 18px; }
  .linkhub-icon { width: 40px; height: 40px; }
}

/* Link Bio visual refresh */
.linkhub-body {
  background:
    linear-gradient(180deg, rgba(20, 26, 45, 0.16), rgba(96, 30, 46, 0.10)),
    var(--linkhub-bg, url("../assets/hero-fuji-sakura.jpg")) center/cover fixed,
    linear-gradient(160deg, #fffaf7, #fdeef1);
}
.linkhub-page {
  padding: clamp(22px, 5vw, 54px) 16px;
}
.linkhub-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.linkhub-decor--fuji {
  width: min(680px, 92vw);
  height: 220px;
  left: 50%;
  bottom: -58px;
  transform: translateX(-50%);
  opacity: 0.12;
  background: linear-gradient(135deg, transparent 50%, var(--navy) 50.5%) left bottom/50% 100% no-repeat,
              linear-gradient(225deg, transparent 50%, var(--navy) 50.5%) right bottom/50% 100% no-repeat;
  filter: blur(0.2px);
}
.linkhub-decor--sakura {
  right: clamp(18px, 10vw, 130px);
  top: clamp(24px, 10vw, 96px);
  color: rgba(255, 255, 255, 0.24);
  font-size: clamp(5rem, 16vw, 11rem);
  font-weight: 900;
  line-height: 1;
  transform: rotate(-12deg);
}
.linkhub-petals {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.linkhub-petals span {
  position: absolute;
  top: -8vh;
  left: var(--petal-left, 50%);
  width: var(--petal-size, 15px);
  height: calc(var(--petal-size, 15px) * 1.35);
  border-radius: 80% 18% 72% 25%;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,.9), rgba(255,178,194,.82) 48%, rgba(224,52,70,.42));
  box-shadow: 0 8px 22px rgba(224,52,70,.18);
  opacity: var(--petal-opacity, .72);
  transform: rotate(28deg);
  animation: linkhub-petal-fall var(--petal-speed, 10s) linear infinite;
  animation-delay: var(--petal-delay, 0s);
}
.linkhub-petals span:nth-child(1) { --petal-left: 8%; --petal-size: 13px; --petal-speed: 9s; --petal-delay: -1s; }
.linkhub-petals span:nth-child(2) { --petal-left: 18%; --petal-size: 18px; --petal-speed: 12s; --petal-delay: -5s; --petal-opacity: .55; }
.linkhub-petals span:nth-child(3) { --petal-left: 29%; --petal-size: 12px; --petal-speed: 10s; --petal-delay: -3s; }
.linkhub-petals span:nth-child(4) { --petal-left: 41%; --petal-size: 16px; --petal-speed: 13s; --petal-delay: -8s; --petal-opacity: .62; }
.linkhub-petals span:nth-child(5) { --petal-left: 52%; --petal-size: 11px; --petal-speed: 8.5s; --petal-delay: -2s; }
.linkhub-petals span:nth-child(6) { --petal-left: 63%; --petal-size: 17px; --petal-speed: 12.5s; --petal-delay: -6s; --petal-opacity: .58; }
.linkhub-petals span:nth-child(7) { --petal-left: 74%; --petal-size: 14px; --petal-speed: 9.8s; --petal-delay: -4s; }
.linkhub-petals span:nth-child(8) { --petal-left: 84%; --petal-size: 19px; --petal-speed: 14s; --petal-delay: -9s; --petal-opacity: .52; }
.linkhub-petals span:nth-child(9) { --petal-left: 93%; --petal-size: 12px; --petal-speed: 11s; --petal-delay: -7s; }
.linkhub-petals span:nth-child(10) { --petal-left: 35%; --petal-size: 15px; --petal-speed: 15s; --petal-delay: -11s; --petal-opacity: .48; }
.linkhub-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(520px, 100%);
  padding: clamp(20px, 5vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,250,247,.78)),
    radial-gradient(circle at 18% 10%, rgba(253,238,241,.9), transparent 32%);
  box-shadow: 0 34px 90px rgba(28, 36, 55, 0.24);
}
.linkhub-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(224, 52, 70, 0.12);
  border-radius: 28px;
  pointer-events: none;
}
.linkhub-top,
.linkhub-profile,
.linkhub-links,
.linkhub-footer {
  position: relative;
  z-index: 1;
}
.linkhub-mini,
.linkhub-share {
  background: rgba(255,255,255,.86);
  border-color: rgba(255,255,255,.72);
  box-shadow: 0 12px 28px rgba(28,36,55,.12);
}
.linkhub-eyebrow {
  display: inline-flex;
  width: auto;
  margin: 0 auto 24px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(224, 52, 70, 0.10);
  color: var(--red-dark) !important;
  font-size: 0.76rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.linkhub-avatar {
  width: 132px;
  height: 132px;
  margin-bottom: 22px;
  padding: 18px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,244,246,.82));
  border: 1px solid rgba(224, 52, 70, 0.16);
  box-shadow: 0 20px 50px rgba(224, 52, 70, 0.18);
}
.linkhub-avatar img {
  filter: drop-shadow(0 8px 16px rgba(96,30,46,.12));
}
.linkhub-profile h1 {
  font-family: "DM Serif Display", Georgia, serif;
  text-transform: none;
  font-size: clamp(2.05rem, 7.4vw, 2.85rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}
.linkhub-profile p {
  max-width: 380px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.linkhub-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 15px;
}
.linkhub-pills span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(224, 52, 70, 0.12);
  color: var(--brown);
  font-size: 0.72rem;
  font-weight: 850;
}
.linkhub-links {
  gap: 14px;
  margin-top: 30px;
}
.linkhub-link {
  position: relative;
  overflow: hidden;
  grid-template-columns: 48px minmax(0, 1fr) 34px;
  min-height: 72px;
  padding: 11px 13px 11px 11px;
  border: 1px solid rgba(255,255,255,.76);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,248,250,.78));
  box-shadow: 0 16px 36px rgba(28,36,55,.11), inset 0 1px 0 rgba(255,255,255,.82);
}
.linkhub-link::before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 10px;
  width: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.56), rgba(255,255,255,0));
  pointer-events: none;
}
.linkhub-link:hover::before { opacity: 1; }
.linkhub-link strong {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.linkhub-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  color: inherit;
  font-size: 1.28rem;
  line-height: 1;
  background: linear-gradient(135deg, #fff4f6, #ffe6ec);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.86), 0 10px 22px rgba(224,52,70,.10);
}
.linkhub-link:nth-child(2) .linkhub-icon {
  background: linear-gradient(135deg, #eef9ff, #dff1ff);
}
.linkhub-link:nth-child(3) .linkhub-icon {
  background: linear-gradient(135deg, #f4efff, #eadfff);
}
.linkhub-link:nth-child(4) .linkhub-icon {
  background: linear-gradient(135deg, #effbf5, #ddf6ea);
}
.linkhub-more {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--navy), #263858);
  color: var(--white);
  border: 0;
  box-shadow: 0 9px 18px rgba(16,26,47,.16);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}
.linkhub-link:hover .linkhub-more {
  transform: translateX(3px) scale(1.04);
  background: linear-gradient(135deg, var(--red), #ff6f89);
  box-shadow: 0 10px 20px rgba(224,52,70,.2);
}
.linkhub-footer {
  margin-top: 26px;
}
@media (max-width: 460px) {
  .linkhub-card { border-radius: 30px; }
  .linkhub-card::before { inset: 8px; border-radius: 24px; }
  .linkhub-avatar { width: 112px; height: 112px; border-radius: 34px; }
  .linkhub-link { grid-template-columns: 48px minmax(0, 1fr) 34px; gap: 12px; padding-left: 11px; }
  .linkhub-icon { width: 48px; height: 48px; }
  .linkhub-pills span { font-size: 0.68rem; }
}

/* Link Bio entrance animation */
.linkhub-card {
  animation: linkhub-card-pop 0.6s cubic-bezier(0.18, 0.88, 0.24, 1) both;
}
.linkhub-top,
.linkhub-footer {
  opacity: 0;
  animation: linkhub-rise 0.5s ease both;
}
.linkhub-top { animation-delay: 0.16s; }
.linkhub-eyebrow,
.linkhub-profile > h1,
.linkhub-profile > p,
.linkhub-pills {
  opacity: 0;
  animation: linkhub-rise 0.5s cubic-bezier(0.18, 0.88, 0.24, 1) both;
}
.linkhub-eyebrow { animation-delay: 0.24s; }
.linkhub-avatar {
  opacity: 0;
  animation: linkhub-avatar-pop 0.7s cubic-bezier(0.18, 0.9, 0.3, 1.3) both;
  animation-delay: 0.1s;
}
.linkhub-profile > h1 { animation-delay: 0.34s; }
.linkhub-profile > p { animation-delay: 0.42s; }
.linkhub-pills { animation-delay: 0.5s; }
.linkhub-link {
  opacity: 0;
  animation: linkhub-link-in 0.5s cubic-bezier(0.18, 0.88, 0.24, 1) both;
}
.linkhub-link:nth-child(1) { animation-delay: 0.56s; }
.linkhub-link:nth-child(2) { animation-delay: 0.64s; }
.linkhub-link:nth-child(3) { animation-delay: 0.72s; }
.linkhub-link:nth-child(4) { animation-delay: 0.8s; }
.linkhub-link:nth-child(5) { animation-delay: 0.88s; }
.linkhub-link:nth-child(6) { animation-delay: 0.96s; }
.linkhub-link:nth-child(7) { animation-delay: 1.04s; }
.linkhub-link:nth-child(8) { animation-delay: 1.12s; }
.linkhub-footer { animation-delay: 0.86s; }
.linkhub-link:active {
  transform: scale(0.97);
  box-shadow: 0 6px 16px rgba(28, 36, 55, 0.12);
}
.linkhub-pills span {
  animation: linkhub-pill-in 0.4s ease both;
}
.linkhub-pills span:nth-child(1) { animation-delay: 0.52s; }
.linkhub-pills span:nth-child(2) { animation-delay: 0.58s; }
.linkhub-pills span:nth-child(3) { animation-delay: 0.64s; }
.linkhub-pills span:nth-child(4) { animation-delay: 0.7s; }
.linkhub-pills span:nth-child(5) { animation-delay: 0.76s; }
.linkhub-mini:hover,
.linkhub-share:hover {
  transform: translateY(-3px) scale(1.05);
}
.linkhub-avatar {
  animation: linkhub-avatar-pop 0.7s cubic-bezier(0.18, 0.9, 0.3, 1.3) both, linkhub-float 6s ease-in-out 1.2s infinite;
}
.linkhub-share {
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

/* Spacing guard: pastikan badge, logo, dan teks tidak saling nempel */
.linkhub-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.linkhub-profile .linkhub-eyebrow {
  margin: 0 0 30px !important;
}
.linkhub-profile .linkhub-avatar {
  margin: 0 auto 28px !important;
}
.linkhub-profile h1 {
  margin-top: 0;
}

@keyframes linkhub-card-pop {
  from { opacity: 0; transform: translateY(22px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes linkhub-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes linkhub-avatar-pop {
  0% { opacity: 0; transform: scale(0.5) rotate(-8deg); }
  70% { opacity: 1; transform: scale(1.06) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes linkhub-link-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes linkhub-pill-in {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes linkhub-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes linkhub-petal-fall {
  0% {
    transform: translate3d(0, -10vh, 0) rotate(0deg);
  }
  35% {
    transform: translate3d(28px, 35vh, 0) rotate(150deg);
  }
  70% {
    transform: translate3d(-24px, 72vh, 0) rotate(285deg);
  }
  100% {
    transform: translate3d(22px, 112vh, 0) rotate(420deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .linkhub-card,
  .linkhub-top,
  .linkhub-footer,
  .linkhub-eyebrow,
  .linkhub-avatar,
  .linkhub-profile > h1,
  .linkhub-profile > p,
  .linkhub-pills,
  .linkhub-pills span,
  .linkhub-link,
  .linkhub-petals span {
    opacity: 1 !important;
    animation: none !important;
    transform: none;
  }
  .linkhub-petals { display: none; }
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float--compact {
  width: 50px;
  height: 50px;
  bottom: 22px;
}
.wa-float--compact span { display: none; }
@keyframes wa-pulse {
  0%   { box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70%  { box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}
.wa-float span {
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  min-width: 23ch;
  min-height: 37px;
  background: linear-gradient(135deg, #effcf4 0%, #dff7e8 100%);
  color: #166534;
  border: 1px solid rgba(37, 211, 102, 0.16);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.16);
}

.wa-float span.is-typing::after {
  content: "";
  width: 1px;
  height: 0.95em;
  margin-left: 3px;
  background: rgba(22, 101, 52, 0.72);
  animation: wa-type-cursor 0.9s steps(1) infinite;
}

@keyframes wa-type-cursor {
  50% { opacity: 0; }
}

/* ---------- Conversion CRO modules ---------- */
.trip-match-card .btn-ghost,
.proposal-card .btn-ghost,
.package-quiz .btn-ghost,
.season-calendar .btn-ghost,
.private-trip-preview .btn-ghost,
.faq-mid-cta .btn-ghost {
  color: var(--red-dark);
  border-color: rgba(224, 52, 70, 0.34);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: none;
}
.trip-match-card .btn-ghost:hover,
.proposal-card .btn-ghost:hover,
.package-quiz .btn-ghost:hover,
.season-calendar .btn-ghost:hover,
.private-trip-preview .btn-ghost:hover,
.faq-mid-cta .btn-ghost:hover { background: #fff2f4; }
.section-head--compact { margin-bottom: 18px; }
.section-title--sm { font-size: clamp(1.6rem, 2.5vw, 2.1rem); }
.trip-match-grid,
.proposal-compare,
.private-compare-grid,
.client-journey-grid,
.package-quiz__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.trip-match-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.trip-match-card,
.proposal-card,
.private-compare-card,
.journey-step-card,
.package-quiz,
.package-quiz__card,
.private-trip-preview,
.faq-mid-cta,
.faq-trust-strip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.trip-match-card,
.proposal-card,
.private-compare-card,
.journey-step-card,
.package-quiz__card,
.private-trip-preview,
.faq-mid-cta { padding: 26px; }
.trip-match-card { padding: 20px; }
.package-quiz { padding: 28px; margin-bottom: 34px; }
.trip-match-step,
.proposal-label,
.faq-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: var(--pink);
  color: var(--red-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  margin-bottom: 10px;
}
.trip-match-card h3,
.proposal-card h3,
.private-compare-card h3,
.journey-step-card strong,
.package-quiz__card h4 { color: var(--navy); font-size: 1.08rem; }
.trip-match-card h3 { font-size: 1rem; line-height: 1.3; }
.private-compare-card h3 { line-height: 1.45; max-width: 92%; }
.private-compare-card .btn { margin-top: 4px; }
.trip-match-card p,
.proposal-card li,
.private-compare-card li,
.journey-step-card p,
.package-quiz__card p,
.faq-mid-cta p { color: var(--muted); font-size: 0.92rem; }
.trip-match-card p { font-size: 0.88rem; line-height: 1.5; }
.trip-match-tags,
.trip-match-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.trip-match-tags { margin-top: 12px; }
.trip-match-tags span {
  border-radius: 999px;
  background: #fff6f8;
  border: 1px solid rgba(224, 52, 70, 0.14);
  color: var(--brown);
  padding: 6px 10px;
  font-size: 0.76rem;
  font-weight: 700;
}
.trip-match-actions { margin-top: 14px; }
.trip-match-actions--center { justify-content: center; margin-top: 24px; }
.client-journey-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.journey-step-card {
  padding: 18px;
}
.journey-step-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}
.journey-step-card p {
  margin-top: 6px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.proposal-card ul,
.private-compare-card ul,
.season-calendar--rich ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
}
.private-compare-card ul { gap: 12px; margin-top: 18px; }
.proposal-card li,
.private-compare-card li,
.season-calendar--rich li { position: relative; padding-left: 22px; }
.private-compare-card li { line-height: 1.65; }
.proposal-card li::before,
.private-compare-card li::before,
.season-calendar--rich li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--leaf);
  font-weight: 900;
}
.proposal-card--before,
.private-compare-card--muted { background: #fff8f5; }
.proposal-card--before li::before,
.private-compare-card--muted li::before { content: "•"; color: var(--red); }
.private-trip-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, .9fr);
  gap: 22px;
  align-items: center;
  background: linear-gradient(135deg, #fff, #fff3f5);
}
.private-trip-preview .trip-match-actions { grid-column: 1 / -1; }
.client-journey-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.journey-step-card { border-left: 4px solid var(--red); }
.package-quiz__grid label,
.est-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
  color: var(--navy);
  font-size: 0.86rem;
}
.package-quiz__grid select,
.est-form--rich select,
.est-form--rich input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  background: var(--white);
  color: var(--ink);
}
.package-quiz__result {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 18px;
}
.package-quiz__card { box-shadow: none; background: #fffaf7; }
.package-itinerary { display: grid; gap: 28px; margin-top: 20px; }
.package-itinerary__item {
  border-left: 3px solid var(--red);
  background: #fff8f5;
  border-radius: 12px;
  padding: 16px 18px;
}
.package-itinerary__item strong { color: var(--navy); }
.package-itinerary__item p { color: var(--muted); font-size: 0.88rem; margin-top: 4px; }
.est-catatan--spaced { margin-top: 8px; }
.est-form--rich { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.est-hasil--rich { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
.season-calendar--rich article {
  cursor: default;
  display: flex;
  flex-direction: column;
}
.season-calendar--rich ul {
  margin-bottom: 16px;
  flex: 1;
}
.season-calendar--rich li { color: var(--muted); font-size: 0.84rem; }
.season-calendar--rich .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  min-height: 44px;
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 800;
}
.faq-trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  margin-bottom: 20px;
  background: #fff8f5;
}
.faq-trust-strip span {
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(224, 52, 70, 0.16);
  color: var(--brown);
  padding: 7px 12px;
  font-weight: 800;
  font-size: 0.82rem;
}
.faq-item summary { align-items: flex-start; justify-content: flex-start; }
.faq-item summary::after { margin-left: auto; }
.faq-label { margin: 0 10px 0 0; flex: 0 0 auto; }
.faq-mid-cta { margin: 4px 0; background: linear-gradient(135deg, #fff2f4, #fffaf7); }
.faq-mid-cta strong { display: block; color: var(--navy); font-size: 1.05rem; margin-bottom: 6px; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  body.nav-lock { overflow: hidden; }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 104;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  }

  .header.scrolled .nav-toggle,
  .header.nav-open .nav-toggle {
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 28px rgba(28, 36, 55, 0.12);
  }

  .header::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 101;
    background:
      radial-gradient(circle at 18% 18%, rgba(255, 214, 223, 0.28), transparent 28%),
      rgba(28, 36, 55, 0.28);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(0);
    transition: opacity 0.36s ease, backdrop-filter 0.36s ease;
  }

  .header.nav-open::after {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(3px);
  }

  .nav {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 103;
    width: min(344px, calc(100vw - 24px));
    height: calc(100vh - 24px);
    overflow: hidden;
    flex-direction: column;
    gap: 10px;
    padding: 92px 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 30px;
    background:
      radial-gradient(circle at 82% 8%, rgba(255, 214, 223, 0.96), transparent 24%),
      radial-gradient(circle at 10% 78%, rgba(255, 246, 248, 0.92), transparent 30%),
      linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 249, 0.94));
    box-shadow: -18px 24px 70px rgba(28, 36, 55, 0.24);
    transform: translateX(calc(100% + 28px)) scale(0.96);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.46s cubic-bezier(0.18, 0.88, 0.24, 1),
      opacity 0.32s ease,
      visibility 0s linear 0.46s;
  }

  .nav::before {
    content: "🍓 Ichigo Tour";
    position: absolute;
    top: 28px;
    left: 22px;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(224, 52, 70, 0.1);
    color: var(--red-dark);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.04em;
  }

  .nav::after {
    content: "桜";
    position: absolute;
    right: -12px;
    bottom: -32px;
    color: rgba(224, 52, 70, 0.09);
    font-family: var(--font-display);
    font-size: 9rem;
    line-height: 1;
    pointer-events: none;
  }

  .header.nav-open .nav {
    transform: translateX(0) scale(1);
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  .nav .nav-link {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid rgba(224, 52, 70, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font-size: 1.04rem;
    box-shadow: 0 12px 26px rgba(96, 30, 46, 0.07);
    opacity: 0;
    transform: translateX(20px);
    transition:
      opacity 0.34s ease,
      transform 0.42s cubic-bezier(0.18, 0.88, 0.24, 1),
      border-color 0.22s ease,
      background 0.22s ease,
      color 0.22s ease;
  }

  .nav .nav-link::after {
    content: "→";
    color: var(--red);
    opacity: 0.55;
    transform: translateX(-4px);
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .nav .nav-link:hover,
  .nav .nav-link.active {
    border-color: rgba(224, 52, 70, 0.26);
    background: rgba(255, 255, 255, 0.94);
    color: var(--red-dark);
  }

  .nav .nav-link:hover::after,
  .nav .nav-link.active::after {
    opacity: 1;
    transform: translateX(0);
  }

  .header.nav-open .nav .nav-link {
    opacity: 1;
    transform: translateX(0);
  }

  .header.nav-open .nav .nav-link:nth-child(1) { transition-delay: 0.08s; }
  .header.nav-open .nav .nav-link:nth-child(2) { transition-delay: 0.13s; }
  .header.nav-open .nav .nav-link:nth-child(3) { transition-delay: 0.18s; }
  .header.nav-open .nav .nav-link:nth-child(4) { transition-delay: 0.23s; }
  .header.nav-open .nav .nav-link:nth-child(5) { transition-delay: 0.28s; }
  .header.nav-open .nav .nav-link:nth-child(6) { transition-delay: 0.33s; }
  .header.nav-open .nav .nav-link:nth-child(7) { transition-delay: 0.38s; }

  .section { padding: 46px 0 70px; }
  .custom-cta { text-align: center; justify-content: center; }
}

@media (max-width: 520px) {
  .page-topbar {
    padding: 70px 0 10px;
  }

  .crumbs {
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .hero-inner { padding-top: 94px; }
  .hero-stats { gap: 14px 26px; }
  .stat strong { font-size: 1.3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .package-foot { flex-direction: column; align-items: stretch; }
  .package-foot .btn { justify-content: center; }
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-float span { display: none; }
  .trip-match-grid { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: 1fr; }
  .client-journey-grid { grid-template-columns: 1fr; }
  .private-trip-preview { grid-template-columns: 1fr; }
  .faq-label { margin: 0 0 6px; }
  .faq-item summary { flex-wrap: wrap; gap: 8px; }
  .faq-item summary::after { position: absolute; right: 18px; top: 20px; }
  .faq-item { position: relative; }
}


/* ---------- Cost estimator floating popup ---------- */
.estimate-float {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 92;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  width: auto;
  max-width: min(280px, calc(100vw - 48px));
  padding: 12px 18px 13px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), #b8243a);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(224, 52, 70, 0.34);
  cursor: pointer;
  text-align: left;
  animation: float-bob 3.2s ease-in-out infinite;
}

.estimate-float span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
}

.estimate-float strong {
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.15;
}

.estimate-float:hover {
  transform: translateY(-3px);
}

@keyframes float-bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

.est-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  padding: 24px;
}

.est-modal.is-open {
  display: grid;
  place-items: center;
}

.modal-open {
  overflow: hidden;
}

.est-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 26, 45, 0.68);
  backdrop-filter: blur(8px);
}

.est-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  border-radius: 24px;
  background: var(--cream);
  box-shadow: 0 26px 70px rgba(12, 17, 32, 0.38);
  padding: clamp(22px, 4vw, 34px);
}

.est-modal__head {
  margin-bottom: 22px;
}

.est-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.est-modal .est-card {
  box-shadow: none;
}

@media (max-width: 640px) {
  .estimate-float {
    right: 14px;
    left: 14px;
    bottom: 82px;
    max-width: none;
    align-items: center;
    text-align: center;
    border-radius: 999px;
  }

  .est-modal {
    padding: 14px;
  }
}


.section-action {
  margin-top: 34px;
  text-align: center;
}

.why-testi-grid {
  margin-top: 8px;
}

.lead-form,
.legal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(22px, 4vw, 34px);
}

/* ---------- Legal pages (terms / privacy / cancellation) ---------- */
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 13vw, 132px) 0 clamp(52px, 7vw, 74px);
  background: linear-gradient(160deg, #fff4f6 0%, var(--cream) 58%, #fff9f4 100%);
  text-align: center;
}

.legal-hero::before,
.legal-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.legal-hero::before {
  top: -120px;
  right: -90px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(224, 52, 70, 0.14), transparent 70%);
}

.legal-hero::after {
  bottom: -150px;
  left: -110px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(224, 52, 70, 0.09), transparent 70%);
}

.legal-hero > .container {
  position: relative;
  z-index: 1;
}

.legal-hero__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(224, 52, 70, 0.16);
  font-size: 1.7rem;
}

.legal-hero .section-eyebrow {
  justify-content: center;
}

.legal-hero__title {
  margin: 6px 0 12px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.4vw, 3.15rem);
  line-height: 1.08;
}

.legal-hero__sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
}

.legal-section {
  padding-top: clamp(36px, 5vw, 52px);
}

.legal-list {
  display: grid;
  gap: 14px;
}

.legal-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 110px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.legal-item:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 52, 70, 0.28);
  box-shadow: 0 16px 34px rgba(12, 17, 32, 0.09);
}

.legal-item__num {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(224, 52, 70, 0.32);
}

.legal-item h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.25;
}

.legal-item__ikon {
  font-size: 1rem;
}

.legal-item p {
  color: var(--muted);
  font-size: 0.97rem;
}

.legal-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding: clamp(22px, 4vw, 30px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff2f4, #fff9f5);
  border: 1px solid rgba(224, 52, 70, 0.18);
}

.legal-cta h3 {
  margin-bottom: 5px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.legal-cta p {
  color: var(--muted);
  font-size: 0.93rem;
}

.legal-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.legal-nav span {
  color: var(--muted);
  font-weight: 700;
}

.legal-nav a {
  color: var(--red-dark);
  font-weight: 700;
  text-decoration: none;
}

.legal-nav a:hover {
  text-decoration: underline;
}

@media (max-width: 560px) {
  .legal-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .legal-cta__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

.lead-form .form-field {
  margin-bottom: 18px;
}

.lead-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.4;
}

.form-required {
  color: var(--red);
  font-weight: 700;
}

.form-optional {
  color: var(--muted);
  font-weight: 400;
  font-size: 0.82rem;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form input:hover,
.lead-form textarea:hover {
  border-color: #c9cdd4;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 52, 70, 0.15);
  background: var(--white);
}

.lead-form textarea {
  min-height: 140px;
  resize: vertical;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Visible focus for keyboard navigation */
.lead-form input:focus-visible,
.lead-form textarea:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.form-alert {
  margin: 0 auto 18px;
  max-width: 760px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.92rem;
}

.form-alert--error {
  background: #ffe5e8;
  color: var(--red-dark);
  border-left: 4px solid var(--red);
}

.form-alert--success {
  background: #e8fff1;
  color: #166b38;
  border-left: 4px solid #166b38;
}

.legal-card p + p {
  margin-top: 14px;
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 12px;
}
.package-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--muted);
  font-size: 0.78rem;
}
.package-meta strong { color: var(--navy); }
.package-details {
  margin: 12px 0 18px;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  padding: 10px 0;
}
.package-details summary {
  cursor: pointer;
  color: var(--red);
  font-weight: 800;
}
.package-inclusion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
.package-inclusion strong { color: var(--navy); font-size: 0.9rem; }
.package-inclusion ul { margin-top: 10px; display: grid; gap: 8px; }
.package-inclusion li { color: var(--muted); font-size: 0.86rem; line-height: 1.5; }
.season-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.season-calendar article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}
.season-calendar span {
  display: inline-flex;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 8px;
}
.season-calendar strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.season-calendar p { color: var(--muted); }
@media (max-width: 640px) {
  .package-inclusion { grid-template-columns: 1fr; }
}

.package-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 14px;
}
.package-meta span {
  min-height: 54px;
  padding: 9px 10px;
  border: 1px solid color-mix(in srgb, var(--line), white 18%);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff8f9, #ffffff);
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.25;
}
.package-meta strong {
  display: block;
  margin-top: 2px;
  color: var(--navy);
  font-size: 0.82rem;
  letter-spacing: -0.01em;
}
.package-details {
  margin: 10px 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffafb;
  overflow: hidden;
}
.package-details summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
  padding: 11px 13px;
  list-style: none;
  position: relative;
}
.package-details summary::-webkit-details-marker { display: none; }
.package-details summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-weight: 900;
}
.package-details[open] summary::after { content: "-"; }
.package-inclusion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 0 13px 13px;
}
.package-inclusion > div {
  border-radius: 13px;
  background: var(--white);
  padding: 11px 12px;
}
.package-inclusion strong { color: var(--navy); font-size: 0.84rem; }
.package-inclusion ul { margin-top: 7px; display: grid; gap: 5px; }
.package-inclusion li { color: var(--muted); font-size: 0.8rem; line-height: 1.35; }
.season-calendar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
}
.season-calendar article {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white), #fff8f9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 20px;
}
.season-calendar article::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  right: -24px;
  top: -24px;
  background: color-mix(in srgb, var(--red), white 78%);
}
.season-calendar span {
  display: inline-flex;
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 8px;
}
.season-calendar strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 7px;
}
.season-calendar p { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.season-calendar article[data-season-target="winter"] {
  background: linear-gradient(180deg, #f5fbff, #eef6ff);
  border-color: rgba(126, 167, 212, 0.28);
}
.season-calendar article[data-season-target="winter"]::before {
  background: radial-gradient(circle, rgba(215, 235, 255, 0.95) 0%, rgba(215, 235, 255, 0) 72%);
}
.season-calendar article[data-season-target="winter"] span {
  color: #4e78a8;
}
.season-calendar article[data-season-target="winter"] .btn {
  border-color: rgba(78, 120, 168, 0.2);
  background: rgba(78, 120, 168, 0.12);
  color: #4e78a8;
}

.season-calendar article[data-season-target="spring"] {
  background: linear-gradient(180deg, #fff7fb, #fff0f5);
  border-color: rgba(224, 132, 170, 0.26);
}
.season-calendar article[data-season-target="spring"]::before {
  background: radial-gradient(circle, rgba(255, 216, 230, 0.95) 0%, rgba(255, 216, 230, 0) 72%);
}
.season-calendar article[data-season-target="spring"] span {
  color: #c04d76;
}
.season-calendar article[data-season-target="spring"] .btn {
  border-color: rgba(192, 77, 118, 0.2);
  background: rgba(192, 77, 118, 0.12);
  color: #c04d76;
}

.season-calendar article[data-season-target="summer"] {
  background: linear-gradient(180deg, #f7fff7, #eefaf1);
  border-color: rgba(88, 161, 107, 0.24);
}
.season-calendar article[data-season-target="summer"]::before {
  background: radial-gradient(circle, rgba(208, 240, 214, 0.95) 0%, rgba(208, 240, 214, 0) 72%);
}
.season-calendar article[data-season-target="summer"] span {
  color: #3f8f55;
}
.season-calendar article[data-season-target="summer"] .btn {
  border-color: rgba(63, 143, 85, 0.2);
  background: rgba(63, 143, 85, 0.12);
  color: #3f8f55;
}

.season-calendar article[data-season-target="autumn"] {
  background: linear-gradient(180deg, #fff8f1, #fff1e6);
  border-color: rgba(198, 112, 54, 0.26);
}
.season-calendar article[data-season-target="autumn"]::before {
  background: radial-gradient(circle, rgba(255, 210, 178, 0.95) 0%, rgba(255, 210, 178, 0) 72%);
}
.season-calendar article[data-season-target="autumn"] span {
  color: #b85f2d;
}
.season-calendar article[data-season-target="autumn"] .btn {
  border-color: rgba(184, 95, 45, 0.2);
  background: rgba(184, 95, 45, 0.12);
  color: #b85f2d;
}

@media (max-width: 640px) {
  .package-meta { grid-template-columns: 1fr; }
  .package-meta span { min-height: auto; }
  .package-inclusion { grid-template-columns: 1fr; }
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.promo-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white), #fff7f9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: clamp(22px, 3vw, 30px);
  display: grid;
  gap: 12px;
}
.promo-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -42px;
  top: -42px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--red), white 78%);
}
.promo-badge {
  width: max-content;
  position: relative;
  z-index: 1;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.promo-card h3 {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
}
.promo-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
}
.promo-card small {
  position: relative;
  z-index: 1;
  color: var(--red-dark);
  font-weight: 800;
}
.promo-card .btn {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-top: 6px;
}

/* ---------- Tingkatan diskon grup (halaman promo) ---------- */
.tier-list {
  display: grid;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 12px;
}
/* Kepala kolom hanya tampil di layar lebar; di HP tiap baris jadi kartu. */
.tier-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1.6fr;
  align-items: center;
  gap: 20px;
  padding: 6px 22px 12px;
  border-bottom: 1px solid var(--line);
}
.tier-head span {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tier-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1.6fr;
  align-items: center;
  gap: 20px;
  border-radius: 14px;
  padding: 16px 22px;
  transition: background 0.2s ease;
}
.tier-row:not(.tier-row--top):hover { background: #fffafb; }
.tier-row--top {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff1f4 0%, #fff8f6 100%);
  box-shadow: inset 0 0 0 2px var(--red);
}
.tier-row--top::after {
  content: "🍓";
  position: absolute;
  right: 14px;
  bottom: -14px;
  font-size: 3.4rem;
  line-height: 1;
  opacity: 0.09;
  transform: rotate(-12deg);
  pointer-events: none;
}
.tier-row > * { position: relative; z-index: 1; }
.tier-pax strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}
.tier-pax span {
  display: inline-flex;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.tier-row--top .tier-pax span { color: var(--red); }
.tier-nilai {
  color: var(--red-dark);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
}
.tier-nilai--kosong { color: var(--muted); font-family: var(--font-body); font-weight: 700; }
.tier-ket { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

/* ---------- Langkah klaim promo ---------- */
.klaim-langkah {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.klaim-langkah article {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px 24px;
}
.klaim-langkah span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.92rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(224, 52, 70, 0.28);
}
.klaim-langkah strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.25;
  margin-bottom: 7px;
}
.klaim-langkah p { color: var(--muted); font-size: 0.89rem; line-height: 1.55; }

/* ---------- Syarat promo: dua kolom kartu ---------- */
.syarat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.syarat-grid > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 26px 28px;
}
.syarat-grid strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.syarat-grid ul { display: grid; gap: 11px; }
.syarat-grid li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.syarat-grid li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
}
.syarat-grid .syarat-ya li::before { content: "✓"; color: var(--leaf); }
.syarat-grid .syarat-tidak li::before { content: "✕"; color: var(--red); }
.syarat-catatan {
  margin-top: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .tier-list { padding: 10px; gap: 10px; }
  .tier-head { display: none; }
  .tier-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--line);
  }
  .tier-row--top { border-color: transparent; }
  .tier-nilai { font-size: 1.25rem; white-space: normal; }
}

/* Promo float — selalu di atas .wa-float (bottom 22px, 58px tinggi) */
.promo-float {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: auto;
  min-width: 0;
  padding: 9px 16px 9px 11px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #d92d45 0%, var(--red) 55%, #8f1730 100%);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(224, 52, 70, 0.34);
  cursor: pointer;
  text-align: left;
  animation: promo-bob 3.4s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-float:hover,
.promo-float:focus-visible {
  transform: scale(1.06);
  box-shadow: 0 18px 38px rgba(224, 52, 70, 0.42);
}

.promo-float__icon {
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  font-size: 1rem;
}

.promo-float__text {
  display: grid;
  line-height: 1.05;
}

.promo-float strong {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.promo-float__text span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.promo-float__ping {
  display: none;
}

@keyframes promo-bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -6px; }
}

@keyframes promo-ping {
  0% { box-shadow: 0 0 0 0 rgba(255, 209, 102, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(255, 209, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 209, 102, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .promo-float { animation: none; }
  .promo-float__ping { animation: none; }
}
.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 501;
  display: none;
  padding: 24px;
}
.promo-modal.is-open { display: grid; place-items: center; }
.promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 26, 45, 0.68);
  backdrop-filter: blur(8px);
}
.promo-modal__dialog {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(560px, 100%);
  max-height: min(88vh, 820px);
  overflow-y: auto;
  border-radius: 26px;
  background: linear-gradient(180deg, var(--white), #fff7f9);
  box-shadow: 0 26px 70px rgba(12, 17, 32, 0.38);
  padding: 0;
  animation: promo-pop 0.32s cubic-bezier(0.2, 0.9, 0.3, 1.2) both;
}

@keyframes promo-pop {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.promo-modal__ribbon {
  display: grid;
  place-items: center;
  padding: 11px 52px 11px 20px;
  background: linear-gradient(135deg, #ff5f7a, var(--red) 50%, var(--red-dark));
  color: var(--white);
}

.promo-modal__ribbon span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promo-modal__body {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.promo-modal__dialog h2 { color: var(--navy); font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.45rem); line-height: 1.12; }
.promo-modal__dialog p { color: var(--muted); }

.promo-modal__perks {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.promo-modal__perks li {
  position: relative;
  padding-left: 28px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 600;
}

.promo-modal__perks li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(224, 52, 70, 0.12);
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.promo-modal__dialog small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(224, 52, 70, 0.1);
  color: var(--red-dark);
  font-weight: 800;
}

.promo-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.promo-modal__cta {
  box-shadow: 0 12px 26px rgba(224, 52, 70, 0.34);
}

.promo-modal__wa {
  background: var(--wa);
  color: var(--white);
}
.promo-modal__wa:hover {
  background: var(--wa-dark);
}

.promo-modal__note {
  color: var(--muted);
  font-size: 0.8rem;
}
.promo-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 640px) {
  .promo-float { right: 16px; bottom: 86px; padding: 8px 14px 8px 10px; }
  .promo-modal { padding: 14px; }
  .promo-modal__actions .btn { width: 100%; justify-content: center; }
}
