/* ============================================================
   UBU · KARANDA — shared stylesheet for index.html / terms.html / privacy.html
   Values are transcribed from the approved prototype (design/UBU Reserve.dc.html)
   and the KARANDA design system (design/_ds/.../readme.md, tokens/*.css).
   No border radius anywhere — corners are cut with clip-path.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300..700&family=Plus+Jakarta+Sans:ital,wght@0,400..800;1,400..600&display=swap");

:root{
  /* brand core */
  --navy: #0B1F3A;
  --navy-deep: #071527;
  --navy-abyss: #061426;
  --navy-900: #0B2547;
  --blue: #1C5AA0;
  --blue-deep: #17497F;
  --blue-mid: #2A5C93;
  --blue-pale: #8FB4DD;
  --blue-pale-2: #9DBCE0;
  --blue-tint: #C6D4E4;
  --blue-tint-2: #A8BCD4;
  --blue-tint-3: #A0B8D2;
  --blue-050: #EDF0F5;

  --steel-700: #3D5573;
  --steel-600: #4D5F78;
  --steel-400: #8895A8;

  --paper: #FFFFFF;
  --paper-warm: #F0ECE3;
  --coral: #C0483A;
  --teal: #1B6F68;
  --teal-deep: #16635C;
  --whatsapp: #1EA855;
  --whatsapp-hover: #17924A;

  --line-hairline: rgba(11,31,58,0.1);
  --line-mid: rgba(11,31,58,0.14);
  --line-strong: rgba(11,31,58,0.2);

  --font-display: 'Jost', 'Century Gothic', sans-serif;
  --font-ui: 'Plus Jakarta Sans', sans-serif;
}

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

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.55;
  color: var(--steel-700);
  /* ambient paper ground — dark sections (hero, phase band, footer) paint
     their own background over this */
  background: linear-gradient(170deg, #FFFFFF 0%, #F7F8FA 55%, #EDF0F5 100%);
  overflow-wrap: break-word;
}

h1,h2{
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.02;
  margin: 0;
}

p{ margin: 0; }
a{ color: var(--blue); text-decoration: none; }
a:hover{ color: var(--blue-deep); }
img{ max-width: 100%; display: block; }
button{ font: inherit; }
::selection{ background: var(--blue); color: #fff; }
:focus-visible{ outline: 2px solid var(--blue); outline-offset: 3px; }

/* mobile touch quality: no 300ms tap delay, no grey flash on tap */
a, button{
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.wrap{ max-width: 1180px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
@media (max-width: 560px){
  .wrap{ padding-left: 18px; padding-right: 18px; }
}

/* film grain — matches the KARANDA design system's .grain / .grain-dark */
.grain{ position: relative; }
.grain::before{
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .055; mix-blend-mode: overlay;
}
.grain-dark::before{ opacity: .09; mix-blend-mode: soft-light; }

.corner-bg{
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%27220%27%20height%3D%27220%27%20viewBox%3D%270%200%20220%20220%27%3E%3Cg%20fill%3D%27none%27%20stroke%3D%27%23D9A84A%27%20stroke-opacity%3D%27.16%27%20stroke-width%3D%271%27%3E%3Cpath%20d%3D%27M0%2038h50l18%2018h68%27%2F%3E%3Cpath%20d%3D%27M220%2080h-44l-20-20H106%27%2F%3E%3Cpath%20d%3D%27M28%20220v-50l20-20V96%27%2F%3E%3Cpath%20d%3D%27M164%20220v-38l24-24V104%27%2F%3E%3Cpath%20d%3D%27M0%20156h38l20%2020h58%27%2F%3E%3Cpath%20d%3D%27M220%20192h-30l-18-18h-42%27%2F%3E%3C%2Fg%3E%3Cg%20fill%3D%27%23D9A84A%27%20fill-opacity%3D%27.2%27%3E%3Ccircle%20cx%3D%27136%27%20cy%3D%2756%27%20r%3D%273.2%27%2F%3E%3Ccircle%20cx%3D%27106%27%20cy%3D%2760%27%20r%3D%273.2%27%2F%3E%3Ccircle%20cx%3D%2748%27%20cy%3D%27150%27%20r%3D%273.2%27%2F%3E%3Ccircle%20cx%3D%27188%27%20cy%3D%27158%27%20r%3D%273.2%27%2F%3E%3Ccircle%20cx%3D%27116%27%20cy%3D%27176%27%20r%3D%273.2%27%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  background-size: 380px 380px, auto;
  background-repeat: no-repeat, no-repeat;
}

/* ---- fold-cta: the brand's button hover affordance (corner lifts) ---- */
.fold-cta{ position: relative; overflow: hidden; }
.fold-cta::after{
  content: ''; position: absolute; right: 0; bottom: 0; width: 0; height: 0;
  border-style: solid; border-width: 0;
  border-color: transparent transparent rgba(11,31,58,.4) transparent;
  transition: border-width .3s cubic-bezier(.4,0,.2,1);
}
.fold-cta:hover::after{ border-width: 0 0 18px 18px; }
.fold-cta-light::after{ border-color: transparent transparent rgba(240,236,227,.45) transparent; }

/* ---- buttons ---- */
.btn{
  display: inline-flex; align-items: center; gap: 9px;
  border: 0; cursor: pointer;
  font-family: var(--font-ui); font-weight: 800; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 13px 20px;
  white-space: nowrap;
}
.btn-lg{ padding: 16px 28px; font-size: 11px; }
.btn-paper{
  background: #FFFFFF; color: var(--navy);
  clip-path: polygon(0 0, 92% 0, 100% 26%, 100% 100%, 8% 100%, 0 74%);
}
.btn-gradient{
  background: linear-gradient(150deg, var(--blue-mid), var(--navy-900));
  color: #fff;
  clip-path: polygon(0 0, 93% 0, 100% 24%, 100% 100%, 7% 100%, 0 76%);
}
.btn-ink{
  background: var(--navy); color: #fff;
  clip-path: polygon(0 0, 93% 0, 100% 24%, 100% 100%, 7% 100%, 0 76%);
}
.btn-outline{
  position: relative; z-index: 0;
  background: var(--blue-pale); color: var(--blue-pale);
  clip-path: polygon(0 0, 93% 0, 100% 24%, 100% 100%, 7% 100%, 0 76%);
}
.btn-outline::before{
  content: ''; position: absolute; inset: 1.3px; z-index: -1;
  clip-path: inherit; background: rgba(6,20,38,0.96);
}
.btn-whatsapp{
  background: var(--whatsapp); color: #fff;
  clip-path: polygon(0 0, 92% 0, 100% 26%, 100% 100%, 8% 100%, 0 74%);
}
.btn-whatsapp:hover{ background: var(--whatsapp-hover); color: #fff; }
.btn svg{ flex: 0 0 auto; }
.btn-arrow::after{ content: ' \2192'; }

/* ============================================================
   Header
   ============================================================ */
.site-header{
  position: sticky; top: 0; z-index: 40;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  box-shadow: 0 18px 40px rgba(3,10,20,0.28);
}
.site-header .wrap{
  padding-top: 12px; padding-bottom: 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.brand-link{
  background: none; border: 0; padding: 0; cursor: pointer;
  display: flex; align-items: center; gap: 12px;
}
.brand-link img{ width: 30px; height: 30px; }
.brand-mark{ display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.brand-mark .eyebrow{
  font-family: var(--font-ui); font-weight: 600; font-size: 8px;
  letter-spacing: 0.22em; text-transform: uppercase; white-space: nowrap;
  color: var(--blue-pale-2);
}
.brand-mark .word{
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  line-height: 1; letter-spacing: 0.16em; white-space: nowrap; color: #fff;
}
/* Reserve + Help are grouped so they wrap as a single unit below the logo
   on narrow screens, instead of splitting apart from each other. */
.header-ctas{ display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ============================================================
   Hero
   ============================================================ */
.hero{
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 60%, var(--navy-abyss) 100%);
  background-position: top right, center;
  padding: 44px 28px 48px;
}
.hero .wrap{
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 32px; align-items: center;
}
.hero-eyebrow{
  margin: 0 0 18px; font-family: var(--font-ui); font-weight: 600; font-size: 10px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--blue-pale);
}
.hero h1{
  margin: 0; font-size: clamp(52px, 8vw, 104px); letter-spacing: 0.02em; color: #fff;
}
.hero-blurb{
  margin: 20px 0 0; max-width: 54ch; font-size: 14px; line-height: 1.65; color: var(--blue-tint);
}
.hero-director{
  margin: 14px 0 24px; font-family: var(--font-ui); font-weight: 600; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-tint-2);
}
.hero-cta-row{ display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-cta-row .meta{
  font-family: var(--font-ui); font-weight: 800; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-tint-3);
}
.hero-note{
  display: inline-flex; align-items: center; gap: 10px; margin-top: 18px;
  padding: 10px 14px; background: rgba(240,236,227,0.07);
  box-shadow: inset 0 0 0 1.3px rgba(240,236,227,0.24);
}
.hero-note svg{ flex: 0 0 14px; }
.hero-note span{
  font-family: var(--font-ui); font-weight: 800; font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-tint);
}
.hero-poster-frame{ display: flex; justify-content: center; }
.hero-poster{
  position: relative; width: 100%; max-width: 300px; aspect-ratio: 2 / 3;
  box-shadow: 0 30px 60px rgba(3,10,20,0.42);
  clip-path: polygon(0 0, 95% 0, 100% 6%, 100% 100%, 5% 100%, 0 94%);
  transform: rotate(-0.8deg);
  overflow: hidden;
}
.hero-poster img{ width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   Phase / countdown band
   ============================================================ */
.phase-band{
  background: linear-gradient(150deg, var(--blue-mid), var(--navy-900));
  padding: 18px 28px;
  box-shadow: 0 26px 54px rgba(11,31,58,0.22);
}
.phase-band .wrap{ display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.phase-headline{
  display: inline-flex; align-items: center; gap: 11px;
}
.phase-headline svg{ flex: 0 0 auto; }
.phase-headline span{
  font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1; letter-spacing: 0.04em; text-transform: uppercase; color: #fff;
}
.phase-note{ flex: 1 1 200px; font-size: 13px; line-height: 1.5; color: var(--blue-tint); }
/* Below ~600px the note's flex-grow (needed as a spacer on wide screens)
   instead forces it to swallow an entire wrapped row by itself, stacking
   headline/note/button into three loose full-width lines. Let it size to
   its own content there instead, so it can share a line with the button. */
@media (max-width: 600px){
  .phase-band .wrap{ gap: 10px 22px; }
  .phase-note{ flex: 0 1 auto; }
}
.phase-countdown{ display: inline-flex; align-items: center; gap: 9px; }
.phase-countdown[hidden]{ display: none; }
.phase-countdown span{
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  letter-spacing: 0.1em; color: #fff; font-variant-numeric: tabular-nums;
}

/* ============================================================
   Fact chips + location
   ============================================================ */
.facts{ padding: 34px 28px 20px; }
.facts .grid{
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr)); gap: 14px;
}
.fact-chip{
  position: relative; z-index: 0;
  display: flex; align-items: center; gap: 11px; padding: 13px 15px;
  background: var(--line-hairline);
  clip-path: polygon(0 0, 100% 0, 100% 76%, 93% 100%, 0 100%);
}
.fact-chip::before{
  content: ''; position: absolute; inset: 1.3px; z-index: -1;
  clip-path: inherit; background: linear-gradient(150deg, #FFFFFF, #FDFEFF);
}
.fact-chip .icon{ flex: 0 0 16px; display: flex; align-items: center; justify-content: center; color: var(--blue); }
.fact-chip .value{
  display: block; font-family: var(--font-ui); font-weight: 800; font-size: 12px;
  letter-spacing: 0.03em; color: var(--navy);
}
.fact-chip .label{
  display: block; margin-top: 2px; font-family: var(--font-ui); font-weight: 600;
  font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel-600);
}
.fact-map{
  position: relative; z-index: 0;
  grid-column: span 2; text-decoration: none; display: flex; align-items: center; gap: 12px;
  padding: 13px 15px;
  background: rgba(28,90,160,0.35);
  clip-path: polygon(0 0, 100% 0, 100% 76%, 96% 100%, 0 100%);
  transition: background .2s ease;
}
.fact-map::before{
  content: ''; position: absolute; inset: 1.3px; z-index: -1;
  clip-path: inherit; background: linear-gradient(150deg, #FFFFFF, #FDFEFF);
  transition: inset .2s ease;
}
.fact-map:hover{ background: rgba(28,90,160,0.6); }
.fact-map:hover::before{ inset: 2px; }
.fact-map svg{ flex: 0 0 14px; }
.fact-map .value{
  display: block; font-family: var(--font-ui); font-weight: 800; font-size: 12px;
  letter-spacing: 0.03em; color: var(--navy);
}
.fact-map .label{
  display: block; margin-top: 2px; font-family: var(--font-ui); font-weight: 800;
  font-size: 8px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue);
}
@media (max-width: 480px){ .fact-map{ grid-column: span 1; } }

/* ============================================================
   Pricing tier cards
   ============================================================ */
.pricing{ padding: 6px 28px 26px; }
.pricing .grid{
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr)); gap: 14px;
}
.tier-card{
  background: linear-gradient(150deg, #FFFFFF, #FDFEFF);
  box-shadow: 0 16px 36px rgba(11,31,58,0.14);
  clip-path: polygon(0 0, 94% 0, 100% 9%, 100% 100%, 6% 100%, 0 91%);
}
.tier-card .accent-bar{ height: 5px; }
.tier-card .body{ padding: 16px 18px 18px; }
.tier-card .tag{
  margin: 0 0 3px; font-family: var(--font-ui); font-weight: 600; font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
}
.tier-card .name{
  margin: 0 0 10px; font-family: var(--font-display); font-weight: 700; font-size: 20px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy);
}
.tier-card .price-row{ display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.tier-card .was{
  font-family: var(--font-ui); font-weight: 600; font-size: 15px; color: var(--steel-400);
  text-decoration: line-through; text-decoration-thickness: 2px;
}
.tier-card .price{ font-family: var(--font-ui); font-weight: 800; font-size: 20px; color: var(--navy); }
.tier-card .saving{
  display: inline-block; margin-top: 9px; padding: 4px 9px;
  background: rgba(27,111,104,0.12); box-shadow: inset 0 0 0 1.3px rgba(27,111,104,0.45);
  font-family: var(--font-ui); font-weight: 800; font-size: 10px; letter-spacing: 0.06em; color: var(--teal-deep);
}
.tier-card .saving[hidden]{ display: none; }
.before-card{
  position: relative; z-index: 0;
  display: flex; flex-direction: column; justify-content: center; gap: 10px; padding: 18px;
  background: var(--line-hairline);
  clip-path: polygon(0 0, 100% 0, 100% 84%, 95% 100%, 0 100%);
}
.before-card::before{
  content: ''; position: absolute; inset: 1.3px; z-index: -1;
  clip-path: inherit; background: var(--blue-050);
}
.before-card .row{ display: flex; align-items: center; gap: 9px; }
.before-card .row svg{ flex: 0 0 13px; color: var(--steel-600); }
.before-card .row span{
  font-family: var(--font-ui); font-weight: 800; font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--steel-700);
}
.before-card .terms-link{
  position: relative; display: inline-block;
  background: none; border: 0; padding: 0; margin-top: 2px; cursor: pointer; text-align: left;
  font-family: var(--font-ui); font-weight: 800; font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue);
}
/* invisible hit-area expansion — 4px above (10px gap to the row above), room to spare elsewhere */
.before-card .terms-link::after{ content: ''; position: absolute; top: -4px; right: -8px; bottom: -10px; left: -8px; }

/* ============================================================
   Cast
   ============================================================ */
.cast-section{ padding: 16px 28px 52px; }
.cast-head{ display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.cast-head h2{ font-size: clamp(22px, 2.8vw, 32px); letter-spacing: 0.05em; color: var(--navy); }
.cast-nav{ margin-left: auto; display: flex; gap: 8px; }
.cast-nav button{
  position: relative;
  width: 34px; height: 34px; border: 0; cursor: pointer;
  font-family: var(--font-ui); font-weight: 800; font-size: 13px;
}
/* invisible hit-area expansion — visible button stays the signed-off 34px;
   the gap between the two buttons is 8px, so 4px a side touches with no overlap */
.cast-nav button::after{ content: ''; position: absolute; inset: -4px; }
.cast-nav .prev{ background: #fff; box-shadow: inset 0 0 0 1.3px var(--line-strong); color: var(--navy); }
.cast-nav .prev:hover{ background: var(--blue-050); }
.cast-nav .next{ background: var(--navy); color: #fff; }
.cast-nav .next:hover{ background: var(--navy-900); }
.cast-row{
  display: flex; gap: 14px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}
.cast-row::-webkit-scrollbar{ display: none; }
.cast-item{ flex: 0 0 148px; }
.cast-photo{
  position: relative; width: 100%; aspect-ratio: 4 / 5;
  box-shadow: 0 14px 30px rgba(11,31,58,0.14);
  clip-path: polygon(0 0, 92% 0, 100% 12%, 100% 100%, 8% 100%, 0 88%);
  overflow: hidden;
}
.cast-photo img{ width: 100%; height: 100%; object-fit: cover; }
.cast-item .name{
  margin: 8px 0 2px; font-family: var(--font-ui); font-weight: 800; font-size: 11px;
  letter-spacing: 0.03em; color: var(--navy);
}
.cast-item .role{
  margin: 0; font-family: var(--font-ui); font-weight: 600; font-size: 8px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel-600);
}

/* ============================================================
   Terms / Privacy pages
   ============================================================ */
.legal-page{ padding: 40px 28px 64px; }
.legal-page .inner{ max-width: 840px; margin: 0 auto; }
.legal-page h2{ margin: 0 0 10px; font-size: clamp(28px, 4vw, 48px); letter-spacing: 0.04em; color: var(--navy); }
.legal-updated{ margin: 0 0 32px; font-size: 13px; line-height: 1.6; color: var(--steel-600); }
.legal-clauses{ display: flex; flex-direction: column; gap: 22px; }
.legal-clause .clause-title{
  margin: 0 0 7px; font-family: var(--font-ui); font-weight: 800; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy);
}
.legal-clause .clause-body{ margin: 0; font-size: 13px; line-height: 1.7; color: var(--steel-700); }
.legal-clause .clause-body + .clause-body{ margin-top: 10px; }
.legal-back{
  position: relative; display: inline-block; margin-top: 34px; background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--font-ui); font-weight: 800; font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue);
}
.legal-back::after{ content: ''; position: absolute; inset: -10px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer{
  background: linear-gradient(165deg, var(--navy-900), var(--navy-abyss));
  background-position: bottom left, center;
  padding: 44px 28px 28px;
}
.site-footer .grid{
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr));
  gap: 32px; align-items: start;
}
/* karanda-mark-white.png has large, equal transparent padding baked in on
   all sides (measured: ~25.5% left/right, ~16.5% top/bottom of the 2000px
   canvas) — so at any display size the visible "K" glyph sits centred and
   inset rather than flush left, while the text below it starts at the true
   left edge. The negative margin pulls the glyph itself flush; the extra
   phantom space it introduces is fully transparent and there's nothing
   else in this column for it to collide with. */
.site-footer img.mark{ width: 52px; height: 52px; margin-bottom: 16px; margin-left: -13px; }
.footer-eyebrow{
  margin: 0 0 8px; font-family: var(--font-ui); font-weight: 600; font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-pale);
}
.footer-belief{ margin: 0; font-family: var(--font-ui); font-style: italic; font-size: 14px; line-height: 1.6; color: var(--blue-tint); }
.footer-heading{
  margin: 0 0 13px; font-family: var(--font-ui); font-weight: 600; font-size: 9px;
  letter-spacing: 0.1em; text-transform: uppercase; color: #fff;
}
.footer-lines{ display: flex; flex-direction: column; gap: 8px; font-family: var(--font-ui); font-size: 13px; color: var(--blue-tint); }
.footer-lines a{ display: inline-flex; align-items: center; gap: 9px; color: var(--blue-tint); text-decoration: none; }
.footer-lines a:hover{ color: #fff; }
.footer-lines a svg{ flex: 0 0 auto; }
.footer-handle{ margin: 0 0 12px; font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: 0.08em; color: #fff; }
.footer-social{ display: flex; gap: 10px; }
.footer-social a{
  position: relative;
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; text-decoration: none;
  background: rgba(240,236,227,0.08); box-shadow: inset 0 0 0 1.3px rgba(240,236,227,0.28);
  color: var(--blue-tint); font-family: var(--font-ui); font-weight: 800; font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
/* invisible hit-area expansion — gap between chips is 10px, so 4px a side is safe */
.footer-social a::after{ content: ''; position: absolute; inset: -4px; }
.footer-social a:hover{ color: #fff; background: rgba(240,236,227,0.16); }
.footer-legal{
  margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(240,236,227,0.22);
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.footer-legal .company{
  font-family: var(--font-display); font-weight: 700; font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue-tint-3);
}
.footer-legal-links{ display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a{
  position: relative;
  font-family: var(--font-display); font-weight: 700; font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue-tint-3);
}
/* invisible hit-area expansion — gap is 20px, so 10px a side touches with no overlap */
.footer-legal-links a::after{ content: ''; position: absolute; inset: -10px; }
.footer-legal-links a:hover{ color: #fff; }

/* ============================================================
   Booking flow (book.html) — transcribed from the prototype's
   is2 (performance) / is3 (seats) / is4 (details) / is5 (confirmation)
   ============================================================ */

/* -- progress row + mini-cart strip, both live in the sticky header -- */
.progress-row{ border-top: 1px solid rgba(240,236,227,0.16); background: rgba(6,20,38,0.5); }
.progress-row .wrap{ padding: 11px 28px 12px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.progress-item{ display: flex; align-items: center; gap: 8px; flex: 1 1 120px; min-width: 0; }
.progress-item button{
  background: none; border: 0; padding: 0; display: flex; align-items: center; gap: 8px; min-width: 0;
}
.progress-node{
  flex: 0 0 22px; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-weight: 800; font-size: 10px;
}
.progress-label{ font-family: var(--font-ui); font-weight: 800; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.progress-connector{ flex: 1 1 16px; min-width: 10px; height: 2px; }

.cart-strip{ border-top: 1px solid rgba(240,236,227,0.16); background: rgba(240,236,227,0.07); }
.cart-strip .wrap{ padding: 10px 28px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cart-strip svg{ flex: 0 0 auto; }
.cart-chip{ display: inline-flex; align-items: center; gap: 7px; padding: 4px 10px; background: rgba(240,236,227,0.1); }
.cart-chip .dot{ width: 6px; height: 6px; }
.cart-chip span.label{ font-family: var(--font-ui); font-weight: 800; font-size: 11px; letter-spacing: 0.04em; color: #fff; }
.cart-strip .perf-label{ font-family: var(--font-ui); font-size: 12px; color: var(--blue-tint-3); }
.cart-strip .strip-total{
  margin-left: auto; font-family: var(--font-display); font-weight: 700; font-size: 19px;
  letter-spacing: 0.08em; color: #fff; font-variant-numeric: tabular-nums;
}

/* -- one-section-per-booking modal -- */
.block-modal{
  position: fixed; inset: 0; z-index: 90; background: rgba(6,20,38,0.72);
  display: flex; align-items: center; justify-content: center; padding: 28px;
}
.block-modal[hidden]{ display: none; }
.block-modal-card{
  max-width: 420px; width: 100%; padding: 28px;
  background: linear-gradient(150deg, #FFFFFF, #FDFEFF); box-shadow: 0 40px 80px rgba(3,10,20,0.5);
  clip-path: polygon(0 0, 94% 0, 100% 8%, 100% 100%, 6% 100%, 0 92%);
}
.block-modal-head{ display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.block-modal-head svg{ flex: 0 0 16px; }
.block-modal-head p{
  margin: 0; font-family: var(--font-ui); font-weight: 800; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy);
}
.block-modal-card p.body{ margin: 0 0 20px; font-size: 13px; line-height: 1.65; color: var(--steel-700); }
.block-modal-actions{ display: flex; gap: 12px; flex-wrap: wrap; }
.block-modal-actions .got-it{
  border: 0; cursor: pointer; padding: 13px 20px; background: var(--navy); color: #fff;
  font-family: var(--font-ui); font-weight: 800; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  clip-path: polygon(0 0, 93% 0, 100% 24%, 100% 100%, 7% 100%, 0 76%);
}
.block-modal-actions .wa{
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px; padding: 13px 18px;
  background: #fff; box-shadow: inset 0 0 0 1.3px rgba(11,31,58,0.2);
  font-family: var(--font-ui); font-weight: 800; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--whatsapp);
}

/* -- step 1: choose a performance -- */
.booking-page{ padding: 34px 28px 52px; }
.booking-head{ display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.booking-head h2{ font-size: clamp(26px, 3.4vw, 40px); letter-spacing: 0.04em; color: var(--navy); }
.booking-head .runtime{
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-weight: 600;
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel-600);
}
.day-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr)); gap: 16px; }
.day-card{
  background: linear-gradient(150deg, #FFFFFF, #FDFEFF); box-shadow: 0 16px 36px rgba(11,31,58,0.14);
  clip-path: polygon(0 0, 94% 0, 100% 7%, 100% 100%, 6% 100%, 0 93%); padding: 18px;
}
.day-card .weekday{ margin: 0 0 2px; font-family: var(--font-ui); font-weight: 600; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-deep); }
.day-card .date{ margin: 0 0 14px; font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--navy); }
.day-shows{ display: flex; flex-direction: column; gap: 9px; }
.show-btn{
  position: relative; z-index: 0;
  display: flex; align-items: center; gap: 11px; width: 100%; text-align: left; border: 0; padding: 12px 14px;
  clip-path: polygon(0 0, 100% 0, 100% 74%, 92% 100%, 0 100%); transition: background .2s ease;
  background: rgba(11,31,58,0.22);
}
.show-btn::before{
  content: ''; position: absolute; inset: 1.3px; z-index: -1;
  clip-path: inherit; background: #FFFFFF;
}
.show-btn.is-sold{ background: rgba(11,31,58,0.14); }
.show-btn.is-sold::before{ background: #F0F2F6; }
.show-btn.is-selected{ background: #0B1F3A; }
.show-btn.is-selected::before{ inset: 2px; background: #FFFFFF; }
.show-btn svg{ flex: 0 0 14px; }
.show-btn .show-main{ flex: 1 1 auto; min-width: 0; }
.show-btn .show-time{ display: block; font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1.1; letter-spacing: 0.05em; white-space: nowrap; }
.show-btn .show-status{ display: block; margin-top: 2px; font-family: var(--font-ui); font-weight: 600; font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; }
.show-btn .show-cta{ font-family: var(--font-ui); font-weight: 800; font-size: 13px; color: var(--blue); }
.whatsapp-fallback{
  position: relative; z-index: 0;
  margin-top: 18px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px;
  background: var(--line-hairline);
  clip-path: polygon(0 0, 100% 0, 100% 74%, 96% 100%, 0 100%);
}
.whatsapp-fallback::before{
  content: ''; position: absolute; inset: 1.3px; z-index: -1;
  clip-path: inherit; background: var(--blue-050);
}
.whatsapp-fallback span{ font-family: var(--font-ui); font-weight: 800; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }

/* -- step 2: seats -- */
.seats-phase-strip{
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; padding: 13px 18px;
  background: linear-gradient(150deg, var(--blue-mid), var(--navy-900));
  box-shadow: 0 20px 44px rgba(11,31,58,0.2);
}
.seats-phase-strip .headline{ display: inline-flex; align-items: center; gap: 9px; }
.seats-phase-strip .headline span{ font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; }
.seats-phase-strip .note{ flex: 1 1 180px; font-size: 12px; line-height: 1.5; color: var(--blue-tint); }
.seats-phase-strip .countdown{ font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: 0.1em; color: #fff; font-variant-numeric: tabular-nums; }
/* Same fix as .phase-band: don't let the note's flex-grow swallow a whole
   wrapped row on narrow screens. */
@media (max-width: 600px){
  .seats-phase-strip{ gap: 8px 16px; }
  .seats-phase-strip .note{ flex: 0 1 auto; }
}

.seats-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 16px; align-items: start; }
.section-card{
  background: linear-gradient(150deg, #FFFFFF, #FDFEFF); clip-path: polygon(0 0, 94% 0, 100% 8%, 100% 100%, 6% 100%, 0 92%);
  transition: box-shadow .2s ease;
}
.section-card .accent-bar{ height: 5px; }
.section-card .body{ padding: 16px 18px 18px; }
.section-card .tag{ margin: 0 0 2px; font-family: var(--font-ui); font-weight: 600; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; }
.section-card .name{ margin: 0 0 8px; font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); }
.section-card .price-row{ display: flex; align-items: baseline; gap: 9px; margin-bottom: 8px; }
.section-card .was{ font-family: var(--font-ui); font-weight: 600; font-size: 17px; color: var(--steel-400); text-decoration: line-through; text-decoration-thickness: 2px; }
.section-card .price{ font-family: var(--font-ui); font-weight: 800; font-size: 24px; color: var(--navy); }
.section-card .saving{
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 12px; padding: 5px 10px;
  background: rgba(27,111,104,0.12); box-shadow: inset 0 0 0 1.3px rgba(27,111,104,0.45);
  font-family: var(--font-ui); font-weight: 800; font-size: 11px; letter-spacing: 0.06em; color: var(--teal-deep);
}
.stepper-row{ display: flex; align-items: center; gap: 10px; }
.stepper-btn{
  position: relative; width: 44px; height: 44px; border: 0; cursor: pointer;
  font-family: var(--font-ui); font-weight: 800; font-size: 17px; color: #fff;
}
.stepper-btn.dec{ background: #FFFFFF; box-shadow: inset 0 0 0 1.3px var(--line-strong); color: var(--navy); }
.stepper-btn.dec:hover{ background: var(--blue-050); }
.stepper-btn.inc:hover{ background: var(--navy-900); }
.stepper-btn:disabled{ cursor: not-allowed; opacity: .5; }
.stepper-qty{ min-width: 30px; text-align: center; font-family: var(--font-ui); font-weight: 800; font-size: 19px; color: var(--navy); font-variant-numeric: tabular-nums; }
.stepper-row .line-total{ margin-left: auto; font-family: var(--font-ui); font-weight: 800; font-size: 13px; font-variant-numeric: tabular-nums; }

.room-card{
  padding: 16px 18px 18px;
  background: var(--blue-050);
  box-shadow: inset 0 0 0 1.3px var(--line-hairline);
}
.room-card .label{ margin: 0 0 12px; font-family: var(--font-ui); font-weight: 600; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--steel-600); }
.room-diagram{
  position: relative; z-index: 0;
  background: var(--line-hairline);
}
.room-diagram::before{
  content: ''; position: absolute; inset: 1.3px; z-index: -1;
  background: #F7F8FA;
}
.room-diagram-inner{ padding: 12px 12px 10px; }
.room-stage{ background: linear-gradient(150deg, var(--blue-mid), var(--navy-900)); padding: 7px; text-align: center; clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%); margin-bottom: 6px; }
.room-stage span{ font-family: var(--font-ui); font-weight: 800; font-size: 7px; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; }
.room-bands{ display: flex; flex-direction: column; gap: 6px; }
.room-band{ display: flex; align-items: stretch; gap: 6px; }
.room-band .letter{ flex: 0 0 18px; display: flex; align-items: center; justify-content: center; }
.room-band .letter span{ font-family: var(--font-ui); font-weight: 800; font-size: 9px; color: #fff; }
.room-band .fill{ flex: 1 1 auto; }
.room-notes{ display: flex; flex-direction: column; gap: 7px; margin-top: 12px; }
.room-notes .row{ display: flex; align-items: center; gap: 8px; }
.room-notes svg{ flex: 0 0 12px; color: var(--steel-600); }
.room-notes span{ font-family: var(--font-ui); font-weight: 800; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel-700); }

.terms-strip{
  position: relative; z-index: 0;
  margin-top: 18px; padding: 14px 18px 12px;
  background: var(--line-hairline);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 98% 100%, 0 100%);
}
.terms-strip::before{
  content: ''; position: absolute; inset: 1.3px; z-index: -1;
  clip-path: inherit; background: var(--blue-050);
}
.terms-strip .label{ margin: 0 0 10px; font-family: var(--font-ui); font-weight: 600; font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--steel-600); }
.terms-strip-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%), 1fr)); gap: 8px 22px; }
.terms-strip-grid .item{ display: flex; gap: 7px; align-items: baseline; }
.terms-strip-grid .item .bullet{ flex: 0 0 auto; font-family: var(--font-ui); font-weight: 800; font-size: 10px; color: var(--blue); }
.terms-strip-grid .item span.body{ font-family: var(--font-ui); font-size: 11px; line-height: 1.5; color: var(--steel-600); }
.terms-strip-grid .item strong{ font-weight: 700; color: var(--navy); }
.terms-strip .read-full{
  margin-top: 10px; background: none; border: 0; padding: 0; cursor: pointer; font-family: var(--font-ui);
  font-weight: 800; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue);
}

.cart-bottom-bar{ position: sticky; bottom: 0; z-index: 30; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); box-shadow: 0 -18px 40px rgba(3,10,20,0.22); }
.cart-bottom-bar .wrap{ padding: 14px 28px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cart-bottom-bar .chips{ display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cart-bottom-bar .empty-note{ font-family: var(--font-ui); font-weight: 600; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-pale); }
.cart-bottom-bar .total{ font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: 0.06em; color: #fff; font-variant-numeric: tabular-nums; }
.cart-bottom-bar .cta-area{ margin-left: auto; }
.blocked-note{
  position: relative; z-index: 0;
  display: inline-flex; align-items: center; padding: 15px 24px; background: rgba(240,236,227,0.22);
  clip-path: polygon(0 0, 93% 0, 100% 24%, 100% 100%, 7% 100%, 0 76%);
  font-family: var(--font-ui); font-weight: 800; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(240,236,227,0.55);
}
.blocked-note::before{
  content: ''; position: absolute; inset: 1.3px; z-index: -1;
  clip-path: inherit; background: rgba(240,236,227,0.08);
}
.blocked-note.on-light{ background: rgba(11,31,58,0.06); color: var(--steel-700); }
.blocked-note.on-light::before{ background: rgba(11,31,58,0.03); }

/* -- step 3: details -- */
.details-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 20px; align-items: start; }
.details-col{ display: flex; flex-direction: column; gap: 16px; }
.detail-card{ padding: 20px; background: linear-gradient(150deg, #FFFFFF, #FDFEFF); box-shadow: 0 16px 36px rgba(11,31,58,0.14); clip-path: polygon(0 0, 96% 0, 100% 6%, 100% 100%, 4% 100%, 0 94%); }
.detail-card.dark{ background: linear-gradient(150deg, var(--blue-mid), var(--navy-900)); box-shadow: 0 22px 48px rgba(11,31,58,0.22); }
.detail-card-head{ display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.detail-card-head.tight{ margin-bottom: 6px; }
.step-num{ flex: 0 0 26px; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; background: var(--navy); font-family: var(--font-ui); font-weight: 800; font-size: 11px; color: #fff; }
.step-num.on-dark{ background: #fff; color: var(--navy); }
.detail-card-head p{ margin: 0; font-family: var(--font-ui); font-weight: 800; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--navy); }
.detail-card-head.dark-title p{ color: #fff; }
.detail-card .field-group{ display: flex; flex-direction: column; gap: 14px; }
.field-input{ width: 100%; box-sizing: border-box; padding: 13px 15px; border: 0; background: #FFFFFF; box-shadow: inset 0 0 0 1.3px var(--line-strong); font-size: 14px; color: var(--navy); font-family: var(--font-ui); }
.field-icon-row{ display: flex; align-items: center; gap: 10px; }
.field-icon-row svg{ flex: 0 0 15px; }
.field-icon-row .field-input{ flex: 1 1 auto; min-width: 0; }
.field-mark{ flex: 0 0 14px; font-family: var(--font-ui); font-weight: 800; font-size: 14px; text-align: center; }
.field-note{ margin: 6px 0 0 25px; font-family: var(--font-ui); font-size: 11px; }
.guest-list{ display: flex; flex-direction: column; gap: 9px; }
.guest-row{ display: flex; align-items: center; gap: 10px; }
.guest-row .n{ flex: 0 0 22px; text-align: right; font-family: var(--font-ui); font-weight: 800; font-size: 11px; color: var(--steel-600); }
.guest-row .field-input{ flex: 1 1 auto; min-width: 0; padding: 11px 14px; font-size: 13px; }
.pay-box{ background: rgba(6,20,38,0.42); padding: 16px 18px; box-shadow: inset 0 0 0 1.3px rgba(240,236,227,0.22); }
.pay-row{ display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px solid rgba(240,236,227,0.16); }
.pay-row:last-child{ border-bottom: 0; }
.pay-row .label{ font-family: var(--font-ui); font-weight: 600; font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-tint-2); }
.pay-row .value{ text-align: right; font-family: var(--font-ui); font-weight: 800; font-size: 13px; letter-spacing: 0.03em; color: #fff; }
.pay-wise-note{ margin: 14px 0 0; font-family: var(--font-ui); font-size: 12px; line-height: 1.6; color: var(--blue-tint); }
.pay-wise-note a{ color: #fff; }
.pay-wise-note.pay-wise-note-top{ margin: 0 0 16px 37px; }
.upload-note{ margin: 0 0 16px 37px; font-family: var(--font-ui); font-size: 12px; line-height: 1.6; color: var(--steel-600); }
.upload-row{ display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.upload-status{ display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-size: 12px; }
.upload-confirmed{
  display: flex; align-items: center; gap: 10px; margin-top: 16px; padding: 11px 14px;
  background: rgba(27,111,104,0.1); box-shadow: inset 0 0 0 1.3px rgba(27,111,104,0.4);
}
.upload-confirmed[hidden]{ display: none; }
.upload-confirmed svg{ flex: 0 0 13px; color: var(--teal); }
.upload-confirmed span{ font-family: var(--font-ui); font-weight: 800; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); }

.order-card{ padding: 20px; background: linear-gradient(150deg, #FFFFFF, #FDFEFF); box-shadow: 0 16px 36px rgba(11,31,58,0.16); clip-path: polygon(0 0, 94% 0, 100% 8%, 100% 100%, 6% 100%, 0 92%); }
.order-card .title{ margin: 0 0 3px; font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); }
.order-card .perf{ margin: 0 0 14px; font-family: var(--font-ui); font-weight: 800; font-size: 12px; letter-spacing: 0.06em; color: var(--steel-700); }
.order-line{ display: flex; align-items: center; gap: 10px; padding: 9px 0; border-top: 1px solid var(--line-mid); }
.order-line .accent{ flex: 0 0 6px; width: 6px; height: 18px; }
.order-line .info{ flex: 1 1 auto; min-width: 0; }
.order-line .name{ display: block; font-family: var(--font-ui); font-weight: 800; font-size: 12px; color: var(--navy); }
.order-line .detail{ display: block; font-family: var(--font-ui); font-size: 11px; color: var(--steel-600); }
.order-line .amount{ font-family: var(--font-ui); font-weight: 800; font-size: 13px; color: var(--navy); font-variant-numeric: tabular-nums; }
.order-row{ display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 9px 0 0; border-top: 1px solid var(--line-mid); }
.order-row.first{ padding-top: 9px; }
.order-row .label{ font-family: var(--font-ui); font-weight: 600; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--steel-600); }
.order-row .was-total{ font-family: var(--font-ui); font-weight: 600; font-size: 14px; color: var(--steel-400); text-decoration: line-through; text-decoration-thickness: 2px; font-variant-numeric: tabular-nums; }
.order-row.saving .label{ font-weight: 800; color: var(--teal-deep); }
.order-row.saving .value{ font-family: var(--font-ui); font-weight: 800; font-size: 14px; color: var(--teal-deep); font-variant-numeric: tabular-nums; }
.order-total{ display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 13px 0 0; margin-top: 6px; border-top: 2px solid var(--navy); }
.order-total .label{ font-family: var(--font-ui); font-weight: 800; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); }
.order-total .value{ font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: 0.04em; color: var(--navy); font-variant-numeric: tabular-nums; }

.agree-note{
  position: relative; z-index: 0;
  display: flex; gap: 11px; align-items: flex-start; padding: 15px 18px;
  background: rgba(11,31,58,0.12);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 95% 100%, 0 100%);
}
.agree-note::before{
  content: ''; position: absolute; inset: 1.3px; z-index: -1;
  clip-path: inherit; background: var(--blue-050);
}
.agree-note svg{ flex: 0 0 13px; margin-top: 3px; color: var(--steel-600); }
.agree-note span{ font-family: var(--font-ui); font-size: 12px; line-height: 1.6; color: var(--steel-700); }
.agree-note button{ background: none; border: 0; padding: 0; cursor: pointer; font-family: var(--font-ui); font-size: 12px; color: var(--blue); text-decoration: underline; }
.submit-note{ margin: 12px 0 0; font-family: var(--font-ui); font-size: 11px; line-height: 1.6; color: var(--steel-600); }
.error-banner{
  margin-top: 12px; padding: 13px 16px; background: rgba(192,72,58,0.1); box-shadow: inset 0 0 0 1.3px rgba(192,72,58,0.4);
  font-family: var(--font-ui); font-size: 12px; line-height: 1.6; color: #8F2E2E;
}

/* -- step 4: confirmation -- */
.confirm-hero{
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 65%, var(--navy-abyss) 100%);
  padding: 56px 28px 72px; min-height: 60vh; background-position: top right, center;
}
.confirm-hero .inner{ max-width: 760px; margin: 0 auto; }
.confirm-badge{
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 13px; background: rgba(30,168,85,0.16);
  box-shadow: inset 0 0 0 1.3px rgba(30,168,85,0.5); margin-bottom: 18px;
}
.confirm-badge span{ font-family: var(--font-ui); font-weight: 800; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: #5BD98B; }
.confirm-hero h2{ margin: 0 0 14px; font-size: clamp(32px, 5vw, 58px); letter-spacing: 0.03em; color: #fff; }
.confirm-hero .lede{ margin: 0 0 18px; max-width: 52ch; font-family: var(--font-ui); font-size: 15px; line-height: 1.65; color: var(--blue-tint); }
.confirm-card{ padding: 24px; background: linear-gradient(150deg, #FFFFFF, #FDFEFF); box-shadow: 0 30px 60px rgba(3,10,20,0.42); clip-path: polygon(0 0, 94% 0, 100% 8%, 100% 100%, 6% 100%, 0 92%); }
.confirm-card .ref-label{ margin: 0 0 4px; font-family: var(--font-ui); font-weight: 600; font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-deep); }
.confirm-card .ref{ margin: 0 0 20px; font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 5vw, 44px); line-height: 1; letter-spacing: 0.12em; color: var(--navy); }
.confirm-card .perf{ margin: 0 0 10px; font-family: var(--font-ui); font-weight: 800; font-size: 13px; letter-spacing: 0.06em; color: var(--navy); }
.confirm-chips{ display: grid; grid-template-columns: repeat(auto-fit, minmax(min(140px, 100%), 1fr)); gap: 12px; margin-top: 20px; }
.confirm-chip{ display: flex; align-items: center; gap: 10px; padding: 12px 14px; background: rgba(240,236,227,0.06); box-shadow: inset 0 0 0 1.3px rgba(240,236,227,0.22); }
.confirm-chip svg{ flex: 0 0 14px; color: var(--blue-pale); }
.confirm-chip span{ font-family: var(--font-ui); font-weight: 800; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-tint); }
.confirm-cta-row{ display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

/* -- shared: loading state on submit -- */
.btn[aria-busy="true"]{ opacity: .7; pointer-events: none; }

@media (max-width: 720px){
  .booking-page{ padding: 24px 18px 40px; }
}
