/* ==========================================================================
   TripNord — components.css (design v2)
   Buttons (incl. the AI language), header/nav, media-forward cards, marquee,
   forms, accordion, tabs, callouts, footer, toast.
   ========================================================================== */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.1rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.97); }
.btn .ic { width: 1.15rem; height: 1.15rem; flex: none; }

.btn-red { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn-red:hover { background: var(--red-deep); color: #fff; }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 10px 28px -6px rgba(10, 106, 201, 0.4); }
.btn-blue:hover { background: var(--blue-deep); color: #fff; }
.btn-outline { border-color: var(--line); color: var(--ink); background: var(--card); }
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost-dark { border-color: rgba(242, 240, 230, 0.32); color: var(--text-inverse); background: rgba(255, 255, 255, 0.04); }
.btn-ghost-dark:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 10px 28px -6px rgba(255, 195, 0, 0.5); }
.btn-yellow:hover { background: #EDB500; color: var(--ink); }
.btn-lg { min-height: 3.5rem; padding: 0.9rem 2rem; font-size: 1.08rem; }
.btn-sm { min-height: 2.5rem; padding: 0.4rem 1.1rem; font-size: 0.92rem; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.55; pointer-events: none; }

/* AI action button — the aurora ring. ONLY for AI-powered actions. */
@property --ai-angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
.btn-ai {
  position: relative;
  isolation: isolate;
  background: var(--night);
  color: #fff;
  border: none;
  overflow: visible;
}
.btn-ai::before {
  content: "";
  position: absolute; inset: -2.5px;
  border-radius: inherit;
  background: conic-gradient(from var(--ai-angle),
    var(--ai-a), var(--ai-b), var(--ai-c), var(--ai-d), var(--ai-a));
  z-index: -2;
  animation: ai-spin 3.5s linear infinite;
}
.btn-ai::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, #0B2233, var(--night) 55%);
  z-index: -1;
}
.btn-ai:hover { box-shadow: var(--ai-glow); color: #fff; }
.btn-ai .ic { color: var(--ai-a); }
@keyframes ai-spin { to { --ai-angle: 360deg; } }
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .btn-ai::before { background: var(--ai-gradient); }
}

/* AI badge chip — marks anything generated/powered by Lief AI */
.ai-chip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.28rem 0.7rem;
  border-radius: var(--r-full);
  background: var(--ai-gradient);
  color: #04121D;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap;
}
.ai-chip .ic { width: 0.85rem; height: 0.85rem; stroke-width: 2.4; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-display); font-weight: 700;
}
.link-arrow .ic { width: 1.05rem; height: 1.05rem; transition: transform var(--t-fast); }
.link-arrow:hover .ic { transform: translateX(4px); }

/* ---------- Icons ---------- */
.ic { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ic-lg { width: 1.6rem; height: 1.6rem; }

.icon-tile {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.1rem; height: 3.1rem; border-radius: var(--r-md); flex: none;
  background: #E4EEF8; color: var(--blue-deep);
}
.icon-tile.tint-red { background: var(--red-100); color: var(--red); }
.icon-tile.tint-yellow { background: var(--yellow-100); color: #7A5E00; }
.icon-tile.tint-teal { background: #D8F3EF; color: #0B6E63; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t-med), border-color var(--t-med), background var(--t-med);
}
/* Blur lives on a pseudo-element: backdrop-filter on the header itself would
   make it the containing block for the fixed mobile drawer (breaking layout). */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header.scrolled { border-color: var(--line-soft); box-shadow: 0 6px 30px rgba(20, 40, 60, 0.08); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 1.35rem; width: auto; }
/* The icon's static rainbow ring was removed from the asset; the ring is now
   the animated theme (AI) gradient — same language as .btn-ai. */
.brand .brand-icon {
  height: 2.4rem; width: 2.4rem; margin-right: 0.6rem;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from var(--ai-angle),
    var(--ai-a), var(--ai-b), var(--ai-c), var(--ai-d), var(--ai-a));
  animation: ai-spin 3.5s linear infinite;
}
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .brand .brand-icon { background: var(--ai-gradient); }
}

/* Icon-only header button (My account) */
.icon-btn {
  display: inline-grid; place-items: center;
  width: 2.7rem; height: 2.7rem; border-radius: 50%;
  border: 1.5px solid var(--line); color: var(--ink);
  transition: all var(--t-fast);
}
.icon-btn:hover { border-color: var(--ai-c); color: var(--ai-c); text-decoration: none; transform: translateY(-1px); }

.main-nav { margin-left: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a.nav-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.55rem 0.9rem; border-radius: var(--r-full);
  color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 0.98rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.main-nav a.nav-link:hover { background: #EDE9DB; color: var(--ink); text-decoration: none; }
.main-nav li.active > a.nav-link { background: var(--ink); color: var(--paper); }
.main-nav .chev { width: 0.85rem; height: 0.85rem; transition: transform var(--t-fast); }

.has-sub { position: relative; }
.has-sub .sub {
  position: absolute; top: calc(100% + 0.6rem); left: 50%;
  translate: -50% 0;
  min-width: 15rem;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  display: grid; gap: 0.1rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
}
.has-sub:hover .sub, .has-sub:focus-within .sub, .has-sub.open .sub {
  opacity: 1; visibility: visible; transform: none;
}
.has-sub:hover .chev, .has-sub.open .chev { transform: rotate(180deg); }
.sub a {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.55rem 0.75rem; border-radius: var(--r-sm);
  color: var(--ink); font-weight: 600; font-size: 0.95rem;
}
.sub a:hover { background: var(--paper-deep); text-decoration: none; }
.sub .sub-all { border-top: 1px solid var(--line-soft); margin-top: 0.3rem; padding-top: 0.55rem; color: var(--blue); }

.header-cta { display: flex; align-items: center; gap: 0.8rem; margin-left: 0.5rem; }
.header-cta .btn { min-height: 2.8rem; padding: 0.5rem 1.25rem; font-size: 0.95rem; }

.nav-toggle { display: none; width: 2.75rem; height: 2.75rem; border-radius: var(--r-sm); color: var(--ink); align-items: center; justify-content: center; }
.nav-toggle:hover { background: #EDE9DB; }
.nav-toggle .ic { width: 1.5rem; height: 1.5rem; }

@media (max-width: 64rem) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(22rem, 88vw);
    background: var(--paper); z-index: var(--z-drawer);
    padding: 5.5rem 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(105%);
    transition: transform 320ms var(--ease-out);
    overflow-y: auto;
  }
  body.nav-open .main-nav { transform: none; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .main-nav a.nav-link { width: 100%; padding: 0.85rem 0.9rem; font-size: 1.08rem; justify-content: space-between; }
  .has-sub .sub {
    position: static; translate: none; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 0 0 0.4rem 0.9rem; display: none; background: none;
  }
  .has-sub.open .sub { display: grid; }
  .drawer-cta { display: grid; gap: 0.6rem; margin-top: 1.2rem; }
  .drawer-overlay {
    position: fixed; inset: 0; background: rgba(7, 23, 34, 0.55);
    z-index: calc(var(--z-drawer) - 1);
    opacity: 0; visibility: hidden; transition: opacity var(--t-med), visibility var(--t-med);
  }
  body.nav-open .drawer-overlay { opacity: 1; visibility: visible; }
  body.nav-open { overflow: hidden; }
  .nav-close { position: absolute; top: 1.1rem; right: 1.1rem; }
}
@media (min-width: 64.01rem) {
  .drawer-cta, .drawer-overlay, .nav-close { display: none; }
}

/* ---------- Marquee ticker ---------- */
.marquee {
  overflow: hidden;
  background: var(--night);
  border-block: 1px solid var(--night-line);
  padding-block: 0.85rem;
  position: relative;
}
.marquee .track {
  display: flex; gap: 2.6rem; width: max-content;
  animation: marquee-slide 36s linear infinite;
}
.marquee:hover .track { animation-play-state: paused; }
.marquee .mi {
  display: inline-flex; align-items: center; gap: 2.6rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream); white-space: nowrap;
}
.marquee .mi .ic { width: 0.9rem; height: 0.9rem; color: var(--aurora-green); }
@keyframes marquee-slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee .track { animation: none; } }

/* ---------- Trust strip ---------- */
.trust-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.8rem 2.6rem;
  padding: 1.1rem 1.2rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  color: var(--text);
}
.trust-strip .ritem { display: inline-flex; align-items: center; gap: 0.55rem; }
.trust-strip .ic { width: 1.1rem; height: 1.1rem; color: var(--red); }

/* ---------- Cards — media-forward ---------- */
.card {
  background: var(--card);
  border: none;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
a.card { display: block; color: inherit; }
a.card:hover { text-decoration: none; transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--night-2); }
.card-media img, .card-media svg { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
a.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.5rem 1.6rem 1.65rem; display: grid; gap: 0.6rem; }
.card-body h3 { font-size: 1.45rem; letter-spacing: -0.02em; }
.card-body .desc { color: var(--text-soft); font-size: var(--fs-sm); line-height: 1.6; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 0.7rem; margin-top: 0.4rem; }
.price-from { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--ink); }
.price-from small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.76rem; color: var(--text-soft); letter-spacing: 0.02em; margin-top: 0.1rem; }

.chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
  font-size: 0.8rem; font-weight: 800; font-family: var(--font-body);
  letter-spacing: 0.02em;
  background: rgba(251, 249, 242, 0.94); color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.chip .ic { width: 0.95rem; height: 0.95rem; }
.card-media .chip { position: absolute; top: 0.95rem; left: 0.95rem; }
.chip.chip-red { background: var(--red); color: #fff; }
.chip.chip-blue { background: var(--blue); color: #fff; }
.chip.chip-night { background: rgba(7, 23, 34, 0.85); color: var(--yellow); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); }
.stat { text-align: center; display: grid; gap: 0.2rem; }
.stat b {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.6rem + 2.6vw, 3.6rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1;
}
.stat span { color: var(--text-soft); font-size: var(--fs-sm); font-weight: 600; }
.on-dark .stat b { color: #fff; }
.on-dark .stat b em { color: var(--aurora-green); font-style: normal; }
.on-dark .stat span { color: var(--text-inverse-soft); }
@media (max-width: 40rem) { .stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6) var(--sp-4); } }

/* Testimonials */
.tsm { display: grid; gap: 1rem; padding: 1.7rem; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-sm); }
.tsm .stars { display: flex; gap: 0.2rem; color: var(--yellow); }
.tsm .stars .ic { width: 1.05rem; height: 1.05rem; fill: currentColor; stroke: none; }
.tsm blockquote { font-size: 1.02rem; color: var(--text); line-height: 1.65; }
.tsm figcaption { display: flex; align-items: center; gap: 0.8rem; }
.tsm .avatar {
  width: 2.8rem; height: 2.8rem; border-radius: var(--r-full); flex: none;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; color: #fff; font-size: 0.95rem;
}
.tsm .who b { display: block; font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 0.98rem; }
.tsm .who span { color: var(--text-soft); font-size: 0.85rem; }

/* Value props */
.value-card { display: grid; gap: 0.85rem; padding: 1.8rem; border-radius: var(--r-lg); background: var(--card); box-shadow: var(--shadow-sm); align-content: start; }
.value-card h3 { font-size: 1.25rem; }
.value-card p { color: var(--text-soft); font-size: var(--fs-sm); line-height: 1.6; }

/* ---------- Forms ---------- */
.field { display: grid; gap: 0.4rem; }
.field > label { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.field .hint { font-size: 0.83rem; color: var(--text-soft); }
.req { color: var(--red); }

.input, select.input, textarea.input {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.7rem 1.05rem;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: #fff;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
textarea.input { min-height: 8rem; resize: vertical; }
.input:hover { border-color: #CBC4B0; }
.input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(10, 106, 201, 0.14); }
select.input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2362707B' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 1rem;
  padding-right: 2.6rem;
}

/* ---------- Accordion ---------- */
.acc { border-radius: var(--r-md); background: var(--card); overflow: hidden; box-shadow: var(--shadow-sm); }
.acc + .acc { margin-top: 0.8rem; }
.acc summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink);
  transition: background var(--t-fast);
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary:hover { background: var(--paper); }
.acc summary .ic { flex: none; transition: transform var(--t-med); color: var(--red); }
.acc[open] summary .ic { transform: rotate(45deg); }
.acc .acc-body { padding: 0 1.4rem 1.25rem; color: var(--text-soft); }
.acc .acc-body a { font-weight: 700; }

/* ---------- Tabs ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tab-btn {
  padding: 0.5rem 1.1rem; border-radius: var(--r-full);
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: var(--text-soft); border: 1.5px solid var(--line);
  transition: all var(--t-fast);
}
.tab-btn:hover { border-color: var(--ink); color: var(--ink); }
.tab-btn[aria-selected="true"] { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.tab-panel[hidden] { display: none; }

/* ---------- Lief callout ---------- */
.lief-tip {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--yellow-100);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem;
}
.lief-tip .lief-badge {
  width: 3.4rem; height: 3.4rem; flex: none; border-radius: var(--r-full);
  background: #fff; box-shadow: var(--shadow-sm);
  display: grid; place-items: center; overflow: hidden;
}
.lief-tip .lief-badge img { width: 2.6rem; height: 2.6rem; object-fit: contain; }
.lief-tip .tip-body b { font-family: var(--font-display); font-weight: 700; color: var(--ink); display: block; margin-bottom: 0.2rem; }
.lief-tip .tip-body p { font-size: var(--fs-sm); color: #5B4A12; line-height: 1.6; }

/* ---------- Breadcrumbs ---------- */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; font-size: 0.88rem; color: var(--text-soft); }
.crumbs a { color: var(--text-soft); }
.crumbs a:hover { color: var(--blue); }
.crumbs .sep { opacity: 0.5; }
.crumbs [aria-current] { color: var(--ink); font-weight: 700; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 1.4rem; left: 50%; translate: -50% 0;
  z-index: var(--z-toast);
  display: flex; align-items: center; gap: 0.7rem;
  background: var(--ink); color: #fff;
  padding: 0.9rem 1.35rem; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(12px);
  transition: opacity var(--t-med), transform var(--t-med);
  pointer-events: none;
  max-width: min(92vw, 30rem);
}
.toast.show { opacity: 1; transform: none; }
.toast .ic { color: var(--aurora-green); }

/* ---------- Footer ---------- */
.site-footer { background: var(--night); color: var(--text-inverse); position: relative; }
.site-footer::before {
  content: ""; display: block; height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--red) 30%, var(--blue) 62%, var(--aurora-green));
}
.footer-main { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.5rem; padding-block: 3.75rem 2.5rem; }
.footer-brand { display: grid; gap: 1rem; align-content: start; }
.footer-brand img.logo { height: 1.15rem; width: auto; }
.footer-brand p { color: var(--text-inverse-soft); font-size: var(--fs-sm); max-width: 26rem; }
.footer-col h4 { color: #fff; font-size: 0.9rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 800; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { color: var(--text-inverse-soft); font-size: var(--fs-sm); }
.footer-col a:hover { color: var(--yellow); }
.footer-news { display: grid; gap: 0.7rem; margin-top: 0.5rem; }
.footer-news form { display: flex; gap: 0.5rem; max-width: 24rem; }
.footer-news .input { background: var(--night-2); border-color: var(--night-line); color: #fff; min-height: 2.9rem; }
.footer-news .input::placeholder { color: #7E93A6; }
.footer-news .btn { min-height: 2.9rem; flex: none; }
.footer-bottom {
  border-top: 1px solid var(--night-line);
  padding-block: 1.4rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.8rem;
  font-size: 0.85rem; color: var(--text-inverse-soft);
}
.footer-bottom .spacer { flex: 1; }
.footer-bottom a { color: var(--text-inverse-soft); }
.footer-bottom a:hover { color: var(--yellow); }
.socials { display: flex; gap: 0.4rem; }
.socials a {
  display: grid; place-items: center; width: 2.4rem; height: 2.4rem;
  border-radius: var(--r-full); border: 1px solid var(--night-line); color: var(--text-inverse-soft);
  transition: all var(--t-fast);
}
.socials a:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
@media (max-width: 64rem) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 40rem) { .footer-main { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: clip; background: var(--night); color: var(--text-inverse); }
.page-hero .container { position: relative; z-index: 2; padding-block: clamp(3.75rem, 3rem + 3.2vw, 6.5rem) clamp(2.75rem, 2.2rem + 2.2vw, 4.25rem); display: grid; gap: 1.15rem; max-width: 56rem; text-align: center; justify-items: center; }
.page-hero h1 { color: #fff; font-size: var(--fs-h1); }
.page-hero .lede { color: var(--text-inverse-soft); }
.page-hero .crumbs { justify-content: center; color: var(--text-inverse-soft); }
.page-hero .crumbs a { color: var(--text-inverse-soft); }
.page-hero .crumbs [aria-current] { color: #fff; }
.page-hero .scene-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.6; }
.page-hero .scene-bg img, .page-hero .scene-bg svg { width: 100%; height: 100%; object-fit: cover; }
.page-hero .veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(7, 23, 34, 0.5), rgba(7, 23, 34, 0.85)); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: clip; }
.cta-band .inner {
  position: relative; z-index: 1;
  display: grid; gap: 1.2rem; justify-items: center; text-align: center;
  padding: clamp(3.25rem, 2.6rem + 2.4vw, 5rem) 1.5rem;
}
.cta-band h2 { color: #fff; max-width: 26ch; }
.cta-band p { color: var(--text-inverse-soft); max-width: 52ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-top: 0.4rem; }
