/* ============================================================
   UBeLong — Homepage styles
   ============================================================ */

/* ---- Header / nav ---- */
/* Cross-page anchor targets (e.g. index.html#rooms from subpages) land below the sticky header */
section[id] { scroll-margin-top: 96px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 246, 238, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center; gap: 18px;
  max-width: var(--maxw); margin-inline: auto; padding-block: 12px; padding-inline: var(--gut);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand svg { height: 38px; width: auto; }
.brand__name { font-family: var(--font-head); font-weight: 600; font-size: 1.35rem; color: var(--teal-900); letter-spacing: -.01em; }
.brand__name b { color: var(--teal-700); }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  color: var(--ink-soft); font-weight: 600; font-size: .95rem;
  padding: .55em .9em; border-radius: var(--r-full); text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav a:hover { background: var(--teal-100); color: var(--teal-800); text-decoration: none; }
.nav .nav__cta { margin-left: 6px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; border-radius: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--teal-800); margin: 4px 0; border-radius: 2px; }

@media (max-width: 860px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 10px var(--gut); box-shadow: var(--sh-md); }
  .nav.open { display: flex; }
  .nav a { padding: .8em 1em; border-radius: var(--r-sm); }
  .nav .nav__cta { margin: 6px 0 0; }
  .nav-toggle { display: block; margin-left: auto; }
}

/* ---- Hero ---- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(234,166,69,.18), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(34,116,111,.16), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px);
  align-items: center; max-width: var(--maxw); margin-inline: auto; padding-block: clamp(48px, 8vw, 96px); padding-inline: var(--gut);
}
.hero__tagline { color: var(--amber-600); font-family: var(--font-head); font-style: italic; font-size: 1.15rem; margin-bottom: .4em; }
.hero h1 { margin-bottom: .35em; }
.hero h1 .hl { color: var(--amber-500); }
.hero__sub { font-size: clamp(1.08rem, 2vw, 1.28rem); color: var(--text-soft); max-width: 52ch; margin-bottom: 1.6em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 2em; color: var(--text-muted); font-size: .9rem; }
.hero__trust span { display: inline-flex; align-items: center; gap: .5em; }
.hero__art { position: relative; }
.hero__art .logo-big { width: 100%; max-width: 460px; margin-inline: auto; }
.hero__art .floaty {
  position: absolute; border-radius: var(--r-lg); background: var(--bg-alt);
  box-shadow: var(--sh-md); padding: 12px 16px; font-size: .85rem; font-weight: 600;
  display: flex; align-items: center; gap: .55em;
}
.hero__art .floaty--1 { top: 6%; left: -4%; }
.hero__art .floaty--2 { bottom: 10%; right: -2%; }
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .hero__art .logo-big { max-width: 340px; }
  .hero__art .floaty { display: none; }
}

/* ---- Inclusion banner ---- */
.inclusion {
  background: var(--teal-900); color: var(--text-on-deep);
  text-align: center; padding-block: clamp(26px, 4vw, 40px);
}
.inclusion p { margin: 0; font-family: var(--font-head); font-size: clamp(1.15rem, 2.4vw, 1.7rem); font-style: italic; max-width: 30ch; margin-inline: auto; line-height: 1.4; }
.inclusion p b { color: var(--amber-300); font-style: normal; font-weight: 600; }

/* ---- Feature rooms ---- */
.room { display: flex; flex-direction: column; }
.room__icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--teal-100); color: var(--teal-700); margin-bottom: 16px;
}
.room__icon svg { width: 28px; height: 28px; }
.room h3 { margin-bottom: .35em; }
.room p { color: var(--text-soft); margin-bottom: 0; font-size: .96rem; }
.room--accent .room__icon { background: var(--amber-100); color: var(--amber-600); }

/* ---- Story / founder ---- */
.story { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.story__media { position: relative; }
.story__photo {
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--teal-700), var(--teal-900));
  display: grid; place-items: center; color: var(--teal-100); text-align: center; padding: 24px;
  box-shadow: var(--sh-lg);
}
.story__photo .placeholder-monogram { font-family: var(--font-head); font-size: 4rem; color: var(--amber-300); }
.story__photo .placeholder-cap { font-size: .85rem; margin-top: 8px; color: var(--text-on-deep-muted); }
.story__video-badge {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--bg-alt); border-radius: var(--r-full); padding: .55em 1em; font-size: .85rem; font-weight: 700; color: var(--teal-800);
  box-shadow: var(--sh-md); display: inline-flex; align-items: center; gap: .5em;
}
.story__quote { font-family: var(--font-head); font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-style: italic; color: var(--teal-900); line-height: 1.35; margin-bottom: 1em; }
.story__body p { color: var(--text-soft); }
.story__sign { margin-top: 1.4em; display: flex; align-items: center; gap: 12px; }
.story__sign b { color: var(--teal-800); }
.story__sign small { color: var(--text-muted); display: block; }
@media (max-width: 880px) { .story { grid-template-columns: 1fr; } .story__media { max-width: 360px; margin-inline: auto; } }

/* ---- Why annual ---- */
.whyannual { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.whyannual__card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(24px, 4vw, 40px); box-shadow: var(--sh-md); }
.whyannual__card h3 { margin-top: 0; }
.whyannual__points { list-style: none; padding: 0; margin: 1.2em 0 0; }
.whyannual__points li { display: flex; gap: 12px; padding: 10px 0; border-top: 1px solid var(--border); color: var(--text-soft); }
.whyannual__points li:first-child { border-top: 0; }
.whyannual__points svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }
@media (max-width: 880px) { .whyannual { grid-template-columns: 1fr; } }

/* ---- Pricing ---- */
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 30px); max-width: 760px; margin-inline: auto; }
.price { position: relative; }
.price--featured { outline: 2px solid var(--accent); outline-offset: 2px; }
.price__tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #2a1700; font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: .35em 1em; border-radius: var(--r-full); }
.price__amount { font-family: var(--font-head); font-size: 3rem; font-weight: 600; color: var(--teal-900); line-height: 1; }
.price__amount small { font-size: 1.1rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 600; }
.price__per { color: var(--text-muted); font-size: .9rem; }
.price__feat { list-style: none; padding: 0; margin: 1.2em 0 0; }
.price__feat li { padding: .5em 0; border-top: 1px solid var(--border); color: var(--text-soft); display: flex; gap: 10px; align-items: flex-start; }
.price__feat svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--teal-600); margin-top: 3px; }
.price__note { font-size: .85rem; color: var(--text-muted); margin-top: 1em; }
@media (max-width: 620px) { .price-grid { grid-template-columns: 1fr; } }

/* ---- Cost comparison strip ---- */
.costcmp {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  max-width: 860px; margin: 0 auto clamp(28px,4vw,44px);
}
.costcmp__cell {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 18px 14px 16px; text-align: center; box-shadow: var(--sh-sm); position: relative;
}
.costcmp__cell--dim { opacity: .78; }
.costcmp__cell--you {
  border: 2px solid var(--accent); background: var(--amber-100);
}
.costcmp__you {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #2a1700; font-size: .66rem; font-weight: 800; letter-spacing: .1em;
  padding: .22em .7em; border-radius: var(--r-full); white-space: nowrap;
}
.costcmp__app { font-size: .78rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.costcmp__cell--you .costcmp__app { color: var(--teal-800); }
.costcmp__price { font-family: var(--font-head); font-size: 1.8rem; font-weight: 600; color: var(--teal-900); line-height: 1.1; margin: 6px 0 2px; }
.costcmp__cell--you .costcmp__price { color: var(--accent-strong, #b5640f); }
.costcmp__time { font-size: .82rem; color: var(--text-soft); }
.costcmp__cell--you .costcmp__time { color: var(--amber-700, #a85f12); font-weight: 700; }
.costcmp__time b { color: var(--teal-800); }
@media (max-width: 620px) { .costcmp { grid-template-columns: repeat(2,1fr); } }

/* ---- Founder Live ---- */
.founderlive { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.founderlive__video {
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 16/10;
  background: linear-gradient(160deg, var(--teal-800), var(--teal-900));
  display: grid; place-items: center; box-shadow: var(--sh-lg); position: relative;
}
.founderlive__video .play {
  width: 78px; height: 78px; border-radius: 50%; background: var(--accent);
  display: grid; place-items: center; color: #2a1700; box-shadow: var(--sh-md);
}
.founderlive__video .live-pill {
  position: absolute; top: 16px; left: 16px; background: #b3322a; color: #fff;
  font-size: .75rem; font-weight: 800; letter-spacing: .08em; padding: .3em .7em; border-radius: var(--r-full);
  display: inline-flex; align-items: center; gap: .4em;
}
.founderlive__video .live-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.founderlive__schedule { display: flex; flex-direction: column; gap: 12px; margin-top: 1.2em; }
.founderlive__sched-item { display: flex; gap: 14px; align-items: flex-start; padding: 12px 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md); }
.founderlive__sched-item b { color: #fff; }
.founderlive__sched-item small { color: var(--text-on-deep-muted); }
@media (max-width: 880px) { .founderlive { grid-template-columns: 1fr; } }

/* ---- Safety strip ---- */
.safety-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 22px); }
.safety-strip__item { text-align: center; }
.safety-strip__item .ic { width: 52px; height: 52px; border-radius: 14px; background: var(--teal-100); color: var(--teal-700); display: grid; place-items: center; margin: 0 auto 12px; }
.safety-strip__item h4 { font-size: 1rem; margin: 0 0 .25em; color: var(--teal-900); }
.safety-strip__item p { font-size: .88rem; color: var(--text-muted); margin: 0; }
@media (max-width: 720px) { .safety-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---- CTA band ---- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: .4em; }
.cta-band .lead { margin-inline: auto; margin-bottom: 1.6em; }
.cta-band__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- PWA install ---- */
.pwa-note { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }
.pwa-note .pill { display: inline-flex; align-items: center; gap: .5em; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: var(--text-on-deep); padding: .5em 1em; border-radius: var(--r-full); font-size: .88rem; }

/* ---- Footer ---- */
.site-footer { background: var(--teal-900); color: var(--text-on-deep-muted); padding-block: clamp(48px, 7vw, 80px) 28px; }
.site-footer a { color: var(--text-on-deep-muted); }
.site-footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); }
.footer__brand svg { height: 40px; width: auto; margin-bottom: 12px; }
.footer__brand p { font-size: .92rem; max-width: 38ch; }
.footer__col h4 { color: #fff; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; font-size: .92rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 40px; padding-top: 22px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: space-between; font-size: .82rem; }
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---- Date Curation ---- */
.curation { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.curation__visual {
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3;
  background: linear-gradient(160deg, var(--amber-200), var(--amber-400));
  display: grid; place-items: center; box-shadow: var(--sh-md); position: relative; padding: 24px;
}
.curation__tickets { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 320px; }
.curation__ticket {
  background: #fff; border-radius: var(--r-md); padding: 14px 16px; box-shadow: var(--sh-sm);
  font-size: .82rem; font-weight: 700; color: var(--teal-800); display: flex; flex-direction: column; gap: 2px;
  min-width: 120px;
}
.curation__ticket small { color: var(--text-muted); font-weight: 600; }
.curation__ticket .stamp { color: var(--accent); font-weight: 800; }
.curation__vibes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.4em; }
.curation__steps { list-style: none; padding: 0; margin: 1.3em 0 0; counter-reset: step; }
.curation__steps li {
  counter-increment: step; display: flex; gap: 14px; padding: 12px 0; border-top: 1px solid var(--border); color: var(--text-soft);
}
.curation__steps li:first-child { border-top: 0; }
.curation__steps li::before {
  content: counter(step); flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal-700); color: #fff; font-weight: 800; font-size: .9rem;
  display: grid; place-items: center; margin-top: 2px;
}
.curation__dutch {
  background: var(--cream-deep); border: 1px dashed var(--amber-400); border-radius: var(--r-lg);
  padding: 18px 20px; margin-top: 1.4em;
}
.curation__dutch h4 { margin: 0 0 .3em; font-size: 1.05rem; color: var(--teal-900); }
.curation__dutch p { margin: 0; font-size: .92rem; color: var(--text-soft); }
.curation__nomoney {
  margin-top: 1.2em; display: flex; gap: 12px; align-items: flex-start;
  background: #f6e3e1; border: 1px solid #e3b3ad; border-radius: var(--r-md); padding: 14px 16px; color: #7a2420;
}
.curation__nomoney svg { flex: 0 0 auto; width: 24px; height: 24px; margin-top: 1px; }
.curation__nomoney b { color: #8a2820; }
@media (max-width: 880px) { .curation { grid-template-columns: 1fr; } }

/* ---- Curation flows (two ways) ---- */
.curation__flows { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 1.4em; }
.curation__flow {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 18px 18px 16px; box-shadow: var(--sh-sm);
}
.curation__flow h4 { margin: 0 0 .35em; font-size: 1.02rem; color: var(--teal-900); font-family: var(--font-head); }
.curation__flow p { margin: 0; font-size: .9rem; color: var(--text-soft); }
@media (max-width: 620px) { .curation__flows { grid-template-columns: 1fr; } }

/* ---- Curation: free dates + safety ---- */
.curation__free {
  margin-top: 1.4em; background: #eef6f0; border: 1px solid #cfe6da;
  border-radius: var(--r-lg); padding: 18px 20px;
}
.curation__free h4 { margin: 0 0 .3em; font-size: 1.05rem; color: var(--teal-900); font-family: var(--font-head); }
.curation__free p { margin: 0 0 .8em; font-size: .92rem; color: var(--text-soft); }
.curation__freechips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip--soft { background: #fff; border: 1px solid #d6e8dd; color: var(--teal-800); }

.curation__safety {
  margin-top: 1.4em; background: var(--teal-800); color: #eaf3f1;
  border-radius: var(--r-lg); padding: 20px 22px;
}
.curation__safety-head { display: flex; gap: 12px; align-items: center; margin-bottom: .8em; }
.curation__safety-head svg { width: 30px; height: 30px; color: var(--amber-300); flex: 0 0 auto; }
.curation__safety-head h4 { margin: 0; font-size: 1.1rem; color: #fff; font-family: var(--font-head); }
.curation__safety-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.curation__safety-list li { font-size: .9rem; line-height: 1.5; color: #d7e8e4; padding-left: 18px; position: relative; }
.curation__safety-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--amber-300); }
.curation__safety-list b { color: #fff; }
