/* ============================================================
   CAUNELLE BUSINESS SERVICES — Design System
   Palette:   --navy #0B1F3A   --navy-2 #142B4F   --navy-3 #1D3B6E
              --gold #C9A227   --gold-light #E8C766
              --paper #F6F5F1  --white #FFFFFF   --line #DFE1E6
              --ink #16202E    --ink-soft #5B6472  --danger #B3261E --success #1E7F4B
   Type:      Display  -> 'Fraunces'   (headlines, premium editorial feel)
              Body/UI  -> 'Inter'      (forms, nav, body copy)
              Manifest -> 'IBM Plex Mono' (booking IDs, ledger/manifest numbers, prices)
   Signature: "Shipping manifest" motif — dashed customs-tag corners, perforated
              ticket-stub confirmation, manifest-style numbering — nods to CAUNELLE's
              sourcing & import-export work without being literal.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  --navy: #0B1F3A;
  --navy-2: #142B4F;
  --navy-3: #1D3B6E;
  --gold: #C9A227;
  --gold-light: #E8C766;
  --paper: #F6F5F1;
  --white: #FFFFFF;
  --gray: #F4F5F7;
  --line: #DFE1E6;
  --ink: #16202E;
  --ink-soft: #5B6472;
  --danger: #B3261E;
  --danger-bg: #FBEAE9;
  --success: #1E7F4B;
  --success-bg: #E9F5EE;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(11,31,58,0.08);
  --shadow-md: 0 6px 24px rgba(11,31,58,0.12);
  --shadow-lg: 0 20px 60px rgba(11,31,58,0.18);
  --container: 1160px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height:1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family: var(--font-display); color: var(--navy); margin:0 0 .5em; line-height:1.15; }
p{ margin:0 0 1em; color: var(--ink-soft); }

.container{ max-width: var(--container); margin:0 auto; padding: 0 24px; }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.skip-link{
  position:absolute; left:-999px; top:auto;
  background: var(--navy); color:#fff; padding:12px 18px; z-index:999; border-radius: var(--radius);
}
.skip-link:focus{ left:16px; top:16px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- Demo banner ---------- */
.demo-banner{
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .03em;
  text-align:center;
  padding: 8px 16px;
  border-bottom: 1px solid var(--gold);
}
.demo-banner strong{ color:#fff; }

/* ---------- Header / Nav ---------- */
.site-header{
  background: var(--navy);
  position: sticky; top:0; z-index: 100;
  border-bottom: 1px solid rgba(201,162,39,0.35);
}
.nav-wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 24px; max-width: var(--container); margin:0 auto;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{
  width:38px; height:38px; border-radius:50%;
  border:1.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-weight:700; color: var(--gold-light);
  font-size: 15px;
}
.brand-name{
  font-family: var(--font-display); font-weight:600; font-size: 19px; color:#fff; letter-spacing:.01em;
}
.brand-sub{ display:block; font-family: var(--font-mono); font-size:10px; letter-spacing:.14em; color: var(--gold-light); text-transform:uppercase; }

.main-nav{ display:flex; align-items:center; gap: 28px; }
.main-nav a{
  color: #D9DEE8; font-size: 14.5px; font-weight:500; letter-spacing:.01em;
  padding: 6px 2px; border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active{ color:#fff; border-color: var(--gold); }
.nav-cta{
  background: var(--gold); color: var(--navy) !important; font-weight:700 !important;
  padding: 10px 18px !important; border-radius: var(--radius); border-bottom:none !important;
}
.nav-cta:hover{ background: var(--gold-light); }
.nav-toggle{
  display:none; background:none; border:1px solid rgba(255,255,255,0.3); color:#fff;
  padding:8px 10px; border-radius: var(--radius); font-size:20px; line-height:1;
}

@media (max-width: 860px){
  .main-nav{
    position:absolute; top:100%; left:0; right:0; background: var(--navy);
    flex-direction:column; align-items:stretch; gap:0; padding: 8px 24px 18px;
    border-bottom: 1px solid rgba(201,162,39,0.35);
    display:none;
  }
  .main-nav.open{ display:flex; }
  .main-nav a{ padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-cta{ margin-top:10px; text-align:center; }
  .nav-toggle{ display:block; }
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 26px; border-radius: var(--radius); font-weight:700; font-size:15px;
  border: 1.5px solid transparent; letter-spacing:.01em; min-height:48px;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{ background: var(--gold); color: var(--navy); }
.btn-primary:hover{ background: var(--gold-light); box-shadow: var(--shadow-sm); }
.btn-secondary{ background: transparent; color:#fff; border-color: rgba(255,255,255,0.55); }
.btn-secondary:hover{ border-color:#fff; }
.btn-outline-navy{ background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover{ background: var(--navy); color:#fff; }
.btn-ghost{ background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover{ border-color: var(--navy); }
.btn-block{ width:100%; }
.btn-sm{ padding:9px 16px; min-height:38px; font-size:13.5px; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; }

/* ---------- Hero ---------- */
.hero{
  background: radial-gradient(1100px 500px at 82% -10%, rgba(201,162,39,0.18), transparent 60%), var(--navy);
  color:#fff; padding: 88px 0 96px; position:relative; overflow:hidden;
}
.hero::after{
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px; pointer-events:none;
}
.hero-inner{ position:relative; z-index:1; max-width:720px; }
.eyebrow-tag{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--font-mono); font-size:11.5px; letter-spacing:.16em; text-transform:uppercase;
  color: var(--gold-light); border:1px dashed rgba(232,199,102,0.55); padding:6px 12px; border-radius:20px;
  margin-bottom:22px;
}
.hero h1{
  color:#fff; font-size: clamp(34px, 5.2vw, 56px); font-weight:600; margin-bottom:14px; letter-spacing:-.01em;
}
.hero .lede{ font-size:19px; color: var(--gold-light); font-family: var(--font-display); font-style:italic; font-weight:500; margin-bottom:20px; }
.hero .desc{ color:#C7CEDB; font-size:16px; max-width:600px; }
.hero-ctas{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }

/* Manifest stamp — signature element */
.manifest-stamp{
  position:absolute; right:6%; top:18%; width:168px; height:168px;
  border:2px dashed rgba(232,199,102,0.65); border-radius:50%;
  display:flex; align-items:center; justify-content:center; text-align:center;
  transform: rotate(-9deg);
  font-family: var(--font-mono); color: var(--gold-light); font-size:11px; letter-spacing:.08em;
  line-height:1.5;
}
@media (max-width: 980px){ .manifest-stamp{ display:none; } }

/* ---------- Sections ---------- */
.section{ padding: 76px 0; }
.section-tight{ padding: 48px 0; }
.section-alt{ background:#fff; }
.section-navy{ background: var(--navy); color:#fff; }
.section-navy h2{ color:#fff; }
.section-navy p{ color:#B9C2D2; }
.section-head{ max-width:680px; margin: 0 0 44px; }
.section-eyebrow{
  font-family: var(--font-mono); font-size:11.5px; letter-spacing:.16em; text-transform:uppercase;
  color: var(--gold); display:block; margin-bottom:12px; font-weight:600;
}
.section-head h2{ font-size: clamp(26px,3.4vw,38px); }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- Intro text block ---------- */
.intro-block{ max-width:760px; margin: 0 auto; text-align:center; padding: 60px 0 10px; }
.intro-block p{ font-size:17px; color: var(--ink-soft); }

/* ---------- Service cards grid ---------- */
.grid-services{ display:grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap:22px; }
.service-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px; display:flex; flex-direction:column; gap:10px;
  transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
  position:relative;
}
.service-card:hover{ box-shadow: var(--shadow-md); border-color: var(--gold); transform: translateY(-2px); }
.service-index{
  font-family: var(--font-mono); font-size:11px; color: var(--gold); letter-spacing:.1em;
}
.service-icon{
  width:44px; height:44px; border-radius:50%; background: var(--navy);
  display:flex; align-items:center; justify-content:center; color: var(--gold-light); margin-bottom:6px;
}
.service-card h3{ font-size:18.5px; margin-bottom:4px; }
.service-card .desc{ font-size:14.5px; color: var(--ink-soft); flex-grow:1; }
.service-card .price-row{
  display:flex; align-items:baseline; justify-content:space-between; margin-top:6px;
  border-top:1px dashed var(--line); padding-top:12px;
}
.service-from{ font-size:11.5px; color: var(--ink-soft); text-transform:uppercase; letter-spacing:.06em; }
.service-price{ font-family: var(--font-mono); font-weight:600; color: var(--navy); font-size:19px; }

/* ---------- Service detail (services.html) ---------- */
.service-full{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; margin-bottom:28px; scroll-margin-top: 100px;
}
.service-full-top{ display:flex; gap:20px; align-items:flex-start; flex-wrap:wrap; justify-content:space-between; }
.service-meta-row{ display:flex; gap:22px; flex-wrap:wrap; margin: 16px 0 20px; }
.meta-chip{
  font-family: var(--font-mono); font-size:12.5px; color: var(--navy); background: var(--gray);
  padding:7px 12px; border-radius:20px; border:1px solid var(--line);
}
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:26px; margin-bottom:20px; }
@media (max-width:700px){ .two-col{ grid-template-columns:1fr; } }
.check-list li, .cross-list li{ padding:5px 0 5px 26px; position:relative; font-size:14.5px; color: var(--ink); }
.check-list li::before{ content:"✓"; position:absolute; left:0; color: var(--success); font-weight:700; }
.cross-list li::before{ content:"–"; position:absolute; left:0; color: var(--ink-soft); font-weight:700; }
.disclaimer-box{
  background: var(--gray); border-left:3px solid var(--gold); padding:14px 16px; font-size:13.5px;
  color: var(--ink-soft); border-radius:0 var(--radius) var(--radius) 0; margin-top:6px;
}

/* Packages */
.pkg-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:18px; margin-top:8px; }
.pkg-card{
  border:1.5px solid var(--line); border-radius: var(--radius-lg); padding:22px 20px;
  background: var(--gray); position:relative;
}
.pkg-card.recommended{ border-color: var(--gold); background:#fff; box-shadow: var(--shadow-sm); }
.pkg-badge{
  position:absolute; top:-11px; right:16px; background: var(--gold); color: var(--navy);
  font-size:10.5px; font-weight:700; letter-spacing:.06em; padding:3px 10px; border-radius:12px; text-transform:uppercase;
}
.pkg-name{ font-family: var(--font-mono); font-size:12.5px; letter-spacing:.1em; color: var(--ink-soft); text-transform:uppercase; }
.pkg-price{ font-family: var(--font-display); font-size:32px; color: var(--navy); font-weight:600; margin:6px 0 14px; }
.pkg-price span{ font-size:14px; color: var(--ink-soft); font-family: var(--font-body); }
.pkg-card ul{ margin-bottom:18px; }
.pkg-card ul li{ font-size:13.5px; padding:4px 0 4px 20px; position:relative; color: var(--ink); }
.pkg-card ul li::before{ content:"•"; color: var(--gold); position:absolute; left:0; font-weight:700; }

/* ---------- Booking wizard ---------- */
.wizard-shell{ max-width: 820px; margin:0 auto; }
.progress-track{ display:flex; gap:6px; margin-bottom: 30px; }
.progress-step{ flex:1; height:5px; background: var(--line); border-radius:3px; overflow:hidden; }
.progress-step .fill{ height:100%; width:0%; background: var(--gold); transition: width .25s ease; }
.progress-step.done .fill, .progress-step.current .fill{ width:100%; }
.step-label-row{ display:flex; justify-content:space-between; font-family: var(--font-mono); font-size:10.5px; color: var(--ink-soft); text-transform:uppercase; letter-spacing:.06em; margin-bottom:8px; }

.wizard-card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-sm);
}
.wizard-card h2{ font-size:23px; }
.step-kicker{ font-family: var(--font-mono); font-size:11.5px; color: var(--gold); letter-spacing:.14em; text-transform:uppercase; margin-bottom:8px; display:block; }

.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:600px){ .form-grid{ grid-template-columns:1fr; } }
.field{ margin-bottom:18px; display:flex; flex-direction:column; gap:6px; }
.field label{ font-size:13.5px; font-weight:600; color: var(--navy); }
.field .hint{ font-size:12px; color: var(--ink-soft); font-weight:400; margin-top:-2px; }
.field .req{ color: var(--danger); margin-left:2px; }
input[type=text], input[type=email], input[type=tel], input[type=number],
input[type=date], input[type=url], select, textarea{
  font-family: var(--font-body); font-size:15px; padding:12px 14px; border:1.5px solid var(--line);
  border-radius: var(--radius); background:#fff; color: var(--ink); width:100%;
}
textarea{ resize:vertical; min-height:96px; }
input:focus, select:focus, textarea:focus{ border-color: var(--navy); }
.field.error input, .field.error select, .field.error textarea{ border-color: var(--danger); background: var(--danger-bg); }
.field-error-msg{ font-size:12.5px; color: var(--danger); font-weight:600; display:none; }
.field.error .field-error-msg{ display:block; }

.choice-grid{ display:grid; grid-template-columns: repeat(auto-fill,minmax(150px,1fr)); gap:10px; }
.choice-pill{
  border:1.5px solid var(--line); border-radius: var(--radius); padding:11px 14px; font-size:14px;
  display:flex; align-items:center; gap:9px; cursor:pointer; background:#fff;
}
.choice-pill input{ accent-color: var(--navy); width:16px; height:16px; }
.choice-pill:has(input:checked){ border-color: var(--navy); background: var(--gray); font-weight:600; }

.wizard-actions{ display:flex; justify-content:space-between; margin-top:30px; gap:12px; flex-wrap:wrap; }

/* File upload */
.upload-zone{
  border:1.5px dashed var(--line); border-radius: var(--radius-lg); padding:30px 20px; text-align:center;
  background: var(--gray); cursor:pointer;
}
.upload-zone:hover, .upload-zone.dragover{ border-color: var(--gold); background:#FBF7EA; }
.upload-zone .icon{ font-size:26px; margin-bottom:8px; }
.file-list{ margin-top:14px; display:flex; flex-direction:column; gap:8px; }
.file-item{
  display:flex; align-items:center; justify-content:space-between; background:#fff; border:1px solid var(--line);
  border-radius: var(--radius); padding:9px 12px; font-size:13.5px; font-family: var(--font-mono);
}
.file-item .remove-file{ background:none; border:none; color: var(--danger); font-weight:700; font-size:15px; }

/* Calendar */
.tz-note{
  display:inline-flex; align-items:center; gap:8px; background: var(--gray); border:1px solid var(--line);
  padding:9px 14px; border-radius:20px; font-size:13px; font-family: var(--font-mono); margin-bottom:20px;
}
.calendar{ border:1px solid var(--line); border-radius: var(--radius-lg); overflow:hidden; margin-bottom:22px; }
.cal-head{ display:flex; align-items:center; justify-content:space-between; background: var(--navy); color:#fff; padding:12px 16px; }
.cal-head button{ background:none; border:1px solid rgba(255,255,255,0.4); color:#fff; width:32px; height:32px; border-radius:50%; }
.cal-grid{ display:grid; grid-template-columns:repeat(7,1fr); }
.cal-dow{ text-align:center; font-size:11px; font-weight:700; color: var(--ink-soft); padding:8px 0; background: var(--gray); }
.cal-day{
  aspect-ratio:1/0.9; display:flex; align-items:center; justify-content:center; font-size:14px;
  border-top:1px solid var(--line); border-left:1px solid var(--line); background:#fff; color: var(--ink);
}
.cal-day.empty{ background: var(--gray); }
.cal-day.past, .cal-day.closed{ color:#C6CBD3; }
.cal-day.avail{ cursor:pointer; font-weight:600; }
.cal-day.avail:hover{ background: var(--gray); }
.cal-day.selected{ background: var(--gold); color: var(--navy); font-weight:700; }
.cal-day.today{ box-shadow: inset 0 0 0 1.5px var(--navy); }

.time-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(120px,1fr)); gap:10px; }
.time-slot{
  border:1.5px solid var(--line); border-radius: var(--radius); padding:11px 8px; text-align:center;
  font-family: var(--font-mono); font-size:13px; background:#fff;
}
.time-slot:not(.taken){ cursor:pointer; }
.time-slot:hover:not(.taken){ border-color: var(--navy); }
.time-slot.selected{ background: var(--navy); color:#fff; border-color: var(--navy); }
.time-slot.taken{ background: var(--gray); color:#C6CBD3; text-decoration:line-through; cursor:not-allowed; }

/* Review / summary */
.summary-box{ background: var(--gray); border:1px solid var(--line); border-radius: var(--radius-lg); padding:24px; margin-bottom:18px; }
.summary-box h3{ font-size:14px; text-transform:uppercase; letter-spacing:.08em; font-family: var(--font-mono); color: var(--navy); margin-bottom:14px; }
.summary-row{ display:flex; justify-content:space-between; padding:7px 0; border-bottom:1px dashed var(--line); font-size:14.5px; gap:16px; }
.summary-row:last-child{ border-bottom:none; }
.summary-row .k{ color: var(--ink-soft); }
.summary-row .v{ color: var(--ink); font-weight:600; text-align:right; }
.summary-total{ display:flex; justify-content:space-between; align-items:center; padding-top:16px; margin-top:8px; border-top:2px solid var(--navy); }
.summary-total .v{ font-family: var(--font-mono); font-size:26px; color: var(--navy); font-weight:700; }
.consent-check{ display:flex; gap:12px; align-items:flex-start; background:#fff; border:1.5px solid var(--line); padding:16px; border-radius: var(--radius-lg); margin:20px 0; }
.consent-check input{ width:18px; height:18px; margin-top:2px; accent-color: var(--navy); flex-shrink:0; }
.consent-check label{ font-size:13.5px; color: var(--ink-soft); }
.consent-check a{ color: var(--navy); text-decoration:underline; }

/* Payment panel */
.payment-panel{ border:1.5px solid var(--line); border-radius: var(--radius-lg); padding:26px; background:#fff; }
.payment-note-badge{ display:flex; align-items:center; gap:10px; font-family: var(--font-mono); font-size:12.5px; color: var(--ink-soft); margin-bottom:16px; }
.payment-note-icon{ width:22px; height:22px; border-radius:50%; background: var(--navy); color: var(--gold-light); display:flex; align-items:center; justify-content:center; font-size:12px; }

/* Payment methods list (confirmation page) */
.payment-methods{ display:grid; grid-template-columns:repeat(auto-fit, minmax(150px,1fr)); gap:12px; margin:18px 0; }
.payment-method-card{ background:#fff; border:1px solid var(--line); border-radius:8px; padding:14px 16px; }
.payment-method-card .pm-label{ font-weight:700; color:var(--navy); font-size:13.5px; margin-bottom:4px; }
.payment-method-card .pm-handle{ font-family: var(--font-mono); font-size:13px; color: var(--ink); word-break:break-word; }
.payment-deadline{ font-size:13px; font-weight:600; color:var(--navy); background:#FFF8E6; border:1px solid #F0DFA0; border-radius:8px; padding:12px 16px; margin:12px 0; }
.payment-note{ font-size:13px; color:var(--ink-soft); background:#fff; border:1px solid var(--line); border-radius:8px; padding:12px 16px; margin-top:6px; }
.payment-status{ display:flex; align-items:center; gap:10px; padding:14px 16px; border-radius: var(--radius); font-size:14px; font-weight:600; margin-top:16px; }
.payment-status.pending{ background:#FFF6E0; color:#8A6A00; }
.payment-status.success{ background: var(--success-bg); color: var(--success); }
.payment-status.failed{ background: var(--danger-bg); color: var(--danger); }
.code-note{
  background: var(--navy); color:#D9DEE8; font-family: var(--font-mono); font-size:12px; padding:16px 18px;
  border-radius: var(--radius); margin-top:16px; line-height:1.7; overflow-x:auto;
}
.code-note .comment{ color: var(--gold-light); }

/* ---------- Confirmation / ticket stub (signature) ---------- */
.confirm-hero{ text-align:center; padding: 70px 0 20px; }
.confirm-check{
  width:76px; height:76px; border-radius:50%; background: var(--success-bg); color: var(--success);
  display:flex; align-items:center; justify-content:center; font-size:36px; margin:0 auto 20px;
}
.ticket{
  max-width:560px; margin: 30px auto 0; background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); position:relative; overflow:hidden;
}
.ticket-top{ padding:26px 28px; background: var(--navy); color:#fff; }
.ticket-top .conf-num{ font-family: var(--font-mono); font-size:12px; color: var(--gold-light); letter-spacing:.1em; }
.ticket-perf{
  position:relative; height:0; border-top:2px dashed var(--line); margin: 0 0;
}
.ticket-perf::before, .ticket-perf::after{
  content:""; position:absolute; top:-12px; width:24px; height:24px; background: var(--paper); border-radius:50%;
}
.ticket-perf::before{ left:-12px; } .ticket-perf::after{ right:-12px; }
.ticket-body{ padding:26px 28px; }
.ticket-row{ display:flex; justify-content:space-between; padding:9px 0; font-size:14.5px; border-bottom:1px solid var(--line); }
.ticket-row:last-child{ border-bottom:none; }
.ticket-row .k{ color: var(--ink-soft); }
.ticket-row .v{ font-weight:600; }

/* ---------- Steps / stamps (how it works) ---------- */
.steps-strip{ display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:24px; }
.step-item{ position:relative; padding-left:0; }
.step-num{ font-family: var(--font-mono); color: var(--gold); font-size:13px; letter-spacing:.1em; }
.step-item h4{ color:#fff; margin:8px 0 6px; font-size:17px; }
.step-item p{ font-size:14px; color:#B9C2D2; margin:0; }

/* ---------- Contact / footer CTA ---------- */
.cta-band{ background: var(--gold); color: var(--navy); padding: 56px 0; text-align:center; }
.cta-band h2{ color: var(--navy); }
.contact-strip{ display:flex; gap:34px; justify-content:center; flex-wrap:wrap; margin-top:22px; font-family: var(--font-mono); font-size:14px; }

.site-footer{ background: var(--navy); color:#B9C2D2; padding: 52px 0 26px; }
.footer-grid{ display:grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap:32px; margin-bottom:36px; }
@media (max-width:760px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
.footer-grid h5{ color:#fff; font-size:13px; text-transform:uppercase; letter-spacing:.08em; margin-bottom:14px; font-family: var(--font-mono); }
.footer-grid a{ display:block; color:#B9C2D2; font-size:14px; padding:5px 0; }
.footer-grid a:hover{ color: var(--gold-light); }
.footer-bottom{ border-top:1px solid rgba(255,255,255,0.12); padding-top:20px; font-size:12.5px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; color:#8894A6; }

/* ---------- Utility ---------- */
.legal-page .container{ max-width:820px; padding-top:56px; padding-bottom:70px; }
.legal-page h2{ margin-top:36px; font-size:20px; }
.legal-page ul{ margin: 0 0 16px 0; }
.legal-page li{ padding:4px 0 4px 20px; position:relative; color: var(--ink-soft); font-size:15px; }
.legal-page li::before{ content:"–"; position:absolute; left:0; }
.updated-note{ font-family: var(--font-mono); font-size:12px; color: var(--ink-soft); margin-bottom:30px; display:block; }

.badge{ display:inline-block; padding:3px 10px; border-radius:12px; font-size:11px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; }
.badge-pending{ background:#FFF6E0; color:#8A6A00; }
.badge-paid{ background:#E5EEFA; color:#1D4E89; }
.badge-confirmed{ background: var(--success-bg); color: var(--success); }
.badge-completed{ background:#EDEAF7; color:#5B3FA8; }
.badge-cancelled{ background: var(--danger-bg); color: var(--danger); }

.table-wrap{ overflow-x:auto; background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); }
table{ width:100%; border-collapse:collapse; font-size:13.5px; min-width:900px; }
th, td{ text-align:left; padding:12px 14px; border-bottom:1px solid var(--line); white-space:nowrap; }
th{ background: var(--gray); font-family: var(--font-mono); font-size:11px; text-transform:uppercase; letter-spacing:.06em; color: var(--ink-soft); }
tr:hover td{ background: #FBFAF7; }

.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
