/* ---------------------------------------------------------------------------
   Thailand Group Trip — /ThailandTrip
   Palette is the itinerary PDF's: Word-purple headings (#7030A0), the lavender
   "why we planned it" callouts, and the logo's yellow. Structure follows
   view/pondicherry/pondicherry.css so the two campaign pages behave alike.
   Deliberately a single light theme — this is a brochure, not an app surface.
   --------------------------------------------------------------------------- */

:root {
	--plum-950: #1E0A30;
	--plum-900: #2E1147;
	--plum-800: #3B1760;
	--purple: #7030A0;
	--purple-600: #5E2688;
	--purple-300: #B98FD8;
	--lav-100: #F1E6F8;
	--lav-50: #F8F3FC;

	--yellow: #F7C914;
	--yellow-100: #FFF6D2;

	--paper: #FFFFFF;
	--ink: #231A2B;
	--muted: #685D71;
	--line: #E6DAEF;

	--green: #1F8F5F;
	--red: #B4232C;

	--r-sm: 10px;
	--r-md: 16px;
	--r-lg: 24px;
	--r-full: 999px;

	--shadow-sm: 0 1px 2px rgba(46, 17, 71, .06), 0 4px 12px rgba(46, 17, 71, .06);
	--shadow-md: 0 2px 6px rgba(46, 17, 71, .08), 0 18px 40px rgba(46, 17, 71, .12);
	--shadow-lg: 0 30px 70px rgba(30, 10, 48, .35);

	--maxw: 1120px;
	--bar-h: 62px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
	margin: 0;
	background: var(--lav-50);
	color: var(--ink);
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.62;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); }

h1, h2, h3 { font-family: 'Fraunces', Georgia, 'Times New Roman', serif; font-weight: 700; line-height: 1.12; margin: 0; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.12rem; font-family: 'Poppins', sans-serif; font-weight: 600; letter-spacing: 0; }
h4 { margin: 18px 0 6px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--purple); }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: 68px 0; }
.section--tight { padding: 48px 0; }

.eyebrow {
	font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
	color: var(--purple); margin: 0 0 12px;
}
.section-head { max-width: 680px; margin-bottom: 30px; }
.section-head--sm { margin-bottom: 20px; }
.section-head p { color: var(--muted); margin-top: 10px; }
.section-head .eyebrow { margin-top: 0; color: var(--purple); }
.note { font-size: .84rem; color: var(--muted); margin-top: 18px; }

/* --- buttons ------------------------------------------------------------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	font: inherit; font-weight: 600; text-decoration: none; cursor: pointer;
	border: 1px solid transparent; border-radius: var(--r-full);
	padding: 13px 26px; transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--purple); color: #fff; box-shadow: 0 8px 22px rgba(112, 48, 160, .32); }
.btn--primary:hover { background: var(--purple-600); }
.btn--ondark { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.34); }
.btn--ondark:hover { background: rgba(255,255,255,.18); }
.btn--wa { background: #25D366; color: #08331B; box-shadow: 0 8px 22px rgba(37, 211, 102, .28); }
.btn--wa:hover { background: #1FBA5A; }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }
.btn--sm { padding: 8px 18px; font-size: .85rem; }
.btn[disabled] { opacity: .55; pointer-events: none; }

/* --- sticky top bar ------------------------------------------------------ */
.topbar {
	position: sticky; top: 0; z-index: 60;
	background: rgba(248, 243, 252, .9);
	backdrop-filter: saturate(160%) blur(12px);
	-webkit-backdrop-filter: saturate(160%) blur(12px);
	border-bottom: 1px solid transparent;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.topbar.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 20px rgba(46, 17, 71, .07); }
.topbar__in { min-height: var(--bar-h); display: flex; align-items: center; gap: 16px; }
.topbar__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 700; }
.topbar__brand img { width: 30px; height: 30px; border-radius: 8px; }
.topbar__brand span { font-size: .95rem; letter-spacing: -.01em; }
.topbar__meta { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.topbar__dates { font-size: .84rem; color: var(--muted); font-weight: 500; }
.topbar__price { font-size: .84rem; white-space: nowrap; }
.topbar__price s { color: var(--muted); }
.topbar__price b { color: var(--purple); }
.topbar .btn { padding: 9px 20px; font-size: .88rem; }
@media (max-width: 860px) { .topbar__dates, .topbar__price { display: none; } }

/* --- hero ---------------------------------------------------------------- */
.hero {
	position: relative; overflow: hidden;
	background:
		radial-gradient(110% 90% at 8% 0%, #5A2390 0%, rgba(90, 35, 144, 0) 58%),
		radial-gradient(90% 80% at 100% 100%, var(--plum-950) 0%, rgba(30, 10, 48, 0) 60%),
		var(--plum-900);
	color: #fff;
	padding: 56px 0 72px;
}
.hero::after {
	content: ''; position: absolute; inset: auto 0 -1px 0; height: 64px;
	background: linear-gradient(to bottom, rgba(248,243,252,0), var(--lav-50));
	pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.hero__eyebrow { color: var(--yellow); }
.hero h1 { color: #fff; }
.hero h1 em { font-style: normal; color: var(--yellow); display: block; }
.hero__tag { font-family: 'Fraunces', Georgia, serif; font-size: 1.25rem; font-weight: 600; color: #E6D6F3; margin: 14px 0 22px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 24px; padding: 0; }
.chip {
	display: inline-flex; align-items: center; gap: 7px;
	background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
	color: #F3EAFA; border-radius: var(--r-full); padding: 7px 14px; font-size: .82rem; font-weight: 500;
}
.chip--hot { background: var(--yellow); border-color: var(--yellow); color: #3D2F00; font-weight: 700; }

.hero__price {
	display: grid; gap: 2px; margin: 0 0 26px; padding: 16px 20px; width: fit-content; max-width: 100%;
	background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.22); border-radius: var(--r-md);
}
.hero__mrp { font-size: .86rem; color: #CDB8E0; }
.hero__offer { font-size: 1rem; color: #fff; }
.hero__offer b { font-family: 'Fraunces', Georgia, serif; font-size: 2rem; color: var(--yellow); margin-left: 6px; }
.hero__tax { font-size: .78rem; color: #CDB8E0; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero__photo img {
	width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: 50% 60%;
	border-radius: var(--r-lg); box-shadow: var(--shadow-lg); border: 5px solid rgba(255,255,255,.92);
}

@media (max-width: 900px) {
	.hero { padding: 24px 0 52px; }
	.hero__grid { grid-template-columns: 1fr; gap: 24px; }
	.hero__photo { order: -1; }
	.hero__photo img { border-width: 4px; border-radius: 18px; }
}

/* --- intro --------------------------------------------------------------- */
.intro { text-align: center; }
.intro h2 { color: var(--purple); margin-bottom: 12px; }
.intro p { color: var(--ink); font-size: 1.02rem; }

/* --- journey table + highlights ----------------------------------------- */
.journey { display: grid; grid-template-columns: .95fr 1.05fr; gap: 26px; align-items: start; }
@media (max-width: 900px) { .journey { grid-template-columns: 1fr; } }

.tablewrap { overflow-x: auto; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.jtable { width: 100%; border-collapse: collapse; font-size: .92rem; }
.jtable th { text-align: left; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; padding: 14px 16px; background: var(--lav-100); }
.jtable td { padding: 14px 16px; border-top: 1px solid var(--line); vertical-align: top; }
.jtable td:first-child { white-space: nowrap; font-weight: 600; }
.jtable td:nth-child(2) { white-space: nowrap; color: var(--purple); font-weight: 600; }
.ftable { min-width: 620px; }
.ftable td { white-space: nowrap; }
.ftable td:nth-child(2) { color: var(--ink); font-weight: 400; }

.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; box-shadow: var(--shadow-sm); }
.highlights h3 { font-family: 'Fraunces', Georgia, serif; font-size: 1.3rem; margin-bottom: 14px; }
.highlights__foot { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: .9rem; color: var(--muted); }
.highlights__foot b { color: var(--purple); letter-spacing: .04em; }

.ticklist { list-style: none; margin: 0; padding: 0; }
.ticklist li { position: relative; padding: 0 0 10px 28px; font-size: .93rem; }
.ticklist li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.ticklist--in li::before { content: '✓'; color: var(--green); }
.ticklist--ex li::before { content: '✕'; color: #B3A6BE; }
.ticklist--ex li { color: var(--muted); }

/* --- photos -------------------------------------------------------------- */
.photos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 0 0 18px; }
.photos img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 14px; background: var(--lav-100); }
.photos--one { grid-template-columns: 1fr; }
.photos--one img { aspect-ratio: 16 / 8; }
@media (max-width: 480px) { .photos { gap: 8px; } .photos img { border-radius: 10px; } }

/* --- stays --------------------------------------------------------------- */
.stays { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 900px) { .stays { grid-template-columns: 1fr; } }
.stay__name { font-family: 'Fraunces', Georgia, serif; font-size: 1.45rem; color: var(--purple); }
.stay__sub { color: var(--muted); font-weight: 600; margin: 4px 0 0; }
.stay__fine { font-size: .86rem; color: var(--muted); margin-top: 14px; }
.stay p { font-size: .93rem; }
.take { background: var(--lav-100); border-radius: var(--r-sm); padding: 10px 14px; font-weight: 600; color: var(--plum-800); }

.kv { display: grid; grid-template-columns: auto 1fr; gap: 8px 18px; margin: 14px 0 0; }
.kv__k { font-size: .8rem; color: var(--muted); white-space: nowrap; }
.kv__v { font-size: .9rem; font-weight: 600; }

/* --- day-wise ------------------------------------------------------------ */
.days { list-style: none; margin: 0; padding: 0; display: grid; gap: 26px; }
.day { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.day__head { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 8px; }
.day__num { background: var(--purple); color: #fff; font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; border-radius: var(--r-full); padding: 4px 12px; }
.day__date { font-weight: 700; color: var(--purple); font-size: .88rem; letter-spacing: .06em; text-transform: uppercase; }
.day__title { font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.4rem, 3vw, 1.8rem); text-transform: uppercase; letter-spacing: .01em; }
.day__route { color: var(--purple); font-style: italic; margin: 4px 0 18px; }
.day > p { font-size: .95rem; }
.why { background: var(--lav-100); border-left: 4px solid var(--purple); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 14px 18px; margin: 6px 0 16px; font-size: .93rem; }
.why b { display: block; color: var(--purple); text-transform: uppercase; letter-spacing: .06em; font-size: .8rem; margin-bottom: 4px; }
.day__meta { font-size: .84rem; color: var(--muted); border-top: 1px dashed var(--line); padding-top: 12px; }
@media (max-width: 560px) { .day { padding: 20px 18px; border-radius: var(--r-md); } }

/* --- special ------------------------------------------------------------- */
.special { background: var(--plum-900); color: #EADCF5; }
.special h2 { color: #fff; }
.special .section-head .eyebrow { color: var(--yellow); }
.special__grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 36px; align-items: center; }
@media (max-width: 900px) { .special__grid { grid-template-columns: 1fr; } }
.special__gift { color: var(--yellow); margin: 22px 0 8px; font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: .06em; font-size: .95rem; }
.pricebox { background: var(--paper); color: var(--ink); border: 2px solid var(--purple-300); border-radius: var(--r-lg); padding: 26px; text-align: center; box-shadow: var(--shadow-lg); }
.pricebox__mrp { color: var(--muted); }
.pricebox__offer { font-size: 1.05rem; margin: 4px 0; }
.pricebox__offer b { display: block; font-family: 'Fraunces', Georgia, serif; font-size: 2.4rem; color: var(--purple); line-height: 1.1; }
.pricebox__tax { font-size: .84rem; color: var(--muted); margin-bottom: 18px; }

/* --- inclusions ---------------------------------------------------------- */
.ie { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; }
@media (max-width: 860px) { .ie { grid-template-columns: 1fr; } }
.ie__h { color: var(--purple); margin-bottom: 18px; }
.incl { margin: 0; }
.incl dt { font-weight: 700; color: var(--purple); text-transform: uppercase; letter-spacing: .05em; font-size: .82rem; margin-top: 14px; }
.incl dt:first-child { margin-top: 0; }
.incl dd { margin: 2px 0 0; font-size: .93rem; }
.perks { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 9px; }
.perks li { background: var(--yellow-100); border: 1px solid #EEDC8E; color: #5B4600; border-radius: var(--r-sm); padding: 8px 13px; font-size: .82rem; font-weight: 600; }

/* --- flights + policy ---------------------------------------------------- */
.split { display: grid; grid-template-columns: 1.25fr .75fr; gap: 30px; align-items: start; }
@media (max-width: 940px) { .split { grid-template-columns: minmax(0, 1fr); } }
#flights .split { grid-template-columns: minmax(0, 1fr) 340px; }
@media (max-width: 940px) { #flights .split { grid-template-columns: minmax(0, 1fr); } }
.airports { font-size: .88rem; color: var(--muted); margin-top: 16px; }
.airports b { color: var(--ink); }
.policy { border-top: 4px solid var(--purple); }
.policy h3 { font-size: 1rem; margin: 12px 0 2px; }
.policy p { font-size: .9rem; }
.policy__strong { font-weight: 700; margin-top: 14px; font-size: .88rem !important; }

/* --- booking ------------------------------------------------------------- */
.book { background: var(--plum-950); color: #fff; }
.book h2 { color: #fff; }
.book .section-head .eyebrow { color: var(--yellow); }
.book__lede { color: #CDB8E0 !important; }
.book__grid { display: grid; grid-template-columns: 1fr 440px; gap: 36px; align-items: start; }
@media (max-width: 960px) { .book__grid { grid-template-columns: 1fr; } }
.book__why { margin-top: 10px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md); background: rgba(255,255,255,.04); }
.book__why p { color: #D9C8E8; font-size: .88rem; }
.book__why b { color: #fff; }
.book__ask { color: #CDB8E0; font-size: .85rem; margin-top: 22px; }

.panel { background: var(--paper); color: var(--ink); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-md); }
.panel__title { font-weight: 700; font-size: 1.06rem; margin-bottom: 4px; }
.panel__sub { font-size: .84rem; color: var(--muted); margin-bottom: 20px; }
@media (max-width: 480px) { .panel { padding: 20px 16px; } }

.field { margin-bottom: 15px; }
.field > label, .legend { display: block; font-size: .8rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.legend__hint { font-weight: 400; color: var(--muted); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"] {
	width: 100%; font: inherit; font-size: .95rem; color: var(--ink);
	background: var(--lav-50); border: 1px solid var(--line); border-radius: var(--r-sm);
	padding: 12px 14px; transition: border-color .15s ease, background .15s ease;
}
.field input:focus { background: #fff; border-color: var(--purple); outline: none; box-shadow: 0 0 0 3px rgba(112,48,160,.16); }
.field input[aria-invalid="true"] { border-color: var(--red); background: #FFF6F6; }
#pan { text-transform: uppercase; letter-spacing: .08em; max-width: 220px; }
.field__err { display: none; color: var(--red); font-size: .78rem; margin-top: 5px; font-weight: 500; }
.field.has-err .field__err { display: block; }
.phone { display: grid; grid-template-columns: 62px 1fr; gap: 8px; }
.phone__dial { display: grid; place-items: center; background: var(--lav-100); border: 1px solid var(--line); border-radius: var(--r-sm); font-size: .9rem; font-weight: 600; color: var(--muted); }

fieldset { border: 0; margin: 0 0 15px; padding: 0; min-width: 0; }

.stepper { display: flex; align-items: center; gap: 6px; background: var(--lav-50); border: 1px solid var(--line); border-radius: var(--r-full); padding: 5px; width: fit-content; }
.stepper button {
	width: 38px; height: 38px; border-radius: 50%; border: 0; background: var(--paper);
	color: var(--plum-800); font-size: 1.3rem; line-height: 1; cursor: pointer; font-weight: 600;
	box-shadow: var(--shadow-sm); transition: background .15s ease;
}
.stepper button:hover:not(:disabled) { background: var(--lav-100); }
.stepper button:disabled { opacity: .35; cursor: not-allowed; }
.stepper__val { min-width: 54px; text-align: center; font-weight: 700; font-size: 1.05rem; }
.stepper__hint { font-size: .78rem; color: var(--muted); margin-top: 7px; }

/* payment plan cards */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.plan {
	position: relative; display: grid; gap: 1px; padding: 13px 14px 13px 40px; cursor: pointer;
	background: var(--lav-50); border: 1px solid var(--line); border-radius: var(--r-md);
	transition: border-color .15s ease, background .15s ease;
}
.plan[hidden] { display: none; }
.plan input { position: absolute; left: 14px; top: 16px; width: 17px; height: 17px; margin: 0; accent-color: var(--purple); }
.plan__t { font-weight: 600; font-size: .9rem; }
.plan__d { font-size: .75rem; color: var(--muted); }
.plan__p { font-weight: 700; color: var(--purple); margin-top: 4px; }
.plan:hover { border-color: var(--purple-300); }
.plan:has(input:checked) { border-color: var(--purple); background: var(--lav-100); box-shadow: 0 0 0 1px var(--purple) inset; }
.plans--single { grid-template-columns: 1fr; }
@media (max-width: 380px) { .plans { grid-template-columns: 1fr; } }

/* gender segmented control */
.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.seg label { position: relative; cursor: pointer; }
.seg input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.seg span {
	display: block; text-align: center; padding: 10px 6px; font-size: .88rem; font-weight: 500;
	background: var(--lav-50); border: 1px solid var(--line); border-radius: var(--r-sm);
	transition: background .15s ease, border-color .15s ease;
}
.seg input:checked + span { background: var(--purple); border-color: var(--purple); color: #fff; font-weight: 600; }
.seg input:focus-visible + span { outline: 3px solid var(--yellow); outline-offset: 2px; }
.field.has-err .seg span { border-color: var(--red); }

/* co-travellers */
.cotrav { margin-bottom: 15px; }
.cotrav[hidden] { display: none; }
.cotrav__row { display: grid; grid-template-columns: 1fr 108px; gap: 8px; margin-bottom: 8px; }
.cotrav__row input, .cotrav__row select {
	width: 100%; font: inherit; font-size: .9rem; color: var(--ink); background: var(--lav-50);
	border: 1px solid var(--line); border-radius: var(--r-sm); padding: 10px 12px;
}
.cotrav__row input:focus, .cotrav__row select:focus { background: #fff; border-color: var(--purple); outline: none; }

/* price summary */
.summary { background: var(--lav-50); border: 1px dashed var(--purple-300); border-radius: var(--r-md); padding: 16px 18px; margin: 4px 0 18px; }
.summary__line { display: flex; justify-content: space-between; gap: 12px; font-size: .86rem; padding: 3px 0; color: var(--muted); }
.summary__line b { color: var(--ink); font-weight: 600; }
.summary__line--total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 8px; color: var(--ink); font-weight: 600; }
.summary__total { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 12px; }
.summary__total span { font-weight: 700; }
.summary__total strong { font-size: 1.6rem; font-family: 'Fraunces', Georgia, serif; color: var(--purple); }
.summary__gst { font-size: .76rem; color: var(--muted); text-align: right; margin-top: 2px; }
.summary__gst:empty { display: none; }

.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
.consent input { margin: 2px 0 0; width: 17px; height: 17px; accent-color: var(--purple); flex: 0 0 auto; }

.trustrow { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: .76rem; color: var(--muted); text-align: center; }
.formerr { display: none; background: #FDECEC; border: 1px solid #F2C2C4; color: #7E1A20; border-radius: var(--r-sm); padding: 11px 14px; font-size: .85rem; margin-bottom: 14px; }
.formerr.is-on { display: block; }

.nextsteps { list-style: none; margin: 0; padding: 0; counter-reset: n; }
.nextsteps li { position: relative; padding: 0 0 18px 44px; color: #D9C8E8; font-size: .93rem; }
.nextsteps li::before {
	counter-increment: n; content: counter(n);
	position: absolute; left: 0; top: -1px; width: 30px; height: 30px; border-radius: 50%;
	background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
	display: grid; place-items: center; font-size: .82rem; font-weight: 700; color: var(--yellow);
}
.nextsteps b { color: #fff; display: block; font-weight: 600; }

.done, .closed { text-align: center; }
.closed[hidden] { display: none; }
.done__tick { width: 64px; height: 64px; border-radius: 50%; background: #E4F5EC; color: var(--green); display: grid; place-items: center; margin: 0 auto 16px; font-size: 2rem; }
.done h3, .closed h3 { font-family: 'Fraunces', Georgia, serif; font-size: 1.6rem; margin-bottom: 8px; }
.closed p { color: var(--muted); margin-bottom: 18px; }
.done__ref { display: inline-block; background: var(--lav-50); border: 1px dashed var(--purple-300); border-radius: var(--r-sm); padding: 9px 16px; margin: 14px 0; font-weight: 700; letter-spacing: .04em; }
.done__meta { font-size: .84rem; color: var(--muted); }
.done__bal { background: var(--yellow-100); border: 1px solid #EEDC8E; border-radius: var(--r-sm); padding: 10px 14px; font-size: .86rem; margin-top: 12px; }

/* --- why travel buddy ---------------------------------------------------- */
.split--why { grid-template-columns: .7fr 1.3fr; gap: 40px; }
@media (max-width: 940px) { .split--why { grid-template-columns: 1fr; } }
.collage { margin: 0; }
.collage img { border-radius: var(--r-md); box-shadow: var(--shadow-md); background: #FFFDF1; }
.collage figcaption { font-size: .86rem; color: var(--muted); margin-top: 14px; }
.collage figcaption b { display: block; color: var(--purple); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
@media (max-width: 940px) { .collage { max-width: 420px; margin: 0 auto; } }
#why p { font-size: .94rem; }
.why__h { color: var(--purple); text-transform: uppercase; letter-spacing: .05em; font-size: .95rem; margin: 26px 0 12px; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 420px) { .stats { grid-template-columns: 1fr; } }
.stat { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px; display: grid; gap: 2px; }
.stat b { font-family: 'Fraunces', Georgia, serif; font-size: 1.7rem; color: var(--purple); line-height: 1.1; }
.stat span { font-weight: 600; font-size: .88rem; }
.stat small { color: var(--muted); font-size: .78rem; line-height: 1.45; }

/* --- terms --------------------------------------------------------------- */
.tnc { margin: 0; padding: 0 0 0 22px; columns: 2; column-gap: 40px; font-size: .88rem; color: var(--muted); }
.tnc li { break-inside: avoid; margin-bottom: 14px; }
.tnc li::marker { color: var(--purple); font-weight: 700; }
.tnc b { display: block; color: var(--purple); }
@media (max-width: 820px) { .tnc { columns: 1; } }

/* --- closing ------------------------------------------------------------- */
.closing { text-align: center; background: var(--lav-100); }
.closing__in { max-width: 760px; }
.closing h2 { margin-bottom: 18px; }
.closing p { font-size: 1rem; }
.closing__leave { color: var(--purple); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-top: 8px; }
.closing__big { font-family: 'Fraunces', Georgia, serif; font-weight: 800; color: var(--purple); font-size: clamp(2rem, 6vw, 3.2rem); line-height: 1.12; text-transform: uppercase; margin: 22px 0 10px; }
.closing__sign { font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 26px !important; }

/* --- footer -------------------------------------------------------------- */
.footer { background: var(--plum-950); color: #CDB8E0; padding: 44px 0 96px; font-size: .85rem; }
.footer__top { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand { display: flex; align-items: center; gap: 11px; color: #fff; font-weight: 700; }
.footer__brand small { display: block; font-weight: 400; color: var(--yellow); font-size: .74rem; }
.footer__brand img { width: 34px; height: 34px; border-radius: 9px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer a { color: #E6D6F3; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__bottom { padding-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .78rem; }

/* --- floating actions ---------------------------------------------------- */
.fab {
	position: fixed; right: 18px; bottom: 18px; z-index: 70;
	width: 54px; height: 54px; border-radius: 50%; background: #25D366;
	display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.42);
	border: 0; cursor: pointer;
}
.fab svg { width: 28px; height: 28px; fill: #fff; }

.paybar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 65;
	background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
	border-top: 1px solid var(--line); padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
	display: none; align-items: center; gap: 14px;
	box-shadow: 0 -6px 24px rgba(46,17,71,.12);
}
.paybar__p { font-size: .72rem; color: var(--muted); line-height: 1.2; }
.paybar__p b { display: block; font-size: 1.1rem; color: var(--ink); font-family: 'Fraunces', Georgia, serif; }
.paybar .btn { margin-left: auto; padding: 12px 22px; }
@media (max-width: 960px) {
	.paybar { display: flex; }
	.fab { bottom: 84px; }
	.footer { padding-bottom: 110px; }
}
