/* ============================================================
   Journey to Enjoy — redesign draft
   Palette derived from the j2e logo (twilight navy + luminous gold)
   ============================================================ */

:root {
  /* Brand — pulled from the logo's gradients */
  --navy-900: #10162e;
  --navy-800: #1d2545;
  --navy-700: #2a3358;
  --navy-600: #4d5575;
  --gold:      #d4af37;   /* shiny metallic gold */
  --gold-soft: #e8c25a;   /* luminous highlight */
  --gold-glint:#f9eaa8;   /* pale shimmer */
  --bronze:    #b8891b;   /* gold for use on light backgrounds — matches the dark-bg gold, still legible */
  --ivory:     #fbf8f1;
  --ivory-dim: #efe9da;
  --paper:     #f4efe4;

  /* Roles */
  --bg: var(--navy-800);
  --ink-on-dark: #ece8df;
  --ink-on-light: #20263f;
  --muted-on-dark: #aab0c4;
  --muted-on-light: #5b6072;

  /* Type — matching journeytoenjoy.com (Futura PT, Quicksand fallback) */
  --display: "Futura PT", "Google Sans", "Quicksand", system-ui, -apple-system, sans-serif;
  --body: "Futura PT", "Google Sans", "Quicksand", system-ui, -apple-system, sans-serif;
  --mono: "Futura PT", "Quicksand", system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

/* Brand uses no italics anywhere */
em, i, cite, address { font-style: normal; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-on-dark);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
}

/* ---------- Shared layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }
.section--light { background: var(--ivory); color: var(--ink-on-light); }
.section--navy  { background: var(--navy-800); color: var(--ink-on-dark); }
.section--deep  { background: var(--navy-900); color: var(--ink-on-dark); }

.eyebrow {
  font-family: var(--mono);
  font-size: 19.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.section--light .eyebrow { color: var(--bronze); }

.section-title {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  max-width: 16ch;
}
.section--navy .section-title em,
.section--deep .section-title em { color: var(--gold-soft); font-style: normal; }
.section--light .section-title em { color: var(--bronze); font-style: normal; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 60ch;
  color: var(--muted-on-dark);
  margin-top: 22px;
}
.section--light .lead { color: var(--muted-on-light); }

/* ---------- Buttons ---------- */
.btn {
  --bw: 1px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: var(--bw) solid transparent;
  transition: transform .35s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: var(--gold);
  color: #2a1f06;
  box-shadow: 0 10px 30px -12px rgba(212,175,55,0.75);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -14px rgba(201,162,75,0.85); }
.btn-ghost {
  border-color: rgba(216,184,118,0.55);
  color: var(--gold-soft);
  background: transparent;
}
.btn-ghost:hover { background: rgba(201,162,75,0.12); transform: translateY(-3px); }
.section--light .btn-ghost { color: var(--bronze); border-color: rgba(184,137,27,0.55); }
.btn-arrow { transition: transform .3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  background: var(--ivory);
  color: var(--ink-on-light);
  transition: padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid var(--ivory-dim);
}
.nav.scrolled {
  padding-block: 10px;
  box-shadow: 0 6px 24px rgba(16,22,46,0.10);
  border-bottom-color: rgba(201,162,75,0.30);
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--ink-on-light); }
.brand img { width: 58px; height: 58px; border-radius: 13px; }
.nav.scrolled .brand img { width: 50px; height: 50px; }
.brand-name {
  font-family: var(--display);
  font-size: 1.32rem;
  letter-spacing: 0.005em;
  line-height: 1;
}
.brand-name span { color: var(--bronze); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  text-decoration: none;
  color: var(--ink-on-light);
  font-size: 1.14rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0.82;
  position: relative;
  transition: opacity .25s, color .25s;
}
.nav-links a.navcta { opacity: 1; }
.nav-links a.nav-strong { font-weight: 600; }
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:not(.btn):hover { opacity: 1; color: var(--bronze); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-links .btn { padding: 11px 20px; font-size: 1.08rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-800); transition: transform .3s var(--ease), opacity .3s; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 18%, rgba(77,85,117,0.55), transparent 55%),
    radial-gradient(140% 120% at 12% 110%, rgba(201,162,75,0.16), transparent 50%),
    linear-gradient(180deg, #161d3b 0%, var(--navy-800) 45%, var(--navy-900) 100%);
}
/* faint starfield */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.4px 1.4px at 20% 30%, rgba(244,236,196,0.7), transparent),
    radial-gradient(1.2px 1.2px at 70% 22%, rgba(244,236,196,0.5), transparent),
    radial-gradient(1px 1px at 42% 12%, rgba(255,255,255,0.45), transparent),
    radial-gradient(1.6px 1.6px at 85% 40%, rgba(244,236,196,0.55), transparent),
    radial-gradient(1px 1px at 55% 35%, rgba(255,255,255,0.4), transparent);
  opacity: 0.8;
  pointer-events: none;
}

/* the signature flight path */
.flightpath { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.flightpath .trail {
  fill: none;
  stroke: url(#goldgrad);
  stroke-width: 1.5;
  stroke-dasharray: 6 9;
  stroke-dashoffset: 1400;
  opacity: 0.85;
  animation: draw 3.4s var(--ease) .3s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.flightpath .plane {
  offset-path: path("M -60 470 C 320 300, 760 250, 1100 360 S 1520 470, 1620 300");
  offset-rotate: auto;
  fill: var(--gold-glint);
  animation: fly 3.7s var(--ease) .2s forwards;
  opacity: 0;
}
@keyframes fly {
  0%   { offset-distance: 0%;   opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.hero-inner { position: relative; z-index: 3; width: 100%; }
.hero-content { max-width: 760px; }
.hero .eyebrow { margin-bottom: 26px; }
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--gold-soft); }
.hero p {
  font-size: clamp(1.1rem, 2.3vw, 1.45rem);
  color: var(--muted-on-dark);
  max-width: 48ch;
  margin: 28px 0 38px;
  font-weight: 400;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.trust {
  position: absolute;
  left: var(--gutter); right: var(--gutter); bottom: 34px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: clamp(20px, 5vw, 54px);
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid rgba(201,162,75,0.22);
}
.trust span {
  font-family: var(--mono);
  font-size: 17.16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}
/* force the (dark) partner marks to clean white so they read on navy */
.trust img { height: 26px; opacity: 0.9; filter: brightness(0) invert(1); transition: opacity .25s; }
.trust img:hover { opacity: 1; }

/* ============================================================
   MANIFESTO / INTRO
   ============================================================ */
.manifesto .big {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4.2vw, 2.9rem);
  line-height: 1.22;
  max-width: 22ch;
  font-weight: 400;
}
.manifesto .big b { color: var(--bronze); font-weight: 400; font-style: normal; }
.manifesto-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(138,109,52,0.22);
  border: 1px solid rgba(138,109,52,0.22);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat { background: var(--ivory); padding: 30px 26px; }
.stat .num {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--bronze);
}
.stat .label { font-size: 1.28rem; color: var(--muted-on-light); margin-top: 4px; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-card {
  background: linear-gradient(180deg, rgba(77,85,117,0.18), rgba(77,85,117,0.05));
  border: 1px solid rgba(201,162,75,0.18);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(201,162,75,0.5); background: linear-gradient(180deg, rgba(77,85,117,0.3), rgba(77,85,117,0.08)); }
.why-card .ico { width: 34px; height: 34px; color: var(--gold); margin-bottom: 18px; }
.why-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--ivory); }
.why-card p { color: var(--muted-on-dark); font-size: 0.98rem; margin: 0; }

/* ============================================================
   PROCESS  (the journey, I–V)
   ============================================================ */
.process-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.process-list { margin-top: 30px; border-top: 1px solid rgba(138,109,52,0.25); }
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(16px, 4vw, 50px);
  padding: 34px 0;
  border-bottom: 1px solid rgba(138,109,52,0.25);
  align-items: baseline;
}
.step .rn {
  font-family: var(--display);
  font-style: normal;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--gold);
}
.section--light .step .rn { color: var(--bronze); }
.step h3 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 12px; }
.step p { margin: 0; max-width: 62ch; color: var(--muted-on-light); }
.step .label {
  font-family: var(--mono);
  font-size: 17.16px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bronze); display: block; margin-bottom: 8px;
}

/* ============================================================
   EXPERIENCES
   ============================================================ */
.exp-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.exp {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: var(--ivory);
  isolation: isolate;
}
.exp::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(16,22,46,0.05) 30%, rgba(16,22,46,0.86) 100%);
  transition: background .4s var(--ease);
}
.exp img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  transition: transform .8s var(--ease);
}
.exp:hover img { transform: scale(1.07); }
.exp:hover::after { background: linear-gradient(180deg, rgba(29,37,69,0.2) 10%, rgba(16,22,46,0.92) 100%); }
.exp .exp-body { position: relative; z-index: 2; padding: 24px; }
.exp h3 { font-size: 1.5rem; }
.exp .exp-sub { font-family: var(--mono); font-size: 17.16px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 6px; }
.exp-tall { grid-column: span 3; grid-row: span 2; }
.exp-wide { grid-column: span 3; }
.exp-third { grid-column: span 2; }

/* dual-destination card (Hawaii & Alaska) — soft diagonal blend of two photos */
.exp-split img.top {
  -webkit-mask-image: linear-gradient(135deg, #000 30%, rgba(0,0,0,0) 66%);
          mask-image: linear-gradient(135deg, #000 30%, rgba(0,0,0,0) 66%);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; }
.stars { color: var(--gold); letter-spacing: 4px; font-size: 1.1rem; }
.review-grid {
  margin-top: 50px;
  columns: 3 280px;
  column-gap: 20px;
}
.review {
  break-inside: avoid;
  background: #fff;
  border: 1px solid var(--ivory-dim);
  border-radius: var(--radius);
  padding: 26px 26px 22px;
  margin-bottom: 20px;
  box-shadow: 0 18px 40px -28px rgba(29,37,69,0.4);
}
.review p { margin: 0 0 16px; font-size: 1rem; color: var(--ink-on-light); }
.review .mark { font-family: var(--display); font-size: 2.4rem; color: var(--gold); line-height: 0.4; }
.review .by { font-family: var(--mono); font-size: 18.72px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bronze); }

/* ============================================================
   ADVISOR / ABOUT
   ============================================================ */
.advisor { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 6vw, 80px); align-items: center; }
.advisor-photo { position: relative; }
.advisor-photo img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid rgba(201,162,75,0.3);
}
.advisor-photo .badge {
  position: absolute; bottom: -18px; right: -10px;
  background: var(--navy-900);
  border: 1px solid rgba(201,162,75,0.4);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--mono); font-size: 17.16px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-soft);
}
.advisor h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.advisor .sig { font-family: var(--display); font-style: normal; color: var(--gold-soft); font-size: 1.4rem; margin-top: 24px; }
.advisor .creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.cred-chip {
  font-family: var(--mono); font-size: 17.16px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-on-dark);
  border: 1px solid rgba(201,162,75,0.3);
  border-radius: 999px; padding: 8px 14px;
}

/* ============================================================
   INQUIRY / CTA
   ============================================================ */
.cta { text-align: center; }
.cta h2 { font-size: clamp(2.2rem, 6vw, 4rem); max-width: 18ch; margin-inline: auto; }
.cta h2 em { font-style: normal; color: var(--gold-soft); }
.cta .lead { margin-inline: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.cta-meta { margin-top: 40px; display: flex; gap: clamp(18px,4vw,44px); justify-content: center; flex-wrap: wrap; }
.cta-meta a { color: var(--muted-on-dark); text-decoration: none; font-family: var(--mono); font-size: 19.5px; letter-spacing: 0.08em; display: inline-flex; gap: 8px; align-items: center; transition: color .25s; }
.cta-meta a:hover { color: var(--gold-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); padding-block: 64px 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer .brand { margin-bottom: 16px; color: var(--ivory); }
.footer .brand-name span { color: var(--gold-soft); }
.footer p { color: var(--muted-on-dark); font-size: 0.95rem; max-width: 36ch; }
.footer h4 { font-family: var(--mono); font-size: 17.16px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--muted-on-dark); text-decoration: none; font-size: 0.95rem; transition: color .25s; }
.footer ul a:hover { color: var(--gold-soft); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(201,162,75,0.18);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 17.94px; letter-spacing: 0.06em; color: var(--muted-on-dark);
}
.footer-bottom a { color: var(--gold-soft); text-decoration: none; transition: color .25s; }
.footer-bottom a:hover { color: var(--gold-glint); }

/* ---------- Legal / prose pages ---------- */
.legal { max-width: 760px; }
.legal .updated { font-family: var(--mono); font-size: 17.16px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bronze); margin: 0 0 28px; }
.legal h2 { font-family: var(--display); font-size: clamp(1.4rem, 3vw, 1.95rem); margin: 46px 0 12px; color: var(--ink-on-light); }
.legal h3 { font-family: var(--display); font-size: 1.2rem; margin: 24px 0 8px; color: var(--ink-on-light); }
.legal p { color: var(--muted-on-light); margin: 0 0 16px; }
.legal ul { color: var(--muted-on-light); margin: 0 0 18px; padding-left: 22px; }
.legal li { margin-bottom: 9px; }
.legal strong { color: var(--ink-on-light); font-weight: 500; }
.legal a { color: var(--bronze); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--gold); }

/* ============================================================
   Divider with mini flight motif
   ============================================================ */
.divider { display: flex; align-items: center; justify-content: center; gap: 14px; opacity: 0.6; }
.divider svg { color: var(--gold); }
.divider .line { height: 1px; width: clamp(60px, 18vw, 220px); background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .manifesto-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .exp-tall, .exp-wide, .exp-third { grid-column: span 1; grid-row: span 1; }
  .advisor { grid-template-columns: 1fr; }
  .advisor-photo { max-width: 420px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .review-grid { columns: 2 260px; }
}

/* Collapse the (now larger) menu into a drawer before it can crowd */
@media (max-width: 1100px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    background: var(--ivory);
    box-shadow: -18px 0 50px rgba(16,22,46,0.18);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    border-left: 1px solid var(--ivory-dim);
  }
  .nav.open .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 1.38rem; }
  .nav-toggle { display: flex; z-index: 110; }
}

@media (max-width: 720px) {
  body { font-size: 17px; }
  .hero { display: block; padding-block: 120px 56px; min-height: auto; }
  .trust { position: static; margin-top: 44px; gap: 22px 30px; padding-left: var(--gutter); }
  .trust span { flex-basis: 100%; }
  .trust img { height: 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .review-grid { columns: 1; }
  .step { grid-template-columns: 1fr; gap: 6px; }
  .step .rn { font-size: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .flightpath .plane { offset-distance: 88%; opacity: 1; }
  .flightpath .trail { stroke-dashoffset: 0; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============================================================
   CRUISE OFFERS PAGE
   ============================================================ */
.subhero {
  position: relative;
  overflow: hidden;
  padding: clamp(140px, 20vw, 200px) 0 clamp(64px, 9vw, 96px);
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(77,85,117,0.5), transparent 55%),
    linear-gradient(180deg, #161d3b 0%, var(--navy-800) 60%, var(--navy-900) 100%);
}
.subhero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.4px 1.4px at 22% 30%, rgba(244,236,196,0.6), transparent),
    radial-gradient(1.2px 1.2px at 72% 24%, rgba(244,236,196,0.45), transparent),
    radial-gradient(1px 1px at 48% 16%, rgba(255,255,255,0.4), transparent);
  pointer-events: none;
}
.subhero .wrap { position: relative; z-index: 2; }
.subhero h1 { font-size: clamp(2.4rem, 6.5vw, 4.4rem); max-width: 16ch; }
.subhero h1 em { font-style: normal; color: var(--gold-soft); }
.subhero p { color: var(--muted-on-dark); max-width: 56ch; font-size: clamp(1.05rem,2vw,1.25rem); margin-top: 22px; font-weight: 400; }
.subhero .subhero-meta {
  margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center;
}
.subhero .subhero-meta .chip {
  font-family: var(--mono); font-size: 17.16px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-soft); border: 1px solid rgba(201,162,75,0.35); border-radius: 999px; padding: 8px 14px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.offer {
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(77,85,117,0.16), rgba(77,85,117,0.04));
  border: 1px solid rgba(201,162,75,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.offer:hover { transform: translateY(-6px); border-color: rgba(201,162,75,0.55); box-shadow: 0 30px 60px -34px rgba(0,0,0,0.7); }
.offer-media { position: relative; height: 168px; overflow: hidden; }
.offer-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.offer:hover .offer-media img { transform: scale(1.08); }
.offer-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,22,46,0.15), rgba(16,22,46,0.78));
}
.offer-region {
  position: absolute; z-index: 2; left: 16px; bottom: 12px;
  font-family: var(--mono); font-size: 16.38px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-glint);
}
.offer-deal {
  position: absolute; z-index: 2; top: 14px; right: 14px;
  background: linear-gradient(120deg, var(--gold), var(--gold-soft));
  color: #2a1f06; font-weight: 600; font-size: 1.21rem; letter-spacing: 0.01em;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 8px 20px -10px rgba(201,162,75,0.8);
}
/* On a Featured card, drop the deal pill below the "Featured" badge so they don't overlap */
.offer-media:has(.offer-featured) .offer-deal { top: 52px; right: auto; left: 14px; }
.offer-body { padding: 22px 22px 0; display: flex; flex-direction: column; flex: 1; }
.offer-line { font-family: var(--mono); font-size: 17.16px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.offer h3 { font-size: 1.4rem; line-height: 1.1; margin-bottom: 12px; color: var(--ivory); }
.offer p { color: var(--muted-on-dark); font-size: 0.96rem; margin: 0 0 18px; flex: 1; }
.offer-foot {
  border-top: 1px solid rgba(201,162,75,0.18);
  padding: 16px 22px; margin-top: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.offer-valid { font-family: var(--mono); font-size: 16.38px; letter-spacing: 0.08em; color: var(--muted-on-dark); text-transform: uppercase; }
.offer-cta {
  font-weight: 500; font-size: 0.9rem; color: var(--gold-soft); text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
}
.offer-cta .a { transition: transform .3s var(--ease); }
.offer:hover .offer-cta .a { transform: translateX(4px); }

.offers-note {
  margin-top: 40px; text-align: center;
  font-family: var(--mono); font-size: 17.94px; letter-spacing: 0.06em; color: var(--muted-on-dark);
  line-height: 1.7;
}

/* fine print under stats / claims */
.fineprint { margin-top: 16px; font-size: 0.92rem; font-style: normal; color: var(--muted-on-light); }
.section--navy .fineprint, .section--deep .fineprint { color: var(--muted-on-dark); }

/* live-feed status + loading skeletons */
.offers-status {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px;
  font-family: var(--mono); font-size: 17.16px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-on-dark);
}
.offers-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(201,162,75,0.6); }
.offers-status.live .dot { background: #4ad08a; animation: pulse 2s infinite; }
.offers-status.cached .dot { background: var(--gold-soft); }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(74,208,138,0.5);} 70%{box-shadow:0 0 0 7px rgba(74,208,138,0);} 100%{box-shadow:0 0 0 0 rgba(74,208,138,0);} }
.skeleton { background: linear-gradient(180deg, rgba(77,85,117,0.18), rgba(77,85,117,0.05)); border:1px solid rgba(201,162,75,0.12); border-radius: var(--radius); min-height: 360px; position: relative; overflow: hidden; }
.skeleton::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent); transform: translateX(-100%); animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { transform: translateX(100%); } }
.offer-featured { position:absolute; z-index:2; top:14px; left:14px; background: var(--navy-900); color: var(--gold-glint); border:1px solid rgba(201,162,75,0.5); font-family: var(--mono); font-size:14.82px; letter-spacing:0.16em; text-transform:uppercase; padding:5px 10px; border-radius:999px; }

@media (max-width: 960px) { .offers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .offers-grid { grid-template-columns: 1fr; } }

/* ============================================================
   USEFUL LINKS PAGE
   ============================================================ */
.links-group { margin-top: clamp(38px, 5vw, 56px); }
.links-group:first-of-type { margin-top: 8px; }
.links-group > h2 { font-size: clamp(1.4rem, 3.3vw, 2rem); margin-top: 6px; }
.links-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; max-width: 900px; }
.link-row {
  display: flex; align-items: center; gap: 16px;
  padding: 13px 18px; border-radius: 12px; text-decoration: none; color: var(--ink-on-dark);
  background: linear-gradient(180deg, rgba(77,85,117,0.14), rgba(77,85,117,0.04));
  border: 1px solid rgba(201,162,75,0.16);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.link-row:hover { transform: translateX(5px); border-color: rgba(201,162,75,0.5); background: linear-gradient(180deg, rgba(77,85,117,0.26), rgba(77,85,117,0.08)); }
.link-row .lr-ico { width: 36px; height: 36px; border-radius: 8px; flex: none; background: #fff; padding: 5px; object-fit: contain; box-shadow: 0 2px 8px -4px rgba(0,0,0,0.5); }
.link-row .lr-title { font-weight: 500; font-size: 1.02rem; color: var(--ivory); flex: 1; min-width: 0; }
.link-row .lr-host { font-family: var(--mono); font-size: 17.16px; letter-spacing: 0.04em; color: var(--muted-on-dark); white-space: nowrap; }
.link-row .lr-arrow { color: var(--gold); flex: none; transition: transform .3s var(--ease); }
.link-row:hover .lr-arrow { transform: translate(3px,-3px); }
@media (max-width: 560px) { .link-row .lr-host { display: none; } }
