/* ============================================================
   ONTARIO JETPACKS — Brand stylesheet  (v2: beach-fiesta)
   Vibe: modern summer beach party. Clean, bright, vibrant.
   Light/white dominant + bold color blocking in turquoise,
   coral and sunshine yellow. Deep ink only for text + footer.
   Strong display sans (Bricolage Grotesque) + clean body
   (Hanken Grotesk) + a hand-drawn marker script (Caveat).
   ============================================================ */

:root {
  /* palette pulled straight from the logo, tuned warm + retro-70s */
  --oj-aqua:       #29ABE2;   /* logo cyan — sky / water */
  --oj-aqua-bright:#5FC8EE;
  --oj-aqua-deep:  #1B89BC;   /* links / hover on light */
  --oj-coral:      #F2552F;   /* logo coral-orange — primary CTA / sunset */
  --oj-coral-deep: #D8431E;
  --oj-yellow:     #F8B01D;   /* logo golden yellow — sunshine */
  --oj-yellow-deep:#D9920A;
  --oj-pink:       #EF6F8E;   /* warm retro rose, sparing */

  /* neutrals — warm + sun-bleached */
  --oj-white:      #FFFCF4;   /* warm white card */
  --oj-cream-card: #FCFAF3;   /* near-white card surface */
  --oj-sand:       #FBF1DC;   /* warm 70s cream — dominant canvas */
  --oj-sand-2:     #F4E5C6;
  --oj-ink:        #14324F;   /* logo navy — text + dark sections */
  --oj-ink-2:      #0E2740;   /* deepest navy */
  --oj-ink-soft:   #5A7184;   /* muted text on light */
  --oj-off:        #FBF2DF;   /* warm text on navy */
  --oj-off-soft:   #9FB6C6;   /* muted text on navy */
  --oj-line:       rgba(20,50,79,0.13);
  --oj-line-d:     rgba(255,255,255,0.16);

  /* fonts */
  --oj-display: 'Fredoka', 'Hanken Grotesk', system-ui, sans-serif;
  --oj-body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --oj-script:  'Caveat', 'Bricolage Grotesque', cursive;

  /* shape */
  --oj-r-sm: 10px; --oj-r-md: 16px; --oj-r-lg: 24px; --oj-r-xl: 34px; --oj-pill: 999px;
  --oj-maxw: 1240px; --oj-nav-h: 90px;

  /* shadow — soft, friendly */
  --oj-sh-1: 0 4px 16px rgba(12,53,61,0.08);
  --oj-sh-2: 0 18px 44px -16px rgba(12,53,61,0.22);
  --oj-sh-coral: 0 14px 30px -10px rgba(237,82,38,0.5);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--oj-sand);
  color: var(--oj-ink);
  font-family: var(--oj-body);
  font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
::selection { background: var(--oj-yellow); color: var(--oj-ink); }

.oj-wrap { max-width: var(--oj-maxw); margin: 0 auto; padding-inline: 24px; }
.oj-reveal { opacity: 1; }

.oj-skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--oj-coral); color: #fff; padding: 12px 18px; font-weight: 700; border-radius: 0 0 10px 0;
}
.oj-skip:focus { left: 0; top: 0; }

/* ============================================================ TYPE */
.oj-display { font-family: var(--oj-display); font-weight: 700; line-height: 1.0; letter-spacing: -0.005em; margin: 0; color: inherit; }
.oj-d-xxl { font-size: clamp(46px, 8.4vw, 112px); }
.oj-d-xl  { font-size: clamp(38px, 6vw, 80px); }
.oj-d-lg  { font-size: clamp(30px, 4.2vw, 56px); }
.oj-d-md  { font-size: clamp(25px, 3vw, 38px); }
.oj-d-sm  { font-size: clamp(21px, 2.2vw, 27px); }

.oj-script { font-family: var(--oj-script); font-weight: 700; color: var(--oj-coral); line-height: 0.8; letter-spacing: 0.02em; display: inline-block; margin: 0 0.14em; }
.oj-script--aqua { color: var(--oj-aqua-deep); }
.oj-script--yellow { color: var(--oj-yellow-deep); }
.oj-script--white { color: #fff; }
.oj-script--tilt { transform: rotate(-4deg); }

.oj-eyebrow { font-family: var(--oj-body); font-weight: 800; font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; margin: 0; display: inline-flex; align-items: center; gap: 12px; color: var(--oj-aqua-deep); }
.oj-eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 3px; background: currentColor; flex: none; }
[data-theme="aqua"] .oj-eyebrow, [data-theme="coral"] .oj-eyebrow, [data-theme="yellow"] .oj-eyebrow { color: var(--oj-ink); }
[data-theme="ink"] .oj-eyebrow { color: var(--oj-aqua-bright); }

.oj-lede { font-size: clamp(17px, 1.55vw, 20px); line-height: 1.6; color: var(--oj-ink-soft); max-width: 58ch; margin: 22px 0 0; }
.oj-lede strong { color: var(--oj-ink); font-weight: 700; }
[data-theme="ink"] .oj-lede { color: var(--oj-off-soft); }
[data-theme="ink"] .oj-lede strong { color: var(--oj-off); }
[data-theme="aqua"] .oj-lede, [data-theme="yellow"] .oj-lede { color: rgba(12,53,61,0.82); }
[data-theme="aqua"] .oj-lede strong, [data-theme="yellow"] .oj-lede strong { color: var(--oj-ink); }
[data-theme="coral"] .oj-lede { color: rgba(255,255,255,0.92); }
[data-theme="coral"] .oj-lede strong { color: #fff; }

.oj-was { text-decoration: line-through; text-decoration-thickness: 2px; opacity: 0.5; font-weight: 600; }

/* ============================================================ SECTIONS */
.oj-section { position: relative; padding: clamp(60px, 8.5vw, 112px) 0; }
.oj-section > .oj-wrap { position: relative; z-index: 2; }

[data-theme="light"] { background: var(--oj-white); color: var(--oj-ink); }
[data-theme="sand"]  { background: var(--oj-sand);  color: var(--oj-ink); }
[data-theme="aqua"]  { background: var(--oj-aqua);  color: var(--oj-ink); }
[data-theme="yellow"]{ background: var(--oj-yellow);color: var(--oj-ink); }
[data-theme="coral"] { background: var(--oj-coral); color: #fff; }
[data-theme="ink"]   { background: var(--oj-ink);   color: var(--oj-off); }

.oj-section-head { max-width: 720px; }
.oj-section-head .oj-display { margin-top: 16px; }
.oj-section-head .oj-lede { margin-top: 18px; }

/* sun glow on aqua/ink sections */
.oj-glow::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 55% at 85% -8%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(ellipse 45% 45% at 6% 108%, rgba(255,196,44,0.30), transparent 60%);
}
[data-theme="ink"].oj-glow::after {
  background:
    radial-gradient(ellipse 55% 55% at 85% -10%, rgba(41,171,226,0.22), transparent 60%),
    radial-gradient(ellipse 45% 45% at 6% 108%, rgba(242,85,47,0.16), transparent 60%);
}

/* 70s sunburst rays */
.oj-sunrays { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.oj-sunrays::before {
  content: ""; position: absolute; left: 50%; top: -52%; width: 200vw; aspect-ratio: 1; transform: translateX(-50%);
  background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(255,255,255,0.12) 0deg 5deg, transparent 5deg 11deg);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 62%);
          mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 62%);
}
[data-theme="sand"] .oj-sunrays::before, [data-theme="yellow"] .oj-sunrays::before { background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(216,67,30,0.07) 0deg 5deg, transparent 5deg 11deg); }
@media (prefers-reduced-motion: no-preference) {
  .oj-sunrays--spin::before { animation: oj-spin 120s linear infinite; }
}
@keyframes oj-spin { to { transform: translateX(-50%) rotate(360deg); } }

/* retro sun disc */
.oj-sun { position: absolute; border-radius: 50%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, var(--oj-yellow) 0%, var(--oj-yellow) 62%, transparent 63%); }

/* 70s sunset hero */
.oj-hero-sunset { position: relative; overflow: hidden; color: var(--oj-ink);
  background: linear-gradient(166deg, #FFD884 0%, #FBA23C 38%, #F2552F 100%);
  padding-bottom: clamp(36px, 4vw, 56px); }

/* hero layout: copy right, illustration owns the left (desktop) */
.oj-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(28px, 4vw, 60px); align-items: center; min-height: clamp(420px, 46vw, 560px); }
.oj-hero-grid .hero-copy { grid-column: 2; }
.oj-hero-art {
  position: absolute; left: clamp(-48px, -2vw, -4px); bottom: -2px; z-index: 1;
  width: clamp(400px, 48vw, 700px); height: auto;
  pointer-events: none; user-select: none;
  filter: drop-shadow(0 14px 22px rgba(20,50,79,0.18));
}
@media (max-width: 920px) {
  .oj-hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .oj-hero-grid .hero-copy { grid-column: 1; }
  .oj-hero-art { display: none; }
}

/* confetti dots texture */
.oj-dots::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(12,53,61,0.06) 1.4px, transparent 1.6px);
  background-size: 24px 24px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

/* ============================================================ WAVE */
.oj-wave { display: block; width: 100%; height: clamp(54px, 7vw, 104px); line-height: 0; }
.oj-wave svg { width: 100%; height: 100%; display: block; }
.oj-logo { height: 70px; width: auto; display: block; }
@media (max-width: 920px) { .oj-logo { height: 56px; } }

/* ============================================================ BUTTONS */
.oj-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: var(--oj-pill);
  font-family: var(--oj-display); font-weight: 700; font-size: 15.5px; letter-spacing: 0;
  cursor: pointer; border: 2px solid transparent; white-space: nowrap;
  transition: transform 140ms cubic-bezier(.2,.9,.3,1), background 150ms, box-shadow 180ms, color 150ms, border-color 150ms;
}
.oj-btn svg { width: 18px; height: 18px; stroke-width: 2.3; }
.oj-btn:hover { transform: translateY(-2px); }
.oj-btn:active { transform: translateY(0) scale(.98); }
@media (prefers-reduced-motion: reduce) { .oj-btn:hover, .oj-btn:active { transform: none; } }

.oj-btn--coral { background: var(--oj-coral); color: #fff; box-shadow: var(--oj-sh-coral); }
.oj-btn--coral:hover { background: var(--oj-coral-deep); }
.oj-btn--aqua { background: var(--oj-aqua); color: var(--oj-ink); box-shadow: 0 14px 30px -10px rgba(10,147,166,0.5); }
.oj-btn--aqua:hover { background: var(--oj-aqua-bright); }
.oj-btn--ink { background: var(--oj-ink); color: #fff; }
.oj-btn--ink:hover { background: var(--oj-ink-2); }
.oj-btn--white { background: #fff; color: var(--oj-ink); box-shadow: var(--oj-sh-1); }
.oj-btn--white:hover { background: var(--oj-sand); }
.oj-btn--ghost { background: transparent; color: var(--oj-ink); border-color: var(--oj-line); }
.oj-btn--ghost:hover { border-color: var(--oj-ink); }
[data-theme="ink"] .oj-btn--ghost, [data-theme="coral"] .oj-btn--ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
[data-theme="ink"] .oj-btn--ghost:hover, [data-theme="coral"] .oj-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.oj-btn--lg { padding: 18px 34px; font-size: 17px; }
.oj-btn--block { width: 100%; }

/* ============================================================ NAV */
.oj-nav {
  position: sticky; top: 0; z-index: 100; height: var(--oj-nav-h);
  display: flex; align-items: center; background: rgba(255,255,255,0.94);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--oj-line);
}
.oj-nav-inner { max-width: var(--oj-maxw); margin: 0 auto; width: 100%; padding-inline: 24px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.oj-brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.oj-brand .mark { width: 40px; height: 40px; border-radius: 12px; background: var(--oj-coral); display: inline-flex; align-items: center; justify-content: center; flex: none; box-shadow: 0 5px 14px -4px rgba(237,82,38,0.6); }
.oj-brand .mark svg { width: 22px; height: 22px; }
.oj-brand .wm { font-family: var(--oj-display); font-weight: 800; font-size: 19px; letter-spacing: -0.02em; line-height: 0.95; color: var(--oj-ink); text-transform: uppercase; }
.oj-brand .wm small { display: block; font-family: var(--oj-body); font-weight: 700; font-size: 9px; letter-spacing: 0.24em; color: var(--oj-aqua-deep); margin-top: 3px; }

.oj-nav-links { display: flex; align-items: center; gap: 28px; }
.oj-nav-links a { font-family: var(--oj-display); font-weight: 600; font-size: 15px; color: var(--oj-ink); transition: color 150ms; position: relative; }
.oj-nav-links a:hover, .oj-nav-links a[aria-current="page"] { color: var(--oj-coral); }
.oj-nav-links a[aria-current="page"]::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 3px; border-radius: 3px; background: var(--oj-coral); }

.oj-nav-actions { display: flex; align-items: center; gap: 14px; flex: none; }
.oj-nav-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--oj-display); font-weight: 700; font-size: 15px; color: var(--oj-ink); }
.oj-nav-phone svg { width: 16px; height: 16px; stroke: var(--oj-coral); stroke-width: 2.3; }
.oj-nav-phone:hover { color: var(--oj-coral); }

.oj-burger { display: none; width: 44px; height: 44px; border-radius: 12px; background: transparent; border: 1px solid var(--oj-line); cursor: pointer; align-items: center; justify-content: center; flex: none; }
.oj-burger svg { width: 22px; height: 22px; stroke: var(--oj-ink); stroke-width: 2; }

.oj-mobile {
  position: fixed; inset: var(--oj-nav-h) 0 0; z-index: 99; background: var(--oj-white);
  padding: 30px 24px 130px; transform: translateX(100%);
  transition: transform 260ms cubic-bezier(.2,.8,.2,1); display: flex; flex-direction: column; overflow-y: auto;
}
.oj-mobile.is-open { transform: translateX(0); }
@media (prefers-reduced-motion: reduce) { .oj-mobile { transition: none; } }
.oj-mobile a.m-link { font-family: var(--oj-display); font-weight: 800; font-size: 32px; color: var(--oj-ink); padding: 16px 0; border-bottom: 1px solid var(--oj-line); display: flex; justify-content: space-between; align-items: center; }
.oj-mobile a.m-link::after { content: "\2197"; color: var(--oj-coral); font-family: var(--oj-body); }
.oj-mobile a.m-link:hover { color: var(--oj-coral); }
.oj-mobile-cta { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }

.oj-actionbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none; grid-template-columns: 1fr 1.3fr; }
.oj-actionbar a { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 16px 8px; font-family: var(--oj-display); font-weight: 700; font-size: 15px; }
.oj-actionbar svg { width: 18px; height: 18px; stroke-width: 2.3; }
.oj-actionbar .ab-call { background: var(--oj-ink); color: #fff; }
.oj-actionbar .ab-call svg { stroke: var(--oj-aqua-bright); }
.oj-actionbar .ab-book { background: var(--oj-coral); color: #fff; }
.oj-actionbar .ab-book svg { stroke: #fff; }

@media (max-width: 920px) {
  .oj-nav-links { display: none; }
  .oj-nav-phone span { display: none; }
  .oj-nav-actions > .oj-btn { display: none; }
  .oj-burger { display: inline-flex; }
  .oj-actionbar { display: grid; }
  body { padding-bottom: 58px; }
}

/* ============================================================ MEDIA PLACEHOLDER */
.oj-media {
  position: relative; border-radius: var(--oj-r-lg); overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(255,255,255,0.5), transparent 55%),
    linear-gradient(160deg, var(--oj-aqua-bright) 0%, var(--oj-aqua-deep) 100%);
}
.oj-media image-slot { width: 100%; height: 100%; display: block; }
.oj-media-img, .oj-media-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.oj-media-vid { background: var(--oj-aqua-deep); }
.oj-media-tag {
  position: absolute; top: 14px; left: 14px; z-index: 4; display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px; background: var(--oj-ink); border-radius: var(--oj-pill);
  font-family: var(--oj-display); font-size: 12px; font-weight: 700; letter-spacing: 0.02em; color: #fff; pointer-events: none;
}
.oj-media-tag svg { width: 13px; height: 13px; stroke: var(--oj-aqua-bright); stroke-width: 2.6; }

/* ============================================================ TRUST STRIP */
.oj-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 24px; font-size: 14.5px; color: var(--oj-ink-soft); }
[data-theme="aqua"] .oj-trust { color: rgba(12,53,61,0.78); }
.oj-trust .sep { width: 1px; height: 18px; background: rgba(12,53,61,0.2); }
.oj-trust strong { color: var(--oj-ink); font-weight: 700; }
.oj-stars { color: var(--oj-yellow-deep); letter-spacing: 0.1em; font-size: 15px; }
[data-theme="aqua"] .oj-stars, [data-theme="yellow"] .oj-stars, [data-theme="coral"] .oj-stars { color: var(--oj-ink); }

/* ============================================================ CARDS */
.oj-cards { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); margin-top: 52px; }
.oj-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: var(--oj-white); color: var(--oj-ink); border-radius: var(--oj-r-lg);
  box-shadow: var(--oj-sh-2); transition: transform 180ms cubic-bezier(.2,.85,.3,1), box-shadow 180ms;
}
.oj-card:hover { transform: translateY(-7px); box-shadow: 0 30px 56px -18px rgba(12,53,61,0.32); }
@media (prefers-reduced-motion: reduce) { .oj-card:hover { transform: none; } }
.oj-card-media { height: 248px; position: relative; }
.oj-card-media .oj-media-img { object-position: center 28%; }
.oj-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.oj-card-label { align-self: flex-start; margin-bottom: 16px; padding: 6px 14px; border-radius: var(--oj-pill); font-family: var(--oj-display); font-size: 12px; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap; }
.oj-label--pop   { background: var(--oj-coral); color: #fff; }
.oj-label--coral { background: var(--oj-pink);  color: #fff; }
.oj-label--teal  { background: var(--oj-aqua);  color: var(--oj-ink); }
.oj-card h3 { font-family: var(--oj-display); font-weight: 800; font-size: 25px; margin: 0 0 10px; line-height: 1.05; letter-spacing: -0.02em; }
.oj-card p { margin: 0 0 22px; color: var(--oj-ink-soft); font-size: 15.5px; }
.oj-card-link { margin-top: auto; display: inline-flex; align-items: center; gap: 9px; font-family: var(--oj-display); font-weight: 700; font-size: 14.5px; color: var(--oj-coral); }
.oj-card-link svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 2.4; transition: transform 150ms; }
.oj-card:hover .oj-card-link svg { transform: translateX(5px); }

/* ============================================================ SPLIT */
.oj-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 76px); align-items: center; }
.oj-split--rev .oj-split-media { order: 2; }
.oj-split-media { position: relative; }
.oj-split-media .oj-media { border: 5px solid #fff; box-shadow: var(--oj-sh-2); }
.oj-checklist { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.oj-checklist li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; font-size: 16.5px; }
.oj-check { width: 28px; height: 28px; border-radius: 50%; background: var(--oj-aqua); color: var(--oj-ink); display: inline-flex; align-items: center; justify-content: center; flex: none; margin-top: 1px; }
.oj-check svg { width: 15px; height: 15px; stroke: var(--oj-ink); stroke-width: 3.4; }
[data-theme="aqua"] .oj-check { background: var(--oj-ink); }
[data-theme="aqua"] .oj-check svg { stroke: var(--oj-aqua-bright); }

.oj-sticker {
  position: absolute; z-index: 6; display: grid; place-items: center; text-align: center;
  bottom: -14px; right: -10px; top: auto; left: auto;
  width: 120px; height: 120px; border-radius: 50%; background: var(--oj-yellow); color: var(--oj-ink);
  font-family: var(--oj-script); font-weight: 700; font-size: 27px; line-height: 0.95;
  box-shadow: 0 14px 30px -8px rgba(233,163,0,0.6); transform: rotate(-9deg); border: 4px solid #fff;
}
@media (max-width: 520px) {
  .oj-sticker { width: 98px; height: 98px; font-size: 22px; bottom: -10px; right: 4px; }
}

/* ============================================================ STEPS */
.oj-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.oj-step { position: relative; background: var(--oj-white); border-radius: var(--oj-r-lg); padding: 28px 24px; overflow: hidden; box-shadow: var(--oj-sh-1); }
[data-theme="light"] .oj-step { background: var(--oj-sand); }
.oj-step .n { font-family: var(--oj-script); font-weight: 700; font-size: 64px; color: var(--oj-coral); line-height: 0.7; margin-bottom: 14px; }
.oj-step:nth-child(2) .n { color: var(--oj-aqua-deep); }
.oj-step:nth-child(3) .n { color: var(--oj-yellow-deep); }
.oj-step:nth-child(4) .n { color: var(--oj-pink); }
.oj-step h4 { font-family: var(--oj-display); font-weight: 800; font-size: 20px; margin: 0 0 10px; line-height: 1.1; }
.oj-step p { margin: 0; font-size: 14.5px; color: var(--oj-ink-soft); }

/* ============================================================ KPI */
.oj-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.oj-kpi { background: rgba(255,255,255,0.06); border-radius: var(--oj-r-lg); padding: 34px 28px; text-align: left; border-bottom: 5px solid var(--oj-aqua); }
.oj-kpi:nth-child(2) { border-bottom-color: var(--oj-coral); }
.oj-kpi:nth-child(3) { border-bottom-color: var(--oj-yellow); }
.oj-kpi:nth-child(4) { border-bottom-color: var(--oj-pink); }
.oj-kpi .n { font-family: var(--oj-display); font-weight: 800; font-size: clamp(38px, 4.6vw, 60px); line-height: 0.92; color: var(--oj-off); letter-spacing: -0.03em; }
.oj-kpi .l { margin-top: 12px; font-family: var(--oj-display); font-weight: 600; font-size: 14px; color: var(--oj-off-soft); }

/* ============================================================ TESTIMONIALS */
.oj-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.oj-review { background: var(--oj-white); color: var(--oj-ink); border-radius: var(--oj-r-lg); padding: 32px 30px; display: flex; flex-direction: column; box-shadow: var(--oj-sh-2); position: relative; }
.oj-review .quote-mark { font-family: var(--oj-script); font-weight: 700; font-size: 72px; color: var(--oj-coral); line-height: 0.5; height: 30px; }
.oj-review .oj-stars { color: var(--oj-yellow-deep); }
.oj-review .oj-stars { margin: 6px 0 16px; }
.oj-review blockquote { margin: 0 0 22px; font-size: 16.5px; line-height: 1.62; color: #234047; }
.oj-review figcaption { margin-top: auto; font-family: var(--oj-display); font-weight: 700; font-size: 14px; color: var(--oj-ink); }
.oj-review figcaption span { display: block; font-family: var(--oj-body); font-weight: 500; font-size: 13px; color: var(--oj-ink-soft); margin-top: 3px; }

/* ============================================================ CTA BAND */
.oj-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ============================================================ FOOTER */
.oj-footer { background: var(--oj-ink-2); color: var(--oj-off); position: relative; }
.oj-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding: 72px 0 40px; border-bottom: 1px solid var(--oj-line-d); }
.oj-footer .oj-brand { margin-bottom: 18px; }
.oj-logo-footer { height: 128px; width: auto; display: block; }
@media (max-width: 540px) { .oj-logo-footer { height: 96px; } }
/* brand column: centered logo with text beneath */
.oj-footer-grid > div:first-child { text-align: center; display: flex; flex-direction: column; align-items: center; }
.oj-footer-grid > div:first-child .oj-brand { justify-content: center; margin-bottom: 20px; }
.oj-footer-grid > div:first-child .oj-footer-about { margin: 0 auto; }
.oj-footer-grid > div:first-child .oj-social { justify-content: center; }
.oj-footer .oj-brand .wm { color: #fff; }
.oj-footer .oj-brand .wm small { color: var(--oj-aqua-bright); }
.oj-footer-about { color: var(--oj-off-soft); font-size: 15px; max-width: 32ch; }
.oj-footer-col h4 { margin: 0 0 16px; font-family: var(--oj-display); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--oj-aqua-bright); }
.oj-footer-col a, .oj-footer-col p { display: block; font-size: 14.5px; color: var(--oj-off-soft); margin: 10px 0; }
.oj-footer-col a:hover { color: var(--oj-aqua-bright); }
.oj-footer-base { padding: 22px 0 30px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--oj-off-soft); }
.oj-footer-base a:hover { color: var(--oj-aqua-bright); }
.oj-powered { display: inline-flex; align-items: center; gap: 7px; opacity: 0.8; }
.oj-powered-logo { height: 16px; width: auto; display: inline-block; vertical-align: middle; transition: opacity .2s; opacity: 0.9; }
.oj-powered a { display: inline-flex; align-items: center; }
.oj-powered a:hover .oj-powered-logo { opacity: 1; }
.oj-social { display: flex; gap: 12px; margin-top: 4px; }
.oj-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--oj-line-d); display: inline-flex; align-items: center; justify-content: center; }
.oj-social a:hover { background: var(--oj-coral); border-color: var(--oj-coral); }
.oj-social svg { width: 18px; height: 18px; stroke: var(--oj-off); stroke-width: 2; }
.oj-social a:hover svg { stroke: #fff; }

/* ============================================================ FORMS */
.oj-field { display: flex; flex-direction: column; gap: 8px; }
.oj-field label { font-family: var(--oj-display); font-weight: 600; font-size: 13.5px; color: var(--oj-ink); }
[data-theme="ink"] .oj-field label, [data-theme="aqua"] .oj-field label { color: inherit; }
.oj-input, .oj-select, .oj-textarea {
  width: 100%; min-width: 0; max-width: 100%; box-sizing: border-box; font-family: var(--oj-body); font-size: 16px; color: var(--oj-ink);
  background: #fff; border: 1.5px solid var(--oj-line); border-radius: var(--oj-r-md); padding: 14px 16px;
  transition: border-color 150ms, box-shadow 150ms;
}
[data-theme="ink"] .oj-input, [data-theme="ink"] .oj-select, [data-theme="ink"] .oj-textarea { background: rgba(255,255,255,0.06); border-color: var(--oj-line-d); color: var(--oj-off); }
.oj-textarea { min-height: 120px; resize: vertical; }
/* date/time inputs: belt-and-suspenders against engines that ignore
   box-sizing on these controls (keeps them inside the viewport) */
input[type="date"].oj-input, input[type="time"].oj-input, input[type="datetime-local"].oj-input {
  -webkit-appearance: none; appearance: none; max-width: 100%;
}
.oj-input:focus, .oj-select:focus, .oj-textarea:focus { outline: none; border-color: var(--oj-aqua); box-shadow: 0 0 0 4px rgba(17,196,212,0.22); }
.oj-input::placeholder, .oj-textarea::placeholder { color: var(--oj-ink-soft); opacity: 0.6; }
[data-theme="ink"] .oj-input::placeholder, [data-theme="ink"] .oj-textarea::placeholder { color: var(--oj-off-soft); opacity: 0.7; }
.oj-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23FF6A3D' stroke-width='2.6'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px;
}
.oj-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.oj-field--full { grid-column: 1 / -1; }

/* ============================================================ FAQ */
.oj-faq { margin-top: 44px; }
.oj-faq-item { border-bottom: 1px solid var(--oj-line); }
[data-theme="ink"] .oj-faq-item { border-color: var(--oj-line-d); }
.oj-faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; padding: 24px 0; color: inherit; font-family: var(--oj-display); font-weight: 800; font-size: clamp(18px, 2vw, 23px); letter-spacing: -0.02em; }
.oj-faq-toggle { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--oj-coral); display: inline-flex; align-items: center; justify-content: center; flex: none; color: var(--oj-coral); transition: all 150ms; }
.oj-faq-toggle svg { width: 16px; height: 16px; stroke-width: 3; transition: transform 220ms; }
.oj-faq-item.is-open .oj-faq-toggle { background: var(--oj-coral); color: #fff; }
.oj-faq-item.is-open .oj-faq-toggle svg { transform: rotate(45deg); stroke: #fff; }
.oj-faq-a { max-height: 0; overflow: hidden; transition: max-height 280ms cubic-bezier(.2,.8,.2,1); }
@media (prefers-reduced-motion: reduce) { .oj-faq-a { transition: none; } }
.oj-faq-a-inner { padding: 0 0 26px; max-width: 74ch; color: var(--oj-ink-soft); font-size: 16px; line-height: 1.66; }
[data-theme="ink"] .oj-faq-a-inner { color: var(--oj-off-soft); }

/* ============================================================ PRICING */
.oj-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; align-items: stretch; }
.oj-price { position: relative; display: flex; flex-direction: column; background: var(--oj-white); color: var(--oj-ink); border-radius: var(--oj-r-lg); padding: 34px 30px; box-shadow: var(--oj-sh-2); transition: transform 180ms; }
.oj-price:hover { transform: translateY(-7px); }
@media (prefers-reduced-motion: reduce) { .oj-price:hover { transform: none; } }
.oj-price--pop { outline: 3px solid var(--oj-coral); }
.oj-price-ribbon { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--oj-coral); color: #fff; padding: 8px 18px; border-radius: var(--oj-pill); font-family: var(--oj-display); font-weight: 700; font-size: 12.5px; white-space: nowrap; box-shadow: var(--oj-sh-coral); }
.oj-price .tier { font-family: var(--oj-display); font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--oj-aqua-deep); }
.oj-price h3 { font-family: var(--oj-display); font-weight: 800; font-size: 28px; margin: 8px 0 18px; letter-spacing: -0.02em; }
.oj-price-amt { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.oj-price-amt .now { font-family: var(--oj-display); font-weight: 800; font-size: 56px; color: var(--oj-coral); line-height: 0.9; letter-spacing: -0.03em; }
.oj-price-amt .was { font-size: 22px; }
.oj-price-meta { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.oj-chip { font-family: var(--oj-display); font-weight: 600; font-size: 12.5px; color: var(--oj-ink-soft); background: rgba(12,53,61,0.06); border-radius: var(--oj-pill); padding: 6px 13px; }
.oj-price-incl { list-style: none; margin: 24px 0; padding: 22px 0 0; border-top: 1px solid var(--oj-line); display: flex; flex-direction: column; gap: 13px; flex: 1; }
.oj-price-incl li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; font-size: 15px; color: var(--oj-ink-soft); }
.oj-price-incl svg { width: 18px; height: 18px; stroke: var(--oj-aqua-deep); stroke-width: 2.8; margin-top: 2px; }
.oj-price .oj-btn { margin-top: auto; }

.oj-addons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 26px; }
.oj-addon { background: var(--oj-white); border-radius: var(--oj-r-md); padding: 22px; border-left: 5px solid var(--oj-coral); box-shadow: var(--oj-sh-1); }
.oj-addon:nth-child(2) { border-left-color: var(--oj-aqua); }
.oj-addon:nth-child(3) { border-left-color: var(--oj-yellow); }
.oj-addon:nth-child(4) { border-left-color: var(--oj-pink); }
.oj-addon .amt { font-family: var(--oj-display); font-weight: 800; font-size: 26px; color: var(--oj-ink); }
.oj-addon .desc { margin-top: 6px; font-size: 14px; color: var(--oj-ink-soft); }

.oj-regions { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 38px; }
.oj-region { background: var(--oj-white); color: var(--oj-ink); border-radius: var(--oj-r-lg); padding: 30px; box-shadow: var(--oj-sh-1); }
.oj-region .hd { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.oj-region h3 { font-family: var(--oj-display); font-weight: 800; font-size: 23px; margin: 0; }
.oj-region .fee { font-family: var(--oj-display); font-weight: 700; font-size: 14px; color: var(--oj-coral); background: rgba(255,106,61,0.12); padding: 5px 12px; border-radius: var(--oj-pill); }
.oj-region p { margin: 0; font-size: 14.5px; color: var(--oj-ink-soft); line-height: 1.6; }

/* ============================================================ TIMELINE */
.oj-timeline { margin-top: 44px; }
.oj-tl-item { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 26px 0; border-top: 1px solid var(--oj-line); }
[data-theme="ink"] .oj-tl-item { border-color: var(--oj-line-d); }
.oj-tl-item:last-child { border-bottom: 1px solid var(--oj-line); }
[data-theme="ink"] .oj-tl-item:last-child { border-color: var(--oj-line-d); }
.oj-tl-year { font-family: var(--oj-script); font-weight: 700; font-size: 48px; color: var(--oj-coral); line-height: 0.8; }
.oj-tl-body h4 { font-family: var(--oj-display); font-weight: 800; font-size: 19px; margin: 0 0 8px; }
.oj-tl-body p { margin: 0; color: var(--oj-ink-soft); font-size: 15px; }
[data-theme="ink"] .oj-tl-body p { color: var(--oj-off-soft); }

/* ============================================================ PAGE HERO */
.oj-pagehero { padding: clamp(52px, 7vw, 88px) 0 clamp(36px, 5vw, 56px); }
.oj-pagehero .oj-display { margin: 16px 0 0; }
.oj-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1000px) {
  .oj-cards, .oj-reviews, .oj-pricing { grid-template-columns: 1fr; }
  .oj-steps { grid-template-columns: repeat(2, 1fr); }
  .oj-kpis { grid-template-columns: repeat(2, 1fr); }
  .oj-addons { grid-template-columns: repeat(2, 1fr); }
  .oj-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .oj-split { grid-template-columns: 1fr; }
  .oj-split--rev .oj-split-media { order: 0; }
  .oj-regions { grid-template-columns: 1fr; }
  .oj-form-grid { grid-template-columns: 1fr; }
  .oj-tl-item { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 540px) {
  .oj-steps, .oj-kpis, .oj-addons, .oj-footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   BOOKING FLOW
   ============================================================ */
.ojb { --ojb-line: var(--oj-line); }
.ojb-grid { display: grid; grid-template-columns: 1fr 320px; gap: clamp(24px, 3vw, 44px); align-items: start; min-width: 0; }
.ojb-main { min-width: 0; }
.ojb-head .oj-eyebrow { margin-bottom: 10px; }
.ojb-head h2 { margin: 0 0 6px; }

/* progress */
.ojb-progress { display: flex; align-items: center; gap: 8px; margin-bottom: 30px; }
.ojb-step { display: flex; align-items: center; gap: 10px; }
.ojb-dot {
  width: 32px; height: 32px; border-radius: 50%; flex: none; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--oj-display); font-weight: 700; font-size: 15px;
  background: rgba(20,50,79,0.08); color: var(--oj-ink-soft); border: 2px solid transparent;
}
.ojb-dot svg { width: 16px; height: 16px; stroke-width: 3; }
.ojb-step.active .ojb-dot { background: var(--oj-coral); color: #fff; }
.ojb-step.done .ojb-dot { background: var(--oj-aqua); color: var(--oj-ink); }
.ojb-steplabel { font-family: var(--oj-display); font-weight: 600; font-size: 14px; color: var(--oj-ink-soft); }
.ojb-step.active .ojb-steplabel { color: var(--oj-ink); }
.ojb-bar { flex: 1; height: 2px; background: var(--ojb-line); min-width: 14px; }
@media (max-width: 560px) { .ojb-steplabel { display: none; } .ojb-bar { min-width: 8px; } }

/* package cards */
.ojb-pkgs { display: grid; grid-template-columns: 1fr; gap: 14px; }
.ojb-pkg {
  position: relative; text-align: left; cursor: pointer; background: var(--oj-white);
  border: 2px solid var(--oj-line); border-radius: var(--oj-r-lg); padding: 22px 56px 22px 24px;
  display: grid; grid-template-columns: 1fr auto; grid-template-areas: "tier price" "name price" "meta price" "dep price";
  gap: 2px 16px; align-items: center; transition: border-color 150ms, box-shadow 150ms, transform 120ms;
}
.ojb-pkg:hover { border-color: var(--oj-aqua); transform: translateY(-2px); }
.ojb-pkg.is-sel { border-color: var(--oj-coral); box-shadow: 0 0 0 4px rgba(242,85,47,0.14); }
.ojb-pkg--pop { border-color: rgba(242,85,47,0.4); }
.ojb-ribbon { position: absolute; top: -11px; left: 24px; background: var(--oj-coral); color: #fff; font-family: var(--oj-display); font-weight: 700; font-size: 11px; padding: 4px 12px; border-radius: var(--oj-pill); }
.ojb-pkg-tier { grid-area: tier; font-family: var(--oj-display); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--oj-aqua-deep); }
.ojb-pkg-name { grid-area: name; font-family: var(--oj-display); font-weight: 800; font-size: 22px; color: var(--oj-ink); letter-spacing: -0.01em; }
.ojb-pkg-price { grid-area: price; font-family: var(--oj-display); font-weight: 800; font-size: 30px; color: var(--oj-coral); letter-spacing: -0.02em; text-align: right; line-height: 1; }
.ojb-pkg-meta { grid-area: meta; display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--oj-ink-soft); margin-top: 4px; }
.ojb-pkg-dep { grid-area: dep; font-size: 13px; color: var(--oj-ink-soft); margin-top: 6px; }
.ojb-dotsep { width: 4px; height: 4px; border-radius: 50%; background: var(--oj-ink-soft); display: inline-block; opacity: 0.5; }
.ojb-pick { position: absolute; top: 50%; right: 20px; transform: translateY(-50%); width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--oj-line); display: inline-flex; align-items: center; justify-content: center; color: transparent; transition: all 150ms; }
.ojb-pick svg { width: 14px; height: 14px; stroke-width: 3; }
.ojb-pkg.is-sel .ojb-pick, .ojb-region.is-sel .ojb-pick, .ojb-addon-opt.is-sel .ojb-pick { background: var(--oj-coral); border-color: var(--oj-coral); color: #fff; }

/* add-on toggles */
.ojb-addon-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ojb-addon-opt { position: relative; text-align: left; cursor: pointer; background: var(--oj-white); border: 2px solid var(--oj-line); border-radius: var(--oj-r-md); padding: 16px 46px 16px 18px; transition: border-color 150ms, transform 120ms, box-shadow 150ms; }
.ojb-addon-opt:hover { border-color: var(--oj-aqua); transform: translateY(-2px); }
.ojb-addon-opt.is-sel { border-color: var(--oj-coral); box-shadow: 0 0 0 4px rgba(242,85,47,0.12); }
.ojb-addon-amt { display: block; font-family: var(--oj-display); font-weight: 800; font-size: 19px; color: var(--oj-coral); line-height: 1; }
.ojb-addon-name { display: block; font-size: 14px; color: var(--oj-ink-soft); margin-top: 4px; }
.ojb-addon-opt .ojb-pick { top: 50%; right: 14px; transform: translateY(-50%); }
@media (max-width: 480px) { .ojb-addon-opts { grid-template-columns: 1fr; } }

/* region cards */
.ojb-sublabel { font-family: var(--oj-display); font-weight: 600; font-size: 14px; color: var(--oj-ink); margin: 26px 0 12px; }
.ojb-regions { display: grid; grid-template-columns: 1fr; gap: 12px; }
.ojb-region { position: relative; text-align: left; cursor: pointer; background: var(--oj-white); border: 2px solid var(--oj-line); border-radius: var(--oj-r-md); padding: 18px 52px 18px 22px; display: flex; flex-direction: column; gap: 3px; transition: border-color 150ms, transform 120ms; }
.ojb-region:hover { border-color: var(--oj-aqua); transform: translateY(-2px); }
.ojb-region.is-sel { border-color: var(--oj-coral); box-shadow: 0 0 0 4px rgba(242,85,47,0.14); }
.ojb-region-name { font-family: var(--oj-display); font-weight: 800; font-size: 18px; color: var(--oj-ink); }
.ojb-region-fee { font-size: 14px; color: var(--oj-ink-soft); }

.ojb-field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.ojb-field label { font-family: var(--oj-display); font-weight: 600; font-size: 13.5px; color: var(--oj-ink); }
.ojb-opt { font-weight: 400; color: var(--oj-ink-soft); }
.ojb-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ojb-full { grid-column: 1 / -1; }
.ojb-note { margin: 16px 0 0; font-size: 13.5px; color: var(--oj-ink-soft); background: rgba(41,171,226,0.1); border-radius: var(--oj-r-sm); padding: 12px 14px; }
.ojb-err { margin: 16px 0 0; color: var(--oj-coral-deep); font-weight: 600; font-size: 14px; }

.ojb-nav { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 30px; }

/* summary rail */
.ojb-summary { background: var(--oj-ink); color: var(--oj-off); border-radius: var(--oj-r-lg); padding: 26px 24px; position: sticky; top: 90px; }
.ojb-summary h3 { font-family: var(--oj-display); font-weight: 800; font-size: 18px; margin: 0 0 16px; color: #fff; }
.ojb-srow { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-top: 1px solid var(--oj-line-d); font-size: 14px; }
.ojb-srow:first-of-type { border-top: 0; }
.ojb-srow span { color: var(--oj-off-soft); flex: none; }
.ojb-srow strong { color: #fff; font-weight: 700; text-align: right; }
.ojb-summary-note { margin: 16px 0 0; font-size: 12.5px; color: var(--oj-off-soft); line-height: 1.5; }

/* confirmation */
.ojb-confirm { max-width: 600px; margin: 0 auto; text-align: center; }
.ojb-confirm .oj-eyebrow { justify-content: center; }
.ojb-confirm-badge { width: 76px; height: 76px; border-radius: 50%; background: var(--oj-lime, var(--oj-aqua)); background: var(--oj-aqua); color: var(--oj-ink); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.ojb-confirm-badge svg { width: 36px; height: 36px; stroke-width: 2; }
.ojb-confirm h2 { margin: 6px 0 0; }
.ojb-confirm-lede { font-size: 17px; color: var(--oj-ink-soft); max-width: 46ch; margin: 16px auto 0; line-height: 1.6; }
.ojb-receipt { text-align: left; background: var(--oj-cream-card); border-radius: var(--oj-r-lg); padding: 24px 26px; margin: 28px 0 0; box-shadow: var(--oj-sh-1); }
.ojb-receipt .ojb-srow span { color: var(--oj-ink-soft); }
.ojb-receipt .ojb-srow strong { color: var(--oj-ink); }
.ojb-receipt .ojb-srow { border-top-color: var(--oj-line); }
.ojb-confirm-sub { margin: 22px 0 0; font-size: 14.5px; color: var(--oj-ink-soft); }
.ojb-confirm-sub a { color: var(--oj-aqua-deep); font-weight: 700; }

@media (max-width: 860px) {
  .ojb-grid { grid-template-columns: 1fr; }
  .ojb-summary { position: static; order: -1; }
}
@media (max-width: 480px) {
  .ojb-form-grid { grid-template-columns: 1fr; }
  .ojb-pkg { padding-right: 48px; }
  .ojb-pkg-price { font-size: 24px; }
}

/* ============================================================
   MOTION & FX
   Everything here is gated to motion-OK users: the .js-anim class
   is only added (by an inline head script) when
   prefers-reduced-motion: no-preference. So reduced-motion users
   get the full static site with zero animation.
   ============================================================ */

/* --- scroll reveal: only off-screen elements get .fx-pre (added by JS),
   so nothing in view is ever hidden and content can never get stuck. --- */
.js-anim .fx-pre { opacity: 0; transform: translateY(28px); }
.js-anim .fx-pre.fx-in {
  opacity: 1; transform: none;
  transition: opacity .62s cubic-bezier(.2,.8,.2,1), transform .62s cubic-bezier(.2,.8,.2,1);
}

/* --- keyframe motion (only meaningful under no-preference) --- */
@media (prefers-reduced-motion: no-preference) {
  .oj-sticker { animation: oj-wobble 4.5s ease-in-out infinite; }
  @keyframes oj-wobble {
    0%, 100% { transform: rotate(-9deg); }
    50% { transform: rotate(-3deg) translateY(-4px); }
  }
  .oj-bubble { animation: oj-rise linear infinite; }
  @keyframes oj-rise {
    0% { transform: translateY(0) scale(0.8); opacity: 0; }
    12% { opacity: 0.55; }
    100% { transform: translateY(-360px) scale(1.1); opacity: 0; }
  }
  .oj-marquee-track { animation: oj-marq 34s linear infinite; }
  @keyframes oj-marq { to { transform: translateX(-50%); } }
}

/* --- floating bubbles in the hero --- */
.oj-bubbles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.oj-bubble { position: absolute; bottom: -40px; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, rgba(255,255,255,0.8), rgba(255,255,255,0.12));
  border: 1px solid rgba(255,255,255,0.35); }
@media (prefers-reduced-motion: reduce) { .oj-bubbles { display: none; } }

/* --- nav elevates on scroll --- */
.oj-nav { transition: box-shadow .25s ease, background .25s ease; }
.oj-nav.is-scrolled { box-shadow: 0 6px 26px -12px rgba(12,53,61,0.3); background: rgba(255,255,255,0.97); }

/* --- logo hover --- */
.oj-brand .oj-logo { transition: transform .25s cubic-bezier(.2,.9,.3,1); }
.oj-brand:hover .oj-logo { transform: rotate(-3deg) scale(1.04); }

/* --- primary button shine sweep --- */
.oj-btn { position: relative; overflow: hidden; }
.oj-btn::after { content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-18deg); pointer-events: none; }
@media (prefers-reduced-motion: no-preference) {
  .oj-btn:hover::after { left: 130%; transition: left .6s ease; }
}

/* --- card image zoom on hover --- */
.oj-card .oj-media-img { transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.oj-card:hover .oj-media-img { transform: scale(1.07); }
@media (prefers-reduced-motion: reduce) { .oj-card:hover .oj-media-img { transform: none; } }

/* --- retro marquee ticker --- */
.oj-marquee { background: var(--oj-coral); color: #fff; overflow: hidden;
  padding: 16px 0; border-top: 3px solid var(--oj-ink); border-bottom: 3px solid var(--oj-ink); }
.oj-marquee-track { display: flex; width: max-content; }
.oj-marquee:hover .oj-marquee-track { animation-play-state: paused; }
.oj-marq-group { display: flex; align-items: center; flex: none; }
.oj-marq-item { display: inline-flex; align-items: center; gap: 22px; padding: 0 22px;
  font-family: var(--oj-display); font-weight: 800; font-size: clamp(17px, 2.2vw, 28px);
  letter-spacing: 0.01em; text-transform: uppercase; white-space: nowrap; }
.oj-marq-star { color: var(--oj-yellow); flex: none; width: 22px; height: 22px; }

/* ============================================================
   ENTRANCE / LOADING SCREEN  (home only, once per session;
   only shown when the head script adds .oj-intro-active, which
   it never does under reduced-motion / no-JS / repeat visits)
   ============================================================ */
#oj-loader { display: none; }
.oj-intro-active { overflow: hidden; }
.oj-intro-active #oj-loader {
  display: grid; place-items: center;
  position: fixed; inset: 0; z-index: 10000;
  background: linear-gradient(165deg, #0E3A44 0%, #0A2E37 55%, #07232B 100%);
  transition: opacity .8s ease, visibility .8s linear;
  will-change: opacity;
}
#oj-loader.is-out {
  opacity: 0; visibility: hidden; pointer-events: none;
}
#oj-loader.is-out .oj-loader-inner {
  transform: scale(1.04); opacity: 0;
  transition: opacity .5s ease, transform .8s cubic-bezier(.4,0,.2,1);
}
#oj-loader.is-out .oj-loader-canvas {
  transform: scale(1.06); transition: transform .8s cubic-bezier(.4,0,.2,1);
}
.oj-loader-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; transform-origin: center; }
.oj-loader-inner {
  position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 20px; text-align: center; padding: 24px;
  animation: oj-loader-pop 1s cubic-bezier(.2,.8,.2,1);
}
.oj-loader-logo { width: min(80vw, 480px); height: auto; filter: drop-shadow(0 10px 34px rgba(0,0,0,0.45)); }
.oj-loader-tag {
  font-family: var(--oj-display); font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  font-size: 13px; color: rgba(255,255,255,0.82); margin: 0;
}
.oj-loader-hint {
  font-family: var(--oj-body); font-size: 13px; letter-spacing: 0.02em; color: rgba(255,255,255,0.7);
  margin: 6px 0 0; animation: oj-loader-pulse 1.8s ease-in-out infinite;
}
@keyframes oj-loader-pop { from { transform: translateY(20px) scale(.95); } to { transform: none; } }
@keyframes oj-loader-pulse { 0%,100% { opacity: .5; } 50% { opacity: .95; } }
