/* =========================================================================
   Handled — ported from the original React app's inline styles.
   Color/shadow tokens mirror src/data.js (C and sh).
   ========================================================================= */

:root {
  --p: #03462E;
  --p-dark: #022D1E;
  --p-mid: #0A6B47;
  --p-light: #E8F0ED;
  --p-text: #1A4A36;
  --rose: #C8867C;
  --rose-light: #F5EDEB;
  --rose-mid: #A66B62;
  --w: #fff;
  --g50: #F7F7F7;
  --g100: #EEEEEE;
  --g200: #DDDDDD;
  --g300: #C2C2C2;
  --g500: #717171;
  --g700: #484848;
  --g900: #222222;
  --gold: #E8A838;

  --sh-sm: 0 1px 3px rgba(0,0,0,0.08);
  --sh-md: 0 4px 16px rgba(0,0,0,0.10);
  --sh-lg: 0 8px 32px rgba(0,0,0,0.14);
  --sh-hero: 0 10px 48px rgba(0,0,0,0.28);

  --nav-h: 72px;
}

/* ===== Reset / base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #222;
}
button, input, textarea, select { font-family: inherit; }
button { border: none; background: none; cursor: pointer; }
a { text-decoration: none; color: inherit; }
input::placeholder, textarea::placeholder { color: var(--g300); }
input:focus, textarea:focus, select:focus { outline: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }
::-webkit-scrollbar-track { background: transparent; }

/* ===== Keyframes / animation utilities ===== */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.fade-up { animation: fadeUp 0.4s ease-out both; }
.fade-in { animation: fadeIn 0.3s ease-out both; }
.scale-in { animation: scaleIn 0.35s ease-out both; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; border-radius: 12px; transition: all .18s ease;
}
.btn--sm { padding: 9px 18px; font-size: 13px; }
.btn--md { padding: 13px 24px; font-size: 14px; }
.btn--lg { padding: 16px 30px; font-size: 15px; }
.btn--full { display: flex; width: 100%; }
.btn--solid { background: var(--p); color: var(--w); }
.btn--solid:hover { background: var(--p-mid); }
.btn--outline { background: transparent; border: 1.5px solid var(--g200); color: var(--g700); }
.btn--outline:hover { border-color: var(--g300); }
.btn--white { background: var(--w); color: var(--p); font-weight: 800; }
.btn--white:hover { background: var(--g50); }

/* ===== Tags / pills ===== */
.tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 5px 13px; border-radius: 999px; letter-spacing: 1px; }
.tag--green { background: var(--p-light); color: var(--p); }
.tag--rose { background: var(--rose-light); color: var(--rose-mid); }

.pill {
  padding: 9px 18px; border-radius: 999px; border: 1.5px solid var(--g200);
  background: var(--w); color: var(--g700); font-size: 14px; white-space: nowrap; transition: all .18s ease;
}
.pill.is-active { border-color: var(--p); background: var(--p); color: var(--w); font-weight: 700; }

/* ===== Stars ===== */
.stars { display: inline-flex; align-items: center; gap: 3px; }
.stars__icon { color: var(--gold); }
.stars__value { font-size: 13px; font-weight: 700; color: var(--g900); }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav-h); display: flex; align-items: center; padding: 0 40px;
  background: transparent; transition: all .28s ease;
}
.navbar--solid { background: var(--w); border-bottom: 1px solid var(--g100); }
.navbar__inner { max-width: 1200px; width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.navbar__logo { display: flex; align-items: center; gap: 9px; }
.navbar__logo-mark {
  width: 36px; height: 36px; background: var(--p); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--w); font-weight: 900; font-size: 16px; letter-spacing: -1px; font-family: 'Fraunces', serif;
}
.navbar__logo-text { font-size: 18px; font-weight: 900; letter-spacing: -0.8px; color: var(--w); transition: color .28s; }
.navbar--solid .navbar__logo-text { color: var(--p); }
.navbar__center { display: flex; gap: 2px; }
.navbar__link { padding: 8px 18px; border-radius: 999px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85); transition: all .2s; }
.navbar__link.is-active { color: var(--w); font-weight: 700; }
.navbar--solid .navbar__link { color: var(--g700); }
.navbar--solid .navbar__link.is-active { color: var(--p); background: var(--p-light); font-weight: 700; }
.navbar__right { display: flex; align-items: center; gap: 6px; }
.navbar__login { padding: 9px 16px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--w); transition: color .28s; }
.navbar--solid .navbar__login { color: var(--g900); }

/* ===== Footer ===== */
.footer { background: var(--p-dark); padding: 52px 40px; text-align: center; }
.footer__brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 14px; }
.footer__mark {
  width: 32px; height: 32px; background: rgba(255,255,255,.15); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; color: var(--w); font-weight: 900; font-size: 14px; font-family: 'Fraunces', serif;
}
.footer__name { color: var(--w); font-weight: 900; font-size: 18px; letter-spacing: -0.5px; }
.footer__copy { color: rgba(255,255,255,.45); font-size: 13px; }

/* ===== Experience card (XCard) ===== */
.xcard { display: block; border-radius: 16px; overflow: hidden; background: var(--w); box-shadow: var(--sh-sm); transition: all .22s ease; }
.xcard:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.xcard__media { height: 220px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; }
.xcard__badge { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,.92); color: var(--p); font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 999px; }
.xcard__area { color: rgba(255,255,255,.7); font-size: 12px; margin-bottom: 5px; }
.xcard__title { color: var(--w); font-size: 15px; font-weight: 700; line-height: 1.3; }
.xcard__body { padding: 14px 16px 18px; }
.xcard__guide { color: var(--g500); font-size: 13px; margin-bottom: 9px; }
.xcard__row { display: flex; justify-content: space-between; align-items: center; }
.xcard__rating { display: flex; align-items: center; gap: 5px; }
.xcard__reviews { color: var(--g500); font-size: 12px; }
.xcard__price { font-size: 15px; font-weight: 700; color: var(--g900); }
.xcard__per { font-size: 12px; font-weight: 400; color: var(--g500); }

/* ===== Generic section ===== */
.section { max-width: 1200px; margin: 0 auto; padding: 68px 40px; }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; }
.section__title { font-size: 28px; font-weight: 800; color: var(--g900); letter-spacing: -0.8px; }
.section__lead { color: var(--g500); margin-top: 6px; font-size: 15px; }
.section__link { font-size: 14px; font-weight: 700; color: var(--p); text-decoration: underline; }
.section__cta { text-align: center; margin-top: 44px; }
.card-grid { display: grid; gap: 24px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ===== Home hero ===== */
.hero {
  background: linear-gradient(155deg, var(--p-dark) 0%, var(--p) 42%, var(--p-mid) 100%);
  min-height: 640px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 130px 24px 80px; text-align: center; position: relative; overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
}
.hero > *:not(.hero__glow) { position: relative; z-index: 1; }
.hero__badge {
  display: inline-block; background: rgba(255,255,255,.12); color: rgba(255,255,255,.9);
  font-size: 11px; font-weight: 700; padding: 6px 16px; border-radius: 999px;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px; backdrop-filter: blur(8px);
}
.hero__title { color: var(--w); font-size: 56px; font-weight: 900; line-height: 1.1; margin-bottom: 16px; letter-spacing: -2.5px; }
.hero__title-serif { font-family: 'Fraunces', serif; font-weight: 900; letter-spacing: -1px; }
.hero__subtitle { color: rgba(255,255,255,.72); font-size: 18px; margin-bottom: 48px; max-width: 480px; }

/* ===== Search card ===== */
.search-card { background: var(--w); border-radius: 24px; padding: 10px; max-width: 760px; width: 100%; box-shadow: var(--sh-hero); }
.search-card__tabs { display: flex; gap: 2px; padding: 2px 2px 10px; border-bottom: 1px solid var(--g100); margin-bottom: 10px; }
.search-card__tab { flex: 1; padding: 11px 0; border-radius: 14px; font-size: 14px; color: var(--g500); transition: all .15s; }
.search-card__tab.is-active { background: var(--p-light); color: var(--p); font-weight: 700; }
.search-panel { display: grid; align-items: center; }
.search-panel[hidden] { display: none; }
.search-panel--planner { grid-template-columns: 1fr 130px 130px auto; }
.search-panel--experience { grid-template-columns: 1fr 175px auto; }
.search-field { padding: 8px 16px; border-right: 1px solid var(--g100); text-align: left; }
.search-field--grow { padding: 8px 18px; }
.search-panel--planner .search-field:nth-of-type(3) { border-right: none; }
.search-panel--experience .search-field:nth-of-type(2) { border-right: none; }
.search-field__label { font-size: 11px; font-weight: 700; color: var(--p); margin-bottom: 5px; letter-spacing: 0.5px; }
.search-field__input { border: none; outline: none; font-size: 15px; width: 100%; color: var(--g900); background: transparent; }
.search-field__placeholder { font-size: 14px; color: var(--g300); }
.search-card__go { margin: 0 6px 0 10px; padding: 15px 22px; border-radius: 16px; background: var(--p); color: var(--w); font-size: 14px; font-weight: 700; white-space: nowrap; text-align: center; }
.search-card__go:hover { background: var(--p-mid); }

/* ===== Popular tags ===== */
.hero__popular { display: flex; gap: 8px; margin-top: 22px; align-items: center; flex-wrap: wrap; justify-content: center; }
.hero__popular-label { color: rgba(255,255,255,.5); font-size: 13px; }
.hero__tag { color: rgba(255,255,255,.8); font-size: 13px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 4px 13px; background: rgba(255,255,255,.08); transition: background .15s; }
.hero__tag:hover { background: rgba(255,255,255,.16); }

/* ===== Planner CTA (home) ===== */
.planner-cta { background: var(--g50); padding: 68px 40px; }
.planner-cta__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.planner-cta__title { font-size: 40px; font-weight: 900; color: var(--g900); margin-top: 18px; margin-bottom: 16px; line-height: 1.12; letter-spacing: -1.5px; }
.planner-cta__text { color: var(--g500); font-size: 16px; line-height: 1.75; margin-bottom: 34px; }
.steps-card { background: var(--w); border-radius: 20px; padding: 30px; box-shadow: var(--sh-md); }
.steps-card__row { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--g100); }
.steps-card__row:last-child { border-bottom: none; }
.steps-card__num { width: 42px; height: 42px; border-radius: 12px; background: var(--p); color: var(--w); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex-shrink: 0; }
.steps-card__title { font-weight: 700; color: var(--g900); margin-bottom: 5px; }
.steps-card__desc { color: var(--g500); font-size: 13px; line-height: 1.6; }

/* ===== Value props (home) ===== */
.valueprops__head { text-align: center; margin-bottom: 52px; }
.valueprops__head .tag { margin-bottom: 18px; }
.valueprops__title { font-size: 40px; font-weight: 900; color: var(--g900); letter-spacing: -1.5px; margin-bottom: 14px; }
.valueprops__lead { color: var(--g500); font-size: 16px; max-width: 500px; margin: 0 auto; }
.feature { padding: 30px; border: 1px solid var(--g100); border-radius: 20px; background: var(--w); transition: transform .2s ease, box-shadow .2s ease; }
.feature:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.feature__icon { font-size: 28px; margin-bottom: 18px; }
.feature--green { color: var(--p); }
.feature--rose { color: var(--rose); }
.feature--pmid { color: var(--p-mid); }
.feature__title { font-weight: 800; font-size: 17px; color: var(--g900); margin-bottom: 10px; }
.feature__desc { color: var(--g500); font-size: 14px; line-height: 1.7; }

/* ===== Experience browse ===== */
.browse { padding-top: var(--nav-h); }
.browse-hero { background: linear-gradient(155deg, var(--p-dark), var(--p-mid)); padding: 52px 40px 46px; position: relative; overflow: hidden; }
.browse-hero__glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 50% at 80% 100%, rgba(255,255,255,0.05) 0%, transparent 60%); }
.browse-hero__inner { max-width: 1200px; margin: 0 auto; position: relative; }
.browse-hero__title { color: var(--w); font-size: 40px; font-weight: 900; margin-bottom: 8px; letter-spacing: -1.5px; }
.browse-hero__lead { color: rgba(255,255,255,.7); font-size: 16px; margin-bottom: 30px; }
.browse-hero__search { background: var(--w); border-radius: 14px; padding: 13px 20px; max-width: 520px; display: flex; gap: 12px; align-items: center; box-shadow: var(--sh-lg); color: var(--g300); }
.browse-hero__search input { border: none; font-size: 15px; flex: 1; color: var(--g900); background: transparent; }
.filter-bar { border-bottom: 1px solid var(--g100); position: sticky; top: var(--nav-h); background: var(--w); z-index: 10; }
.filter-bar__inner { max-width: 1200px; margin: 0 auto; padding: 13px 40px; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.filter-bar__inner::-webkit-scrollbar { display: none; }
.section--browse { padding-top: 38px; padding-bottom: 38px; }
.section--browse .card-grid { gap: 28px; }
.browse-count { color: var(--g500); font-size: 14px; margin-bottom: 28px; }

/* ===== Experience detail ===== */
.detail { padding-top: var(--nav-h); }
.detail__back { border-bottom: 1px solid var(--g100); padding: 14px 40px; }
.detail__back-link { font-size: 14px; color: var(--g700); display: inline-flex; align-items: center; gap: 5px; }
.detail__inner { max-width: 1120px; margin: 0 auto; padding: 40px 40px 80px; }
.detail__grid { display: grid; grid-template-columns: 1fr 368px; gap: 56px; align-items: flex-start; }
.detail__hero { height: 440px; border-radius: 22px; margin-bottom: 34px; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; }
.detail__cert { position: absolute; top: 22px; left: 22px; background: rgba(255,255,255,.92); color: var(--p); font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; }
.detail__hero-chips { display: flex; gap: 8px; margin-bottom: 12px; }
.detail__chip { background: rgba(255,255,255,.18); color: var(--w); font-size: 12px; padding: 4px 10px; border-radius: 8px; }
.detail__hero-title { color: var(--w); font-size: 32px; font-weight: 900; line-height: 1.2; margin-bottom: 9px; }
.detail__hero-meta { color: rgba(255,255,255,.75); font-size: 14px; }
.detail__titlerow { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; padding-bottom: 24px; border-bottom: 1px solid var(--g100); }
.detail__title { font-size: 24px; font-weight: 900; color: var(--g900); margin-bottom: 5px; }
.detail__subtitle { color: var(--g500); }
.detail__rating { text-align: right; }
.detail__reviews { color: var(--g500); font-size: 12px; margin-top: 3px; }
.detail__desc { color: var(--g700); line-height: 1.8; font-size: 15px; margin-bottom: 34px; padding-bottom: 34px; border-bottom: 1px solid var(--g100); }
.detail__route { margin-bottom: 34px; padding-bottom: 34px; border-bottom: 1px solid var(--g100); }
.detail__h3 { font-size: 19px; font-weight: 900; color: var(--g900); margin-bottom: 7px; }
.detail__route-meta { color: var(--g500); font-size: 14px; margin-bottom: 22px; }
.route-line { position: relative; padding-left: 18px; }
.route-line::before { content: ""; position: absolute; left: 5px; top: 10px; bottom: 10px; width: 2px; background: var(--g100); }
.route-line__item { display: flex; gap: 16px; margin-bottom: 18px; align-items: center; }
.route-line__dot { width: 13px; height: 13px; border-radius: 50%; z-index: 1; background: var(--w); border: 2px solid var(--p); flex-shrink: 0; }
.route-line__dot--edge { background: var(--p); }
.route-line__label { font-size: 14px; color: var(--g700); }
.route-line__label--edge { color: var(--p); font-weight: 700; }
.detail__guide { margin-bottom: 0; }
.detail__guide .detail__h3 { margin-bottom: 18px; }
.guide { display: flex; gap: 18px; align-items: flex-start; }
.guide__avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--p); display: flex; align-items: center; justify-content: center; color: var(--w); font-size: 24px; font-weight: 900; flex-shrink: 0; }
.guide__name { font-weight: 800; font-size: 17px; color: var(--g900); }
.guide__role { color: var(--g500); font-size: 14px; margin-top: 3px; margin-bottom: 14px; }
.guide__badges { display: flex; gap: 7px; flex-wrap: wrap; }
.guide__badge { font-size: 12px; padding: 5px 12px; border-radius: 999px; background: var(--p-light); color: var(--p); font-weight: 700; }

/* ===== Booking panel ===== */
.detail__aside { position: sticky; top: 100px; }
.booking { background: var(--w); border: 1px solid var(--g200); border-radius: 22px; padding: 26px; box-shadow: var(--sh-md); }
.booking__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.booking__price-amount { font-size: 26px; font-weight: 900; color: var(--g900); }
.booking__price-per { color: var(--g500); font-size: 14px; }
.booking__group { margin-bottom: 18px; }
.booking__label { font-size: 11px; font-weight: 700; color: var(--p); margin-bottom: 10px; letter-spacing: 0.8px; }
.booking__chips { display: flex; gap: 6px; flex-wrap: wrap; }
.booking__chips--time { gap: 8px; }
.chip { padding: 8px 13px; border-radius: 10px; border: 1.5px solid var(--g200); background: var(--w); color: var(--g700); font-size: 13px; transition: all .15s; }
.chip.is-active { border-color: var(--p); background: var(--p); color: var(--w); font-weight: 700; }
.chip--time { flex: 1; padding: 11px 0; font-size: 14px; text-align: center; }
.booking__hint { color: var(--g300); font-size: 12px; margin-top: 6px; }
.booking__summary { border-top: 1px solid var(--g100); padding-top: 16px; margin-top: 4px; margin-bottom: 22px; }
.booking__line { display: flex; justify-content: space-between; font-size: 14px; color: var(--g500); margin-bottom: 7px; }
.booking__total { display: flex; justify-content: space-between; font-size: 17px; font-weight: 900; color: var(--g900); }
.booking__cta { width: 100%; padding: 17px; border-radius: 14px; background: var(--g100); color: var(--g300); font-size: 15px; font-weight: 900; cursor: not-allowed; transition: all .2s; }
.booking__cta.is-ready { background: var(--p); color: var(--w); cursor: pointer; }
.booking__note { text-align: center; color: var(--g300); font-size: 12px; margin-top: 13px; }

/* ===== Counters ===== */
.counter { display: flex; align-items: center; border: 1px solid var(--g200); border-radius: 12px; overflow: hidden; }
.counter__btn { flex: 1; padding: 13px; font-size: 20px; background: var(--w); color: var(--g700); }
.counter__value { flex: 1; text-align: center; font-weight: 900; font-size: 17px; }
.counter--round { border: none; gap: 14px; overflow: visible; }
.counter--round .counter__btn { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--g200); background: var(--w); font-size: 18px; display: flex; align-items: center; justify-content: center; color: var(--g700); padding: 0; }
.counter--round .counter__value { flex: 0 0 auto; min-width: 24px; font-size: 18px; font-weight: 800; color: var(--g900); }

/* ===== Planner wizard ===== */
.planner { background: var(--g50); padding-top: var(--nav-h); min-height: 100vh; }
.planner__inner { max-width: 640px; margin: 0 auto; padding: 52px 24px; }
.progress { display: flex; align-items: center; gap: 8px; margin-bottom: 48px; }
.progress__circle { width: 36px; height: 36px; border-radius: 50%; background: var(--g100); color: var(--g300); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; transition: all .25s ease; flex-shrink: 0; }
.progress__circle.is-active { background: var(--p); color: var(--w); }
.progress__bar { flex: 1; height: 2.5px; border-radius: 2px; background: var(--g100); transition: all .25s ease; }
.progress__bar.is-done { background: var(--p); }
.planner-loading { text-align: center; padding: 90px 0; }
.planner-loading__spinner { width: 60px; height: 60px; border: 3px solid var(--g100); border-top-color: var(--p); border-radius: 50%; margin: 0 auto 28px; animation: spin .8s linear infinite; }
.planner-loading__title { color: var(--p); font-weight: 800; font-size: 22px; margin-bottom: 8px; }
.planner-loading__text { color: var(--g500); }
.planner-step__title { font-size: 32px; font-weight: 900; color: var(--g900); margin-bottom: 8px; letter-spacing: -1px; }
.planner-step__lead { color: var(--g500); margin-bottom: 38px; }
.planner-step__actions { margin-top: 24px; }
.planner-step__actions--split { display: flex; gap: 10px; }
.pcard { background: var(--w); border-radius: 18px; padding: 24px; box-shadow: var(--sh-sm); margin-bottom: 14px; }
.pcard__label { font-size: 11px; font-weight: 700; color: var(--p); letter-spacing: 0.8px; display: block; }
.pcard__select {
  display: block; width: 100%; border: none; font-size: 20px; font-weight: 800; margin-top: 8px;
  color: var(--g900); background: transparent; appearance: none; cursor: pointer; padding-right: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23717171' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 4px center;
}
.pcard__select:has(option[value=""]:checked) { color: var(--g300); }
.pcard-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.pcard-row .pcard { margin-bottom: 0; }
.pcard__date { display: block; width: 100%; border: none; font-size: 15px; margin-top: 8px; color: var(--g700); background: transparent; }
.travelers { margin-top: 8px; }
.traveler { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.traveler + .traveler { border-top: 1px solid var(--g50); }
.traveler__label { font-size: 14px; color: var(--g700); }
.field-block { margin-bottom: 28px; }
.field-block__label { font-size: 11px; font-weight: 700; color: var(--p); letter-spacing: 0.8px; display: block; margin-bottom: 14px; }
.style-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.style-option { padding: 17px 20px; border-radius: 16px; border: 2px solid var(--g100); background: var(--w); color: var(--g700); font-size: 14px; text-align: left; transition: all .15s; }
.style-option.is-active { border-color: var(--p); background: var(--p-light); color: var(--p); font-weight: 700; }
.style-option__check { margin-right: 6px; display: none; }
.style-option.is-active .style-option__check { display: inline; }
.class-row { display: flex; gap: 10px; }
.class-option { flex: 1; padding: 18px 14px; border-radius: 16px; border: 2px solid var(--g100); background: var(--w); text-align: center; transition: all .15s; }
.class-option.is-active { border-color: var(--p); background: var(--p-light); }
.class-option__label { font-size: 15px; font-weight: 700; color: var(--g900); margin-bottom: 4px; }
.class-option.is-active .class-option__label { color: var(--p); }
.class-option__desc { font-size: 12px; color: var(--g500); }
.class-option.is-active .class-option__desc { color: var(--p); }
.budget__amount { font-size: 28px; font-weight: 900; color: var(--p); margin-top: 12px; }
.budget__range { width: 100%; margin-top: 12px; accent-color: var(--p); }
.budget__scale { display: flex; justify-content: space-between; margin-top: 6px; font-size: 12px; color: var(--g500); }
.pcard__textarea { display: block; width: 100%; border: 1.5px solid var(--g100); border-radius: 12px; padding: 14px; font-size: 14px; margin-top: 10px; color: var(--g700); resize: vertical; min-height: 80px; line-height: 1.6; }
.pcard__count { text-align: right; margin-top: 6px; font-size: 12px; color: var(--g300); }
.summary__row { display: flex; justify-content: space-between; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--g50); }
.summary__row:last-child { border-bottom: none; }
.summary__key { color: var(--g500); font-size: 14px; flex-shrink: 0; margin-right: 16px; }
.summary__val { font-weight: 600; color: var(--g900); font-size: 14px; max-width: 280px; text-align: right; }
.credit-banner { background: var(--p-light); border-radius: 14px; padding: 14px 18px; margin-bottom: 26px; display: flex; gap: 12px; align-items: flex-start; }
.credit-banner__icon { color: var(--p); font-size: 16px; margin-top: 1px; }
.credit-banner p { color: var(--p-text); font-size: 13px; line-height: 1.65; }

/* ===== Planner result ===== */
.result { background: var(--g50); padding-top: var(--nav-h); min-height: 100vh; }
.result__subhead { background: var(--w); border-bottom: 1px solid var(--g100); padding: 20px 40px; }
.result__subhead-inner { max-width: 880px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.result__title { font-size: 22px; font-weight: 900; color: var(--g900); letter-spacing: -0.5px; }
.result__subtitle { color: var(--g500); font-size: 13px; margin-top: 4px; }
.result__actions { display: flex; gap: 8px; }
.result__inner { max-width: 880px; margin: 0 auto; padding: 36px 40px; }
.day-tabs { display: flex; gap: 8px; margin-bottom: 28px; }
.day-tab { padding: 10px 24px; border-radius: 999px; border: 2px solid var(--g200); background: var(--w); color: var(--g700); font-size: 14px; transition: all .15s; }
.day-tab.is-active { border-color: var(--p); background: var(--p); color: var(--w); font-weight: 700; }
.day-header { border-radius: 18px; padding: 20px 28px; margin-bottom: 28px; display: flex; justify-content: space-between; align-items: center; }
.day-header__label { color: rgba(255,255,255,.65); font-size: 12px; font-weight: 700; letter-spacing: 0.8px; margin-bottom: 5px; }
.day-header__theme { color: var(--w); font-size: 21px; font-weight: 800; }
.day-header__count { color: rgba(255,255,255,.6); font-size: 13px; }
.timeline { position: relative; padding-left: 4px; }
.timeline__line { position: absolute; left: 26px; top: 24px; bottom: 24px; width: 2px; background: var(--g100); }
.timeline__item { display: flex; gap: 20px; margin-bottom: 18px; }
.timeline__num { width: 52px; height: 52px; border-radius: 50%; background: var(--w); border: 2.5px solid var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; font-size: 14px; font-weight: 900; color: var(--accent); }
.timeline__card { flex: 1; background: var(--w); border-radius: 16px; padding: 16px 22px; box-shadow: var(--sh-sm); transition: transform .2s ease, box-shadow .2s ease; }
.timeline__card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.timeline__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.timeline__when { display: flex; align-items: center; gap: 8px; }
.timeline__time { font-size: 12px; color: var(--g500); font-weight: 700; }
.timeline__type { font-size: 11px; padding: 2px 9px; border-radius: 6px; font-weight: 700; }
.timeline__dur { font-size: 12px; color: var(--g300); }
.timeline__place { font-size: 17px; font-weight: 800; color: var(--g900); margin-bottom: 7px; }
.timeline__tip { font-size: 13px; color: var(--g500); display: flex; gap: 5px; align-items: center; }
.timeline__tip-mark { color: var(--p); }
.upsell { margin-top: 32px; background: linear-gradient(135deg, var(--p-dark), var(--p)); border-radius: 20px; padding: 28px 34px; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.upsell__label { color: rgba(255,255,255,.6); font-size: 11px; font-weight: 700; letter-spacing: 1.2px; margin-bottom: 8px; }
.upsell__title { color: var(--w); font-size: 21px; font-weight: 800; margin-bottom: 8px; }
.upsell__text { color: rgba(255,255,255,.65); font-size: 14px; }

/* ===== Booking confirmation ===== */
.confirm { background: var(--g50); padding-top: var(--nav-h); min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.confirm__card { text-align: center; max-width: 420px; padding: 40px; }
.confirm__check { width: 84px; height: 84px; border-radius: 50%; background: var(--p-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 26px; font-size: 34px; color: var(--p); }
.confirm__title { font-size: 30px; font-weight: 900; color: var(--g900); margin-bottom: 12px; }
.confirm__theme { color: var(--g700); line-height: 1.7; margin-bottom: 6px; font-weight: 700; }
.confirm__meta { color: var(--g500); font-size: 14px; margin-bottom: 34px; }

/* ===== Responsive (graceful stacking; original was desktop-first) ===== */
@media (max-width: 900px) {
  .card-grid--3 { grid-template-columns: 1fr 1fr; }
  .planner-cta__inner { grid-template-columns: 1fr; gap: 32px; }
  .detail__grid { grid-template-columns: 1fr; gap: 32px; }
  .detail__aside { position: static; }
}
@media (max-width: 640px) {
  .navbar { padding: 0 20px; }
  .navbar__center { display: none; }
  .hero__title { font-size: 40px; letter-spacing: -1.5px; }
  .search-panel--planner, .search-panel--experience { grid-template-columns: 1fr; }
  .search-field { border-right: none; border-bottom: 1px solid var(--g100); }
  .search-card__go { margin: 8px 0 0; }
  .card-grid--3 { grid-template-columns: 1fr; }
  .section, .planner-cta { padding: 44px 20px; }
  .style-grid { grid-template-columns: 1fr; }
}
