/* ==========================================================================
   GoCruizo.com — components
   Order: layout · typography · buttons · chrome · home sections · interior ·
          footer · call bar · responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Layout primitives
   -------------------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(3rem, 2rem + 4vw, 5.5rem);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--color-accent);
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-md) 0;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

/* --------------------------------------------------------------------------
   2. Typography
   -------------------------------------------------------------------------- */

.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.08;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.eyebrow--on-dark {
  color: var(--color-accent-dark);
}

.lede {
  font-size: var(--step-1);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 46ch;
}

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 1.4rem + 2.2vw, 3rem);
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1.1;
  letter-spacing: -0.005em;
}

.section-head p {
  margin-top: var(--space-md);
  color: var(--color-text-muted);
  font-size: var(--step-1);
  max-width: 50ch;
}

/* --------------------------------------------------------------------------
   3. Buttons
   Brass buttons always carry navy text (#10222b). Never white on brass.
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--tap);
  padding: 0.75rem 1.375rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease),
    transform 0.18s var(--ease), border-color 0.18s var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn--brass {
  background: var(--color-accent);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.btn--brass:hover {
  background: var(--color-accent-hover);
  color: var(--color-text);
}

.btn--lg {
  min-height: 54px;
  padding: 0.9375rem 1.875rem;
  font-size: 1.0625rem;
}

.btn--ghost-light {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost-light:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn__icon {
  flex: none;
  width: 17px;
  height: 17px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   4. Advertising disclosure strip
   -------------------------------------------------------------------------- */

.disclosure {
  background: var(--color-navy);
  color: var(--color-on-dark-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.disclosure p {
  padding-block: 0.5rem;
  max-width: 92ch;
}

.disclosure strong {
  color: var(--color-on-dark);
  font-weight: 600;
}

/* Padding gives the link a 44px tap target; the negative block margin keeps
   that target from inflating the strip on narrow screens. */
.disclosure a {
  display: inline-block;
  min-height: var(--tap);
  padding: 0.8125rem 0.375rem;
  margin-block: -0.75rem;
  color: var(--color-accent-dark);
  font-weight: 600;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--color-accent-dark) 45%, transparent);
}

.disclosure a:hover {
  color: var(--color-accent-dark);
  text-decoration-color: currentColor;
}

/* --------------------------------------------------------------------------
   5. Cookie notice — slim top strip (never bottom-anchored)
   -------------------------------------------------------------------------- */

.cookie-strip {
  display: none;
  background: var(--color-surface-offset);
  border-bottom: 1px solid var(--color-rule-strong);
  opacity: 0;
  transition: opacity 0.32s var(--ease);
}

/* Space is reserved up-front (no layout shift) when no choice is stored. */
.needs-cookie-choice .cookie-strip {
  display: block;
  pointer-events: none;
}

.needs-cookie-choice.cookie-visible .cookie-strip {
  opacity: 1;
  pointer-events: auto;
}

.cookie-strip .shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem var(--space-lg);
  padding-block: 0.375rem;
}

.cookie-strip p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 62ch;
}

.cookie-strip a {
  font-weight: 600;
}

.cookie-strip__actions {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.cookie-btn {
  min-height: var(--tap);
  padding: 0.375rem 1.0625rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease);
}

.cookie-btn--quiet {
  border: 1px solid var(--color-rule-strong);
  color: var(--color-text-muted);
  background: transparent;
}

.cookie-btn--quiet:hover {
  background: rgba(16, 34, 43, 0.06);
  color: var(--color-text);
}

.cookie-btn--solid {
  background: var(--color-primary);
  color: #ffffff;
}

.cookie-btn--solid:hover {
  background: var(--color-primary-hover);
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--color-surface) 88%, transparent);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--color-rule);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 72px;
}

/* Brand lockup */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5625rem;
  min-height: var(--tap);
  text-decoration: none;
  color: var(--color-text);
  flex: none;
}

.brand:hover {
  color: var(--color-text);
}

.brand__mark {
  flex: none;
  width: 34px;
  height: 34px;
}

.brand__text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.0625rem;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.005em;
}

.brand__tld {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.825rem;
  line-height: 1;
  color: var(--color-text-muted);
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  padding: 0 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.16s var(--ease), background-color 0.16s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 7%, transparent);
}

/* The brass CTA lives inside the nav panel on mobile; the generic .nav a
   colour must not win over it — brass always carries navy text. */
.nav a.btn--brass,
.nav a.btn--brass:hover {
  color: var(--color-text);
  background: var(--color-accent);
  border-bottom: 0;
  border-radius: var(--radius-pill);
}

.nav a.btn--brass:hover {
  background: var(--color-accent-hover);
}

.header__cta {
  flex: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: var(--tap);
  height: var(--tap);
  flex: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-rule-strong);
  color: var(--color-text);
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.nav-toggle__close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
  display: block;
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding-block: clamp(3.5rem, 2.5rem + 5vw, 6rem);
  background: var(--color-navy);
  color: #ffffff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgba(10, 26, 34, 0.72),
    rgba(10, 26, 34, 0.46) 52%,
    rgba(10, 26, 34, 0.12)
  );
}

.hero__inner {
  max-width: 40rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--step-5);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: #ffffff;
  text-shadow: 0 1px 24px rgba(6, 18, 24, 0.4);
}

.hero__lede {
  margin-top: var(--space-lg);
  font-size: var(--step-1);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 38ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm) var(--space-md);
  margin-top: clamp(1.75rem, 1.4rem + 1.4vw, 2.25rem);
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 1.5rem;
  margin-top: clamp(1.75rem, 1.4rem + 1.4vw, 2.25rem);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__facts li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.hero__facts li::before {
  content: "";
  flex: none;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent-dark);
}

/* --------------------------------------------------------------------------
   8. Steps band — "What happens when you call"
   -------------------------------------------------------------------------- */

.steps {
  background: var(--color-navy);
  color: var(--color-on-dark);
}

.steps .section-head h2 {
  color: #ffffff;
}

.steps .section-head p {
  color: var(--color-on-dark-muted);
}

.steps__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: var(--space-xl) clamp(1.75rem, 1.2rem + 2.4vw, 3rem);
}

.step {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-rule-dark);
}

.step__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--color-accent-dark);
  font-variant-numeric: lining-nums;
}

.step h3 {
  font-family: var(--font-body);
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.step p {
  font-size: 0.9688rem;
  line-height: 1.65;
  color: var(--color-on-dark-muted);
}

/* --------------------------------------------------------------------------
   9. Destinations
   -------------------------------------------------------------------------- */

.destinations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
  gap: clamp(1.25rem, 0.9rem + 1.6vw, 2rem);
}

.dest-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s var(--ease), transform 0.22s var(--ease);
}

.dest-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.dest-card__media {
  aspect-ratio: 4 / 3;
  background: var(--color-surface-offset);
}

.dest-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-sm);
  padding: clamp(1.25rem, 1rem + 0.8vw, 1.625rem);
}

.dest-card h3 {
  font-family: var(--font-body);
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.005em;
}

.dest-card p {
  font-size: 0.9375rem;
  line-height: 1.62;
  color: var(--color-text-muted);
}

/* Ruled spec table */
.spec {
  margin-top: auto;
  padding-top: var(--space-sm);
}

.spec__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 0.625rem;
  border-top: 1px solid var(--color-rule);
}

.spec dt {
  flex: none;
  font-size: 0.71875rem; /* 11.5px */
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

.spec dd {
  font-size: 0.875rem; /* 14px */
  font-weight: 600;
  line-height: 1.4;
  text-align: right;
  color: var(--color-text);
}

.dest-card__foot {
  border-top: 1px solid var(--color-rule);
  background: color-mix(in srgb, var(--color-surface-offset) 45%, var(--color-surface));
}

.dest-card__foot a {
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  min-height: 52px;
  padding-inline: clamp(1.25rem, 1rem + 0.8vw, 1.625rem);
  font-size: 0.78125rem; /* 12.5px */
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
}

.dest-card__foot a:hover {
  background: color-mix(in srgb, var(--color-primary) 6%, transparent);
  color: var(--color-primary-hover);
}

.dest-card__foot a span[aria-hidden] {
  transition: transform 0.2s var(--ease);
}

.dest-card__foot a:hover span[aria-hidden] {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   10. CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  background: linear-gradient(118deg, var(--color-primary), var(--color-navy) 78%);
  color: #ffffff;
  text-align: center;
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  max-width: 42rem;
  margin-inline: auto;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1.1;
  color: #ffffff;
}

.cta-band p {
  font-size: var(--step-1);
  color: rgba(255, 255, 255, 0.86);
  max-width: 46ch;
}

.cta-band__note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.66);
}

/* --------------------------------------------------------------------------
   11. Interior pages — page hero + prose
   -------------------------------------------------------------------------- */

.page-hero {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-rule);
  padding-block: clamp(2.75rem, 2rem + 3.4vw, 4.5rem);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--step-4);
  line-height: 1.08;
  letter-spacing: -0.008em;
  max-width: 22ch;
}

.page-hero p {
  margin-top: var(--space-md);
  font-size: var(--step-1);
  color: var(--color-text-muted);
  max-width: 56ch;
}

.page-hero__meta {
  margin-top: var(--space-lg);
  font-size: 0.8125rem;
  color: var(--color-text-faint);
}

.prose {
  max-width: var(--prose-max);
  padding-block: clamp(2.5rem, 2rem + 2.4vw, 4rem);
}

.prose > * + * {
  margin-top: var(--space-md);
}

.prose h2 {
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1.14;
  margin-top: var(--space-2xl);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  margin-top: var(--space-xl);
}

.prose p,
.prose li {
  color: var(--color-text-muted);
  line-height: 1.72;
}

.prose strong {
  color: var(--color-text);
  font-weight: 600;
}

.prose ul,
.prose ol {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding-left: 1.25rem;
}

.prose ul li {
  position: relative;
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: -1.0625rem;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

.prose ol {
  list-style: decimal;
}

.prose ol li::marker {
  color: var(--color-accent);
  font-weight: 600;
}

.prose a {
  font-weight: 500;
}

.callout {
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-rule);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
}

.callout p {
  font-size: 0.9375rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-rule);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.contact-block strong {
  color: var(--color-text);
}

.contact-block a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  min-width: 44px;
  margin-block: -0.6875rem;
  font-weight: 600;
}

/* FAQ accordions */
.faq-list {
  display: flex;
  flex-direction: column;
  max-width: var(--prose-max);
}

.faq-item {
  border-bottom: 1px solid var(--color-rule);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-rule);
}

.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: 60px;
  padding-block: var(--space-md);
  font-family: var(--font-body);
  font-size: 1.0313rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-item > summary:hover {
  color: var(--color-primary);
}

.faq-item__icon {
  flex: none;
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
  transition: transform 0.2s var(--ease);
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding-bottom: var(--space-lg);
}

.faq-item__answer p {
  color: var(--color-text-muted);
  line-height: 1.72;
}

.faq-item__answer p + p {
  margin-top: var(--space-sm);
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-rule);
  padding-block: clamp(2.75rem, 2rem + 3vw, 4rem) var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1.5fr;
  grid-template-rows: auto auto;
  gap: var(--space-xl) clamp(1.25rem, 0.6rem + 2.2vw, 2.5rem);
}

.fcol {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  align-content: start;
  gap: var(--space-md);
}

/* Shared 15px label row — every column's first line sits on it. */
.fcol__label,
.footer-brand {
  font-family: var(--font-body);
  font-size: 0.9375rem; /* 15px */
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: var(--color-text);
  /* Baseline-aligned so all five columns' first lines share one baseline,
     even though the wordmark is set larger than the 15px labels. */
  align-self: baseline;
  margin: 0;
}

.footer-brand {
  font-weight: 400;
  letter-spacing: normal;
  text-decoration: none;
  color: var(--color-text);
  white-space: nowrap;
  /* Padding lifts the link to a 44px tap target; the matching negative
     margin keeps it on the shared label baseline. */
  padding-block: 0.4375rem;
  margin-block: -0.4375rem;
}

.footer-brand:hover {
  color: var(--color-text);
}

.footer-brand__mark {
  display: inline;
  width: 28px;
  height: 28px;
  vertical-align: -0.44em;
  margin-right: 0.4375rem;
}

.footer-brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3125rem;
  letter-spacing: -0.005em;
}

.footer-brand__tld {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7188rem;
  color: var(--color-text-muted);
}

.fcol__body {
  align-self: start;
}

.fcol p {
  font-size: 0.875rem;
  line-height: 1.62;
  color: var(--color-text-muted);
  max-width: 40ch;
}

.fcol ul {
  display: flex;
  flex-direction: column;
}

.fcol ul a,
.fcol__body a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.fcol ul a {
  display: flex;
  align-items: center;
  min-height: var(--tap);
  font-size: 0.875rem;
  line-height: 1.4;
}

.fcol ul a:hover,
.fcol__body a:hover {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  font-style: normal;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-list__entity {
  margin-top: 0.5rem;
  padding-top: 0.625rem;
  border-top: 1px solid var(--color-rule);
  color: var(--color-text-faint);
}

/* Disclaimer row */
.footer-disclaimer {
  display: grid;
  grid-template-columns: 1.7fr 4.5fr;
  gap: var(--space-md) clamp(1.25rem, 0.6rem + 2.2vw, 2.5rem);
  margin-top: clamp(2rem, 1.6rem + 1.6vw, 2.75rem);
  padding-top: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  border-top: 1px solid var(--color-rule);
}

.footer-disclaimer h2 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.footer-disclaimer p {
  font-size: 0.84375rem; /* 13.5px */
  line-height: 1.68;
  color: var(--color-disclaimer);
}

.footer-disclaimer p + p {
  margin-top: var(--space-sm);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs) var(--space-lg);
  margin-top: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-rule);
  font-size: 0.8125rem;
  color: var(--color-text-faint);
}

/* --------------------------------------------------------------------------
   13. Sticky mobile call bar
   -------------------------------------------------------------------------- */

.call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--color-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.625rem var(--gutter) calc(0.625rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -6px 22px rgba(13, 43, 61, 0.22);
}

.call-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  max-width: var(--shell-max);
  margin-inline: auto;
}

.call-bar__label {
  flex: 1;
  min-width: 0;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--color-on-dark-muted);
}

.call-bar__label b {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-accent-dark);
}

.call-bar .btn {
  flex: none;
}

/* --------------------------------------------------------------------------
   14. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    grid-template-rows: auto auto auto auto;
  }

  .fcol--brand {
    grid-column: 1 / -1;
  }

  .footer-disclaimer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .nav a {
    padding-inline: 0.5rem;
    font-size: 0.9063rem;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .header__cta--desktop {
    display: none;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-sm) var(--gutter) var(--space-lg);
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-rule);
    box-shadow: var(--shadow-md);
  }

  .nav[data-open="true"] {
    display: flex;
  }

  .nav a {
    min-height: 52px;
    padding-inline: 0.5rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-rule);
    border-radius: 0;
  }

  .nav .header__cta--mobile {
    display: block;
    margin-top: var(--space-md);
  }

  .nav .header__cta--mobile .btn {
    width: 100%;
  }

  .site-header .shell {
    position: relative;
  }
}

@media (min-width: 861px) {
  .nav .header__cta--mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: var(--callbar-h);
  }

  .call-bar {
    display: block;
  }

  .hero {
    min-height: 640px;
  }

  .hero__overlay {
    background: linear-gradient(
      168deg,
      rgba(10, 26, 34, 0.72),
      rgba(10, 26, 34, 0.5) 52%,
      rgba(10, 26, 34, 0.34)
    );
  }

  .hero__media img {
    object-position: 74% 50%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .fcol {
    grid-row: auto;
    grid-template-rows: auto auto;
  }

  .fcol--brand,
  .fcol--contact {
    grid-column: 1 / -1;
  }

  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .call-bar__label {
    display: none;
  }

  .call-bar .btn {
    flex: 1;
  }
}
