/* ==================================================================
   FINT EDU — Mobile-first stylesheet
   Calm & premium. Deep navy + sharp orange accent (from the logo).
   Base styles target mobile; larger screens layered via min-width.
================================================================== */

:root {
  /* Core palette — pulled from the logo */
  --navy-900: #060d1f;
  --navy-800: #0a1530;
  --navy-700: #111e44;
  --navy-600: #1a2a5e;
  --blue-500: #2855c4;     /* logo blue */
  --orange:   #ff6a1f;     /* logo orange dot */
  --orange-soft: #ff8a4a;

  --cream:     #f5f1e8;
  --cream-dim: #c9c4b8;
  --cream-mute:#7e7c75;

  --rule:        rgba(245, 241, 232, 0.12);
  --rule-strong: rgba(245, 241, 232, 0.22);

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans:  'Inter Tight', system-ui, sans-serif;

  --max: 1200px;
  --pad: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--navy-900);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* Tap-feel on mobile */
a, button, summary, input, select { -webkit-tap-highlight-color: transparent; }

/* ------------------------------------------------------------------
   Background atmosphere
------------------------------------------------------------------ */
.bg-layer {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
}
.bg-grad {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 50% at 80% 0%, rgba(40, 85, 196, 0.18), transparent 70%),
    radial-gradient(60% 45% at 0% 100%, rgba(255, 106, 31, 0.10), transparent 75%),
    linear-gradient(180deg, var(--navy-900) 0%, #04081a 100%);
}
.bg-grain {
  position: absolute; inset: 0;
  opacity: 0.3;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.94  0 0 0 0 0.91  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ------------------------------------------------------------------
   Generic section
------------------------------------------------------------------ */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 12vw, 160px) var(--pad);
  position: relative;
}

.section-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.section-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--orange);
  letter-spacing: 0;
}
.section-kicker { position: relative; padding-left: 16px; }
.section-kicker::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 8px; height: 1px; background: var(--rule-strong);
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 7vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  max-width: 22ch;
}
.section-title.small {
  font-size: clamp(22px, 5.4vw, 38px);
  max-width: 24ch;
}
.section-title em {
  font-style: italic;
  color: var(--orange);
  font-weight: 400;
}

.section-body {
  font-size: clamp(15.5px, 4.2vw, 19px);
  color: var(--cream-dim);
  max-width: 60ch;
  margin: 0 0 28px;
  line-height: 1.7;
}

.section-cta { margin-top: 8px; }

/* ------------------------------------------------------------------
   Buttons
------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .25s cubic-bezier(.2,.7,.2,1);
  min-height: 48px;          /* touch target */
  text-align: center;
}
.btn-primary {
  background: var(--orange);
  color: var(--navy-900);
}
.btn-primary:active { transform: scale(0.98); }
.btn-ghost {
  border-color: var(--rule-strong);
  color: var(--cream);
}
.btn-lg {
  padding: 18px 30px;
  font-size: 16px;
  min-height: 54px;
}

@media (hover: hover) {
  .btn-primary:hover {
    background: var(--cream);
    transform: translateY(-1px);
    box-shadow: 0 12px 30px -12px rgba(255, 106, 31, 0.55);
  }
  .btn-ghost:hover {
    border-color: var(--cream);
    background: rgba(245, 241, 232, 0.04);
  }
}

/* ------------------------------------------------------------------
   Nav (sticky, mobile-first)
------------------------------------------------------------------ */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px var(--pad);
  background: rgba(6, 13, 31, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 30px; height: 30px;
  object-fit: contain;
  border-radius: 7px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--rule);
}
.brand-dot { color: var(--orange); }

.nav-links { display: none; }    /* hidden on mobile */

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--rule-strong);
  font-size: 13.5px;
  white-space: nowrap;
  transition: all .25s ease;
}
.nav-back { font-size: 13px; }

@media (hover: hover) {
  .nav-cta:hover {
    border-color: var(--orange);
    color: var(--orange);
  }
}

@media (min-width: 760px) {
  .nav { padding: 18px var(--pad); }
  .brand { font-size: 22px; gap: 12px; }
  .brand-mark { width: 34px; height: 34px; }
  .nav-links {
    display: flex; gap: 28px;
    font-size: 14px;
    color: var(--cream-dim);
  }
  .nav-links a { transition: color .2s ease; }
  .nav-links a:hover { color: var(--cream); }
  .nav-cta { padding: 10px 18px; font-size: 14px; }
}

/* ------------------------------------------------------------------
   Hero
------------------------------------------------------------------ */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 10vw, 120px) var(--pad) clamp(40px, 8vw, 80px);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border: 1px solid var(--rule);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.015);
  animation: fadeUp .8s ease both;
  max-width: 100%;
}
.hero-eyebrow .dot {
  flex: 0 0 auto;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,106,31,0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,106,31,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(255,106,31,0.05); }
}

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 11vw, 104px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  animation: fadeUp .9s .1s ease both;
}
.hero-title em {
  font-style: italic;
  color: var(--orange);
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(15.5px, 4.4vw, 21px);
  color: var(--cream-dim);
  max-width: 56ch;
  line-height: 1.65;
  margin: 0 0 32px;
  animation: fadeUp 1s .25s ease both;
}
.hero-sub strong { color: var(--cream); font-weight: 500; }

.hero-ctas {
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 56px;
  animation: fadeUp 1s .4s ease both;
}
.hero-ctas .btn { width: 100%; }

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  animation: fadeUp 1s .55s ease both;
}
.meta-item {
  display: flex; flex-direction: column; gap: 4px;
}
.meta-num {
  font-family: var(--serif);
  font-size: clamp(26px, 7vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.meta-num .plus { color: var(--orange); }
.meta-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.meta-rule { display: none; }

@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; flex-wrap: wrap; }
  .hero-ctas .btn { width: auto; }
  .hero-meta {
    display: flex; align-items: center;
    gap: clamp(20px, 3vw, 40px);
    flex-wrap: wrap;
    padding-top: 36px;
  }
  .meta-rule {
    display: block;
    width: 1px; height: 36px; background: var(--rule);
  }
  .meta-label { font-size: 12px; }
}

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

/* ------------------------------------------------------------------
   Marquee
------------------------------------------------------------------ */
.marquee {
  border-block: 1px solid var(--rule);
  padding: 18px 0;
  overflow: hidden;
  background: rgba(0,0,0,0.18);
}
.marquee-track {
  display: flex; gap: 22px;
  white-space: nowrap;
  width: max-content;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 5vw, 28px);
  font-weight: 400;
  color: var(--cream-dim);
  animation: scroll 40s linear infinite;
}
.marquee-track span:nth-child(even) { color: var(--orange); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (min-width: 760px) {
  .marquee { padding: 22px 0; }
  .marquee-track { gap: 28px; }
}

/* ------------------------------------------------------------------
   How / steps — mobile-first single column
------------------------------------------------------------------ */
.steps {
  list-style: none; padding: 0; margin: 36px 0 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.step {
  padding: 28px 0;
  border-top: 1px solid var(--rule);
}
.step:first-child { padding-top: 28px; }
.step:last-child  { padding-bottom: 0; border-bottom: 0; }
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 5.5vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 12px;
}
.step h3 .if-needed {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.55em;
  font-weight: 400;
  color: var(--cream-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-left: 4px;
  vertical-align: middle;
}
.step p {
  color: var(--cream-dim);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 880px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 48px;
    border-top: 1px solid var(--rule);
    margin-top: 56px;
  }
  .step {
    padding: 32px 0 0;
    border-top: none;
    position: relative;
  }
  .step::before {
    content: ""; position: absolute; top: -1px; left: 0;
    width: 40%; height: 1px; background: var(--orange);
  }
}
@media (min-width: 1100px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .step::before { width: 50%; }
}

/* ------------------------------------------------------------------
   Proof
------------------------------------------------------------------ */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 16px;
}
.big-num {
  font-family: var(--serif);
  font-size: clamp(96px, 32vw, 220px);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.big-plus { color: var(--orange); }
.proof-stat p {
  color: var(--cream-dim);
  font-size: 15.5px;
  margin: 14px 0 0;
  max-width: 30ch;
}
.proof-copy p {
  color: var(--cream-dim);
  line-height: 1.7;
  margin: 0 0 24px;
}

@media (min-width: 880px) {
  .proof-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
    margin-top: 24px;
  }
}

/* ------------------------------------------------------------------
   Investment card
------------------------------------------------------------------ */
.invest-card {
  background:
    linear-gradient(180deg, rgba(40,85,196,0.08), rgba(40,85,196,0) 60%),
    rgba(245,241,232,0.02);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(28px, 7vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.invest-card::before {
  content: ""; position: absolute;
  top: -40%; right: -20%;
  width: 80%; height: 180%;
  background: radial-gradient(closest-side, rgba(255,106,31,0.10), transparent);
  pointer-events: none;
}
.invest-left p {
  color: var(--cream-dim);
  line-height: 1.7;
  margin: 0 0 24px;
}
.invest-left strong { color: var(--cream); font-weight: 500; }
.price {
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  padding: 24px 0 0;
  border-top: 1px solid var(--rule-strong);
}
.price-label {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.price-num {
  font-family: var(--serif);
  font-size: clamp(40px, 11vw, 72px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--orange);
  line-height: 1;
}
.price-sub {
  font-size: 13.5px;
  color: var(--cream-dim);
}

@media (min-width: 880px) {
  .invest-card {
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
    border-radius: 22px;
  }
  .price {
    padding: 28px;
    border-top: none;
    border-left: 1px solid var(--rule-strong);
  }
}

/* ------------------------------------------------------------------
   FAQ — exclusive accordion
------------------------------------------------------------------ */
.faq-list {
  margin-top: 28px;
  margin-bottom: 28px;
  border-top: 1px solid var(--rule);
}
.faq-list details {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(17px, 4.6vw, 24px);
  letter-spacing: -0.01em;
  line-height: 1.3;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  transition: color .2s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 26px;
  color: var(--orange);
  transition: transform .25s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  margin: 12px 0 4px;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 65ch;
  font-size: 15px;
}

@media (hover: hover) {
  .faq-list summary:hover { color: var(--orange); }
}

@media (min-width: 760px) {
  .faq-list { margin-top: 32px; margin-bottom: 32px; }
  .faq-list details { padding: 22px 0; }
  .faq-list details p { font-size: 15.5px; }
}

/* ------------------------------------------------------------------
   Final CTA
------------------------------------------------------------------ */
.final-cta {
  text-align: center;
  padding-block: clamp(72px, 14vw, 180px);
}
.final-title {
  font-family: var(--serif);
  font-size: clamp(34px, 9vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.final-title em { font-style: italic; color: var(--orange); }
.final-cta p {
  color: var(--cream-dim);
  font-size: 16px;
  max-width: 50ch;
  margin: 0 auto 28px;
}

/* ------------------------------------------------------------------
   Footer
------------------------------------------------------------------ */
.footer {
  border-top: 1px solid var(--rule);
  padding: 48px var(--pad) 40px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 14px;
  text-align: center;
}
.foot-brand {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}
.foot-mark {
  width: 28px; height: 28px;
  object-fit: contain;
  border-radius: 7px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--rule);
}
.foot-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--cream-dim);
  margin: 0;
}
.foot-copy {
  font-size: 12.5px;
  color: var(--cream-mute);
  margin: 0;
  letter-spacing: 0.04em;
}
@media (min-width: 760px) {
  .footer { padding: 60px var(--pad) 50px; }
  .foot-brand { font-size: 22px; }
  .foot-mark { width: 30px; height: 30px; }
  .foot-line { font-size: 17px; }
  .foot-copy { font-size: 13px; }
}

/* ==================================================================
   Booking page (book.html)
================================================================== */
.book-main {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.book-hero {
  padding: clamp(36px, 10vw, 80px) 0 clamp(28px, 7vw, 48px);
  text-align: left;
}
.book-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 8.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 22px 0 18px;
}
.book-title em { font-style: italic; color: var(--orange); font-weight: 400; }
.book-sub {
  font-size: clamp(15px, 4.2vw, 18px);
  color: var(--cream-dim);
  max-width: 56ch;
  line-height: 1.65;
  margin: 0;
}

.form-section {
  padding-bottom: clamp(48px, 10vw, 96px);
}

/* Form */
.form-wrap {
  background: rgba(245,241,232,0.025);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: clamp(20px, 6vw, 44px);
}
.lead-form {
  display: grid; gap: 18px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.field input,
.field select {
  background: transparent;
  border: 1px solid var(--rule-strong);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;            /* prevents iOS zoom on focus */
  padding: 14px 16px;
  border-radius: 10px;
  transition: border-color .2s ease, background .2s ease;
  appearance: none;
  width: 100%;
  min-height: 50px;
}
.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--cream-dim) 50%),
    linear-gradient(135deg, var(--cream-dim) 50%, transparent 50%);
  background-position: calc(100% - 22px) 22px, calc(100% - 16px) 22px;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}
.field select option { background: var(--navy-800); color: var(--cream); }
.field input::placeholder { color: var(--cream-mute); }

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,106,31,0.04);
}
.field.error input,
.field.error select {
  border-color: #e2533c;
}

.btn-submit {
  justify-content: center;
  width: 100%;
  padding: 17px 24px;
  margin-top: 6px;
  min-height: 54px;
}
.btn-submit .btn-arrow { transition: transform .25s ease; }
.btn-submit[disabled] { opacity: 0.7; cursor: progress; }
@media (hover: hover) {
  .btn-submit:hover .btn-arrow { transform: translateX(4px); }
}

.form-note {
  font-size: 12.5px;
  color: var(--cream-mute);
  text-align: center;
  margin: 4px 0 0;
}

@media (min-width: 640px) {
  .field-row { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* Confirmation card (shown after successful submission) */
.confirmation {
  animation: fadeUp .55s ease both;
  text-align: center;
  padding: clamp(8px, 2vw, 20px) 0;
}

.confirm-icon {
  width: 76px; height: 76px;
  margin: 0 auto 20px;
}
.confirm-icon svg {
  width: 100%; height: 100%;
  display: block;
}
.confirm-circle {
  fill: rgba(255, 106, 31, 0.10);
  stroke: var(--orange);
  stroke-width: 2;
  stroke-dasharray: 145;
  stroke-dashoffset: 145;
  animation: drawCircle .7s .1s ease forwards;
  transform-origin: center;
}
.confirm-check {
  fill: none;
  stroke: var(--orange);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck .35s .65s ease forwards;
}
@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.confirm-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 6.5vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 14px;
}
.confirm-title span { color: var(--orange); font-style: italic; }

.confirm-msg {
  color: var(--cream-dim);
  font-size: clamp(15px, 4vw, 17px);
  line-height: 1.65;
  max-width: 46ch;
  margin: 0 auto 32px;
}
.confirm-msg strong { color: var(--cream); font-weight: 500; }

.confirm-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  text-align: left;
  margin: 0 0 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.confirm-meta-item {
  padding: 16px 18px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(245, 241, 232, 0.02);
}
.confirm-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  font-weight: 500;
}
.confirm-meta-item p {
  margin: 0;
  color: var(--cream-dim);
  font-size: 14.5px;
  line-height: 1.55;
}

.confirm-cta {
  display: inline-flex;
  margin-top: 4px;
}

@media (min-width: 640px) {
  .confirm-meta {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .confirm-icon {
    width: 84px; height: 84px;
  }
}

/* Reassurance row on booking page */
.book-reassure {
  padding: clamp(40px, 9vw, 80px) 0 clamp(40px, 9vw, 80px);
  border-top: 1px solid var(--rule);
}
.reassure-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.reassure-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  margin: 14px 0 6px;
}
.reassure-item p {
  color: var(--cream-dim);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}
.reassure-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--rule-strong);
  display: grid; place-items: center;
  color: var(--orange);
  background: rgba(255, 106, 31, 0.06);
}
.reassure-icon svg { width: 20px; height: 20px; }

@media (min-width: 760px) {
  .reassure-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
