:root {
  --ink: #1f2923;
  --muted: #637067;
  --forest: #244b38;
  --forest-dark: #183528;
  --sage: #dfe9dc;
  --cream: #f8f5ee;
  --paper: #fffdf8;
  --gold: #b58a44;
  --line: #d9dfd7;
  --danger: #9c3636;
  --shadow: 0 24px 70px rgba(31, 52, 40, 0.12);
  --porcelain: #ece4db;
  --rosewood: #c4a69b;
  --parchment: #cfc8be;
  --olive-mist: #bab8a2;
  --antique-gold: #b88a3b;
  --champagne-gold: #d8bd78;
  --deep-gold: #84601f;
  --ivory: #fffaf5;
  --paradise-wallpaper: url("/static/images/paradise-river-rest.png");
}

.floating-concierge {
  position: fixed;
  top: 42%;
  right: 0;
  z-index: 40;
  display: grid;
  gap: 0.15rem;
  justify-items: center;
  padding: 0.9rem 0.65rem;
  color: var(--ivory, #fffaf5);
  background: linear-gradient(160deg, #315b49, #173f31);
  border: 1px solid var(--champagne-gold, #d8bd78);
  border-right: 0;
  border-radius: 18px 0 0 18px;
  box-shadow: 0 14px 34px rgba(31, 56, 46, 0.24);
  text-decoration: none;
  writing-mode: vertical-rl;
  animation: concierge-float 3.2s ease-in-out infinite;
}

.floating-concierge span {
  color: var(--champagne-gold, #d8bd78);
  font-size: 1.1rem;
}

@keyframes concierge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.privacy-note,
.enhancement-cart-status {
  color: var(--ink-soft, #5f5953);
  font-size: 0.92rem;
}

.add-enhancements-button {
  margin-top: 1rem;
}

.enhancement-cart-status:not(:empty) {
  padding: 0.8rem 1rem;
  background: rgba(216, 189, 120, 0.16);
  border-left: 3px solid var(--antique-gold, #b88a3b);
}

@media (max-width: 760px) {
  .floating-concierge {
    top: auto;
    right: 14px;
    bottom: 14px;
    border-right: 1px solid var(--champagne-gold, #d8bd78);
    border-radius: 999px;
    writing-mode: horizontal-tb;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-concierge { animation: none; }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(196, 166, 155, 0.38), transparent 34rem),
    radial-gradient(circle at 88% 22%, rgba(186, 184, 162, 0.42), transparent 38rem),
    linear-gradient(rgba(236, 228, 219, 0.94), rgba(236, 228, 219, 0.97)),
    var(--paradise-wallpaper, none) center / cover fixed,
    var(--porcelain);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 80px;
}

.brand-header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.brand-header::after {
  display: block;
  width: min(320px, 65%);
  height: 1px;
  margin: 30px auto 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--champagne-gold), transparent);
  box-shadow: 0 1px 6px rgba(132, 96, 31, 0.22);
}

.gold-embossed {
  color: var(--antique-gold);
  background: linear-gradient(120deg, var(--deep-gold), #f1dda4 42%, var(--antique-gold) 68%, var(--deep-gold));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 0 rgba(255, 250, 245, 0.8), 0 2px 4px rgba(132, 96, 31, 0.18);
}

.eyebrow,
.step-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4.3rem);
  font-weight: 500;
}

h2 {
  margin: 0 0 24px;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 500;
}

h3 {
  margin: 34px 0 16px;
  font-size: 1.4rem;
}

.intro,
.helper {
  color: var(--muted);
  line-height: 1.7;
}

.intro {
  max-width: 690px;
  margin: 20px auto 0;
  font-size: 1.05rem;
}

.assessment-card,
.report-card,
.concierge-card {
  position: relative;
  border: 1px solid rgba(184, 138, 59, 0.48);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 250, 245, 0.97), rgba(207, 200, 190, 0.56));
  box-shadow: var(--shadow);
}

.assessment-card::before,
.report-card::before {
  position: absolute;
  inset: 12px;
  z-index: 0;
  border: 1px solid rgba(216, 189, 120, 0.34);
  border-radius: 20px;
  content: "";
  pointer-events: none;
}

.assessment-card > *,
.report-card > * { position: relative; z-index: 1; }

.signature-inclusions,
.pricing-ledger {
  margin: 30px 0;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(184, 138, 59, 0.4);
  border-radius: 24px;
  background: rgba(255, 250, 245, 0.72);
}

.core-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.core-experience { display: flex; gap: 12px; padding: 16px; border-radius: 16px; background: rgba(236, 228, 219, 0.68); }
.core-experience h4 { margin: 0 0 5px; font-family: Georgia, serif; font-size: 1.05rem; }
.core-experience p { margin: 0; color: var(--muted); font-size: .92rem; }
.gold-mark { color: var(--antique-gold); }
.pricing-ledger > div { display: flex; justify-content: space-between; gap: 24px; padding: 13px 0; border-bottom: 1px solid rgba(184,138,59,.2); }
.pricing-ledger .pricing-total { margin-top: 8px; border-bottom: 0; font-size: 1.15rem; }
.button.product { color: #302a27; background: linear-gradient(135deg, var(--champagne-gold), #f1dda4); border: 1px solid var(--deep-gold); }

:focus-visible { outline: 3px solid var(--deep-gold); outline-offset: 4px; }

@media (max-width: 680px) { .core-grid { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* v6.3 invitation report system */
.report-card {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 189, 120, 0.2), transparent 23rem),
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(236, 228, 219, 0.9));
}

.report-card::after {
  position: absolute;
  top: -70px;
  right: -76px;
  width: 260px;
  height: 420px;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  transform: rotate(12deg);
  background:
    repeating-linear-gradient(78deg, transparent 0 17px, var(--antique-gold) 18px 20px, transparent 21px 35px);
  border-radius: 50% 0 50% 50%;
}

.report-hero {
  position: relative;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(184, 138, 59, 0.52);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 22px 52px rgba(48, 42, 39, 0.09);
}

.report-hero::before {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(216, 189, 120, 0.38);
}

.fit-heading { margin-top: 28px; }
.fit-signals { max-width: 820px; }

.itinerary-day {
  margin: 34px 0;
  padding: clamp(20px, 4vw, 36px);
  border: 1px solid rgba(184, 138, 59, 0.35);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.68);
}

.day-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(184, 138, 59, 0.28);
}

.day-heading h3 { margin: 0; font-size: clamp(1.8rem, 4vw, 2.6rem); }

.payment-policy-acceptance {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin: 20px 0;
  padding: 17px;
  border: 1px solid rgba(216, 189, 120, 0.56);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.1);
  line-height: 1.55;
}

.payment-policy-acceptance input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--champagne-gold);
}

.secondary-recommendations,
.wellness-reflection,
.post-checkout-actions {
  margin: 40px 0;
  padding-top: 30px;
  border-top: 1px solid rgba(184, 138, 59, 0.3);
}

.secondary-recommendations {
  opacity: 0.94;
}

.secondary-recommendations .alternative-card {
  background: rgba(255, 253, 248, 0.62);
  box-shadow: none;
}

@media (max-width: 680px) {
  .day-heading { display: block; }
  .report-card::after { opacity: 0.06; }
}

.assessment-card {
  padding: clamp(24px, 5vw, 52px);
}

.progress-wrap {
  margin-bottom: 46px;
}

.progress-copy {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--sage);
}

.progress-bar {
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  transition: width 220ms ease;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: reveal 240ms ease;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-weight: 700;
}

.field small {
  color: var(--muted);
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: white;
  font-weight: 500;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(36, 75, 56, 0.1);
}

.field textarea {
  resize: vertical;
}

.choice-grid {
  display: grid;
  gap: 14px;
}

.challenge-section,
.investment-section {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(184, 138, 59, 0.3);
}

.investment-guidance,
.included-enhancement-notice {
  display: grid;
  gap: 6px;
  margin: 20px 0;
  border: 1px solid rgba(184, 138, 59, 0.38);
  border-radius: 16px;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(216, 189, 120, 0.14);
  line-height: 1.55;
}

.investment-guidance[hidden],
.included-enhancement-notice[hidden],
.service-enhancements[hidden] {
  display: none;
}

.service-enhancements {
  margin-bottom: 28px;
}

.product-enhancements {
  margin-top: 28px;
}

.service-enhancements + .product-enhancements {
  padding-top: 28px;
  border-top: 1px solid rgba(184, 138, 59, 0.28);
}

.value-framing-copy {
  max-width: 760px;
  font-size: 1.02rem;
}

.two-column,
.budget-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-card {
  position: relative;
  display: grid;
  gap: 7px;
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 20px 20px 54px;
  color: var(--muted);
  background: white;
  cursor: pointer;
  line-height: 1.45;
  transition: border-color 160ms ease, background 160ms ease,
    transform 160ms ease;
}

.choice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 75, 56, 0.55);
}

.choice-card:has(input:checked) {
  border-color: var(--forest);
  background: #f1f7ef;
}

.choice-card input {
  position: absolute;
  top: 22px;
  left: 20px;
  width: 20px;
  height: 20px;
  accent-color: var(--forest);
}

.choice-title {
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 800;
}

.choice-card.compact {
  min-height: 72px;
  align-content: center;
}

.consent-box {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: var(--cream);
}

.consent-box p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 650;
}

.check-row input {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--forest);
}

.form-error {
  min-height: 24px;
  margin: 22px 0 0;
  color: var(--danger);
  font-weight: 700;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: white;
  background: var(--forest);
}

.button.primary:hover {
  background: var(--forest-dark);
}

.button.secondary {
  border-color: var(--line);
  color: var(--forest);
  background: white;
}

.button.secondary:hover {
  border-color: var(--forest);
  background: #f1f7ef;
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.report-card {
  padding: clamp(25px, 5vw, 54px);
}

.concierge-card {
  margin-top: 28px;
  padding: clamp(25px, 5vw, 46px);
}

.concierge-intro {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.concierge-intro h2 {
  margin-bottom: 12px;
}

.concierge-intro .helper {
  max-width: 700px;
  margin-bottom: 0;
}

.ai-badge,
.answer-status {
  display: inline-flex;
  flex: 0 0 auto;
  border: 1px solid rgba(36, 75, 56, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--forest);
  background: var(--sage);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.concierge-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.question-chip {
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--forest);
  background: white;
  font-size: 0.86rem;
  font-weight: 750;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease,
    transform 160ms ease;
}

.question-chip:hover,
.question-chip:focus-visible {
  border-color: var(--forest);
  background: #f1f7ef;
  transform: translateY(-1px);
}

.concierge-form {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.concierge-form > label {
  display: block;
  margin-bottom: 9px;
  font-weight: 800;
}

.concierge-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
}

.concierge-input-row textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  background: white;
  line-height: 1.5;
}

.concierge-input-row textarea:focus {
  outline: 3px solid rgba(181, 138, 68, 0.2);
  border-color: var(--gold);
}

.concierge-input-row .button {
  min-width: 175px;
}

.concierge-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.45;
}

.concierge-answer {
  margin-top: 24px;
  border: 1px solid rgba(181, 138, 68, 0.45);
  border-radius: 20px;
  padding: clamp(20px, 4vw, 28px);
  background: linear-gradient(145deg, #fffdf8, #f1f7ef);
}

.concierge-answer.is-loading {
  opacity: 0.72;
}

.concierge-answer-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.answer-copy {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.72;
  white-space: pre-line;
}

.concierge-followups {
  margin-top: 22px;
}

.concierge-followups p {
  margin-bottom: 10px;
}

#concierge-followup-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.concierge-action {
  margin-top: 20px;
}

.concierge-sources {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

.concierge-sources summary {
  cursor: pointer;
  color: var(--forest);
  font-weight: 800;
}

.concierge-sources ul {
  margin-bottom: 0;
  padding-left: 20px;
}

.trace-copy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.report-hero {
  border-bottom: 1px solid var(--line);
  padding-bottom: 26px;
}

.selection-recap {
  margin: 28px 0 34px;
  border: 2px solid rgba(181, 138, 68, 0.48);
  border-radius: 22px;
  padding: clamp(20px, 4vw, 30px);
  background: linear-gradient(145deg, #fffdf8, #f1f7ef);
  box-shadow: 0 14px 34px rgba(31, 52, 40, 0.08);
}

.selection-recap h3 {
  margin: 4px 0 20px;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.recap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.recap-grid > div {
  display: grid;
  gap: 5px;
  min-height: 90px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: white;
}

.recap-grid span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recap-grid strong {
  color: var(--ink);
  line-height: 1.4;
}

.recap-note,
.overnight-note {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.overnight-note {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  color: var(--ink);
  font-weight: 650;
}

.report-hero h2 {
  margin-bottom: 12px;
}

.price-line {
  color: var(--forest);
  font-size: 1.2rem;
  font-weight: 900;
}

.reflection-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.reflection-list li {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.agenda-grid {
  display: grid;
  gap: 16px;
  margin: 24px 0 30px;
}

.agenda-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 21px;
  background: white;
}

.agenda-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.agenda-number {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.agenda-item h3 {
  margin: 6px 0 12px;
}

.agenda-item p {
  color: var(--muted);
  line-height: 1.6;
}

.status-badge {
  display: inline-flex;
  border-radius: 99px;
  padding: 7px 10px;
  color: var(--forest);
  background: var(--sage);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: capitalize;
}

.cta-box,
.review-box {
  margin: 26px 0;
  border-radius: 20px;
  padding: 24px;
  color: white;
  background: var(--forest);
}

.cta-box h3,
.review-box h2 {
  margin-top: 0;
}

.cta-box .button.secondary {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--forest-dark);
  background: white;
}

.cta-box .button.secondary:hover {
  border-color: white;
  background: var(--sage);
}

.payment-card .button {
  width: fit-content;
  max-width: 100%;
}

.payment-card {
  border: 2px solid rgba(184, 138, 59, 0.56);
  box-shadow:
    0 10px 24px rgba(31, 52, 40, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.payment-card + .payment-card {
  margin-top: 4px;
}

.alternative-card {
  transition: border-color 160ms ease, box-shadow 160ms ease,
    transform 160ms ease;
}

.alternative-card:has(.alternative-select-button):hover {
  border-color: rgba(36, 75, 56, 0.5);
  box-shadow: 0 12px 26px rgba(31, 52, 40, 0.08);
  transform: translateY(-2px);
}

.alternative-action {
  width: fit-content;
  max-width: 100%;
  margin-top: 8px;
}

.supplemental-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  margin-top: 20px;
}

.product-action {
  flex: 1 1 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.product-action p {
  margin-top: 0;
  line-height: 1.55;
}

.confirmation-copy {
  margin: 22px 0 0;
  line-height: 1.55;
}

.disclaimer {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.header-chat-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--forest);
  font-weight: 800;
  text-underline-offset: 4px;
}

[hidden] {
  display: none !important;
}

@media (max-width: 700px) {
  .page-shell {
    width: min(100% - 20px, 960px);
    padding-top: 36px;
  }

  .field-grid,
  .two-column,
  .budget-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-wrap: wrap;
  }

  .form-actions .button {
    flex: 1;
  }

  .agenda-topline {
    display: grid;
  }

  .recap-grid {
    grid-template-columns: 1fr;
  }

  .supplemental-actions,
  .supplemental-actions .button,
  .alternative-action,
  .payment-card .button {
    width: 100%;
  }

  .concierge-intro,
  .concierge-answer-heading,
  .concierge-meta {
    display: grid;
  }

  .concierge-input-row {
    grid-template-columns: 1fr;
  }

  .concierge-input-row .button,
  .question-chip {
    width: 100%;
  }
}
