/* ================================================================
   NAVORA PARTNERS — REUSABLE COMPONENTS
   UI building blocks shared across all pages.
   Depends on variables.css for all token values.
   ================================================================ */


/* ── Reset & Base ────────────────────────────────────────────────── */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overscroll-behavior-x: none; touch-action: pan-y; -webkit-tap-highlight-color: transparent; }

body {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  color: var(--color-text-primary);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

.site-wrapper {
  overflow-x: clip;
  width: 100%;
  position: relative;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }


/* ── Section Label ───────────────────────────────────────────────── */

.section-label {
  font-family: var(--font-label);
  font-weight: var(--weight-medium);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  text-align: center;
  margin-bottom: var(--space-md);
}


/* ── Buttons ─────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 13px 25px;
  border-radius: var(--radius-none);
  font-family: var(--font-body);
  font-weight: var(--weight-medium);
  font-size: var(--text-sm);
  cursor: pointer;
  border: none;
  transition: border-color var(--ease-interactive), color var(--ease-interactive);
}

/* Button — Gold (primary CTA)
   Desktop hover: dark navy slides in from the right
   Touch tap: brief color flash via JS .tapped class */
.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-dark-navy);
  border: 1.5px solid var(--color-gold);
  position: relative;
  overflow: hidden;
  z-index: 0;
  isolation: isolate;
  transition: color var(--ease-interactive), border-color var(--ease-interactive);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--color-dark-navy);
  transition: width var(--ease-interactive);
  z-index: -1;
}

/* Button — Gold Ghost (gold border on dark, fills gold on hover) */
.btn-gold-ghost {
  background-color: transparent;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
  position: relative;
  overflow: hidden;
  z-index: 0;
  isolation: isolate;
  transition: color var(--ease-interactive), border-color var(--ease-interactive);
}

.btn-gold-ghost::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--color-gold);
  transition: width var(--ease-interactive);
  z-index: -1;
}

/* Button — Outline White (for dark backgrounds)
   Desktop hover: white slides in from the left */
.btn-outline-white {
  background-color: transparent;
  color: var(--color-text-white);
  border: 1.5px solid var(--color-text-white);
  position: relative;
  overflow: hidden;
  z-index: 0;
  isolation: isolate;
  transition: color var(--ease-interactive), border-color var(--ease-interactive);
}

.btn-outline-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-text-white);
  transform: translateX(-100%);
  transition: transform var(--ease-interactive);
  z-index: -1;
}

/* Button — Arrow modifier (appends → that shifts on hover) */
.btn-arrow::after {
  content: '\2192';
  font-size: var(--text-lg);
  font-weight: var(--weight-black);
  display: inline-block;
  margin-left: 2px;
  transition: transform var(--ease-interactive), margin var(--ease-interactive);
  position: relative;
  z-index: 1;
}

/* ── Desktop: slide-in hover (pointer devices only) ──────────────── */
@media (hover: hover) {
  .btn-gold:hover {
    color: var(--color-gold);
    border-color: var(--color-dark-navy);
  }
  .btn-gold:hover::before {
    width: 100%;
    left: 0;
    right: auto;
  }
  .btn-gold-ghost:hover {
    color: var(--color-dark-navy);
    border-color: var(--color-gold);
  }
  .btn-gold-ghost:hover::before {
    width: 100%;
    left: 0;
    right: auto;
  }
  .btn-outline-white:hover {
    color: var(--color-dark-navy);
  }
  .btn-outline-white:hover::before {
    transform: translateX(0);
  }
  .btn-arrow:hover::after {
    transform: translateX(13px);
  }
}



/* ── Read More Link ──────────────────────────────────────────────── */

.read-more {
  font-weight: var(--weight-medium);
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  margin-top: auto;
}

.read-more:hover span:first-child {
  text-decoration: underline;
}

.read-more-arrow {
  display: inline-block;
  transition: transform var(--ease-interactive);
}

.read-more:hover .read-more-arrow {
  transform: translateX(8px);
}


/* ── Check Icon (gold circle with checkmark) ─────────────────────── */

.check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--color-gold);
  color: var(--color-jade);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}


/* ── Checklist ───────────────────────────────────────────────────── */

.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.checklist-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  color: var(--color-warm-cream);
}


/* ── Play Button (video overlay) ─────────────────────────────────── */

.play-btn {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-white);
  font-size: 0;
  cursor: pointer;
  transition: background var(--ease-interactive), border-color var(--ease-interactive), transform var(--ease-interactive);
  position: relative;
  z-index: var(--z-above);
}

.play-btn::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--color-text-white);
  margin-left: 4px;
  transition: border-color var(--ease-interactive);
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--color-text-white);
  transform: scale(1.15);
}


/* ── Image Overlay (dark hover-fade on media containers) ─────────── */

.media-overlay {
  position: relative;
}

.media-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-dark-navy);
  opacity: 0.2;
  transition: opacity var(--ease-interactive);
  pointer-events: none;
}

.media-overlay:hover::after {
  opacity: 0.08;
}


/* ── Step Icon (jade circle with SVG icon) ───────────────────────── */

.step-icon {
  width: 58px;
  height: 58px;
  background: var(--color-jade);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-icon);
  margin-bottom: var(--space-sm);
  flex-shrink: 0;
}

.step-icon svg {
  width: 25px;
  height: 22px;
}


/* ── Case Card (featured — image + content side by side) ─────────── */

.case-card {
  flex: 1;
  display: flex;
  border-radius: var(--radius-none);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-jade);
}

.case-card-image {
  flex: 1;
  background: linear-gradient(135deg, #3a6b67, #024742);
  min-height: 288px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-dark-navy);
  opacity: 0.2;
  transition: opacity var(--ease-interactive);
  pointer-events: none;
}

.case-card-image:hover::after {
  opacity: 0.08;
}

.case-card-content {
  flex: 1;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--color-jade);
}

.case-card-content blockquote {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-4xl);
  line-height: var(--leading-tight);
  color: var(--color-text-white);
  margin-bottom: var(--space-xl);
}

.case-card-content p {
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.case-card-attribution {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.case-card-attribution img {
  height: 28px;
  width: auto;
}

.case-card-attribution .attr-details {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.case-card-attribution .attr-name {
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  color: var(--color-text-white);
  line-height: var(--leading-normal);
}

.case-card-attribution .attr-role {
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

.case-card-attribution .attr-since {
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  color: var(--color-gold);
  opacity: 0.85;
  line-height: var(--leading-normal);
}

.case-card-content .read-more {
  color: var(--color-gold);
}


/* ── Story Card (smaller — image + body side by side) ────────────── */

.story-card {
  display: flex;
  border-radius: var(--radius-none);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--color-text-white);
  min-height: 180px;
}

.story-card-img {
  flex: 0 0 230px;
  background: linear-gradient(135deg, #d4d8d0, #b8bcb4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 216px;
}

.story-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-dark-navy);
  opacity: 0.2;
  transition: opacity var(--ease-interactive);
  pointer-events: none;
}

.story-card-img:hover::after {
  opacity: 0.08;
}

.story-card-img .play-btn {
  z-index: var(--z-above);
}

.story-card-body {
  flex: 1;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.story-card-body h4 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-2xl);
  line-height: var(--leading-relaxed);
  color: var(--color-jade);
  margin-bottom: var(--space-md);
}

.story-card-body .story-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.story-card-body .story-bullets li {
  font-size: var(--text-sm);
  font-weight: var(--weight-regular);
  line-height: var(--leading-loose);
  color: var(--color-jade);
  padding-left: var(--space-sm);
  position: relative;
}

.story-card-body .story-bullets li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-jade);
  font-size: var(--text-sm);
  line-height: inherit;
}

.story-card-body .read-more {
  color: var(--color-jade);
}


/* ── CTA Card (centered white card with heading + text + button) ── */

.cta-card {
  margin: 0 auto;
  background: var(--color-text-white);
  border-radius: var(--radius-none);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2xl);
  text-align: center;
}

.cta-card h3 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-7xl);
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.cta-card p {
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}


/* ── Dark Info Card (dark navy with heading + checklist) ──────────── */

.dark-card {
  background: var(--color-dark-navy);
  border-radius: var(--radius-none);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl);
}

.dark-card h3 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-2xl);
  line-height: var(--leading-tight);
  color: var(--color-text-white);
  margin-bottom: var(--space-md);
}


/* ── Header ──────────────────────────────────────────────────────── */

.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--color-header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: var(--header-height);
  border-bottom: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  padding: 0 var(--space-5xl);
  -webkit-tap-highlight-color: transparent;
}

.header a,
.header button {
  -webkit-tap-highlight-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-2xl);
  margin: 0 auto;
}

.header-logo {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-2xl);
  color: var(--color-text-white);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-right: auto;
}

.header-logo svg {
  width: 22px;
  height: 22px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  order: 3;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  order: 2;
  margin-right: var(--space-xl);
}

.header-nav-cta { display: none; }

.header-nav a:not(.btn) {
  font-size: var(--text-base);
  color: var(--color-text-white);
  font-weight: var(--weight-regular);
  transition: color var(--ease-default);
}

.header-nav a:not(.btn):hover,
.header-nav a:not(.btn).nav-active {
  color: var(--color-gold);
}

.header-cta {
  padding: 9px 20px;
  font-size: var(--text-sm);
  border-radius: var(--radius-none);
  box-shadow: var(--shadow-xs);
  transition: background-color var(--ease-interactive), border-color var(--ease-interactive), color var(--ease-interactive);
}


/* ── Hamburger Button ────────────────────────────────────────────── */

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: var(--z-hamburger);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-white);
  border-radius: var(--radius-sm);
  transition: transform var(--ease-default), opacity var(--ease-default);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ── Testimonial Carousel ────────────────────────────────────────── */

.carousel-inner {
  max-width: var(--container-base);
  margin: 0 auto;
  text-align: center;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: var(--radius-full);
  background: var(--color-text-muted);
  border: none;
  cursor: pointer;
  transition: background var(--ease-default), transform var(--ease-default);
  padding: 0;
}

.carousel-dot.active {
  background: var(--color-jade);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: var(--color-jade);
}

.carousel-slides {
  position: relative;
  min-height: 270px;
}

.carousel-slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity var(--ease-fade);
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  position: absolute;
  pointer-events: auto;
}

.carousel-slide blockquote {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-9xl);
  line-height: var(--leading-normal);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.carousel-attribution {
  font-size: var(--text-base);
  line-height: var(--leading-loose);
  color: var(--color-text-secondary);
}

.carousel-attribution strong {
  font-weight: var(--weight-bold);
  font-size: var(--text-xl);
  display: block;
}

.carousel-attribution .attr-company {
  display: block;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--color-jade);
}

.carousel-attribution .attr-location {
  display: block;
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
}

.carousel-note {
  margin-top: var(--space-xl);
  font-style: italic;
  font-size: var(--text-2xl);
  font-weight: var(--weight-regular);
  line-height: var(--leading-loose);
  color: var(--color-text-secondary);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}


/* ── Final CTA Section (shared across pages) ─────────────────────── */

.final-cta {
  position: relative;
  padding: var(--space-4xl) var(--space-5xl);
  background: url('../images/Main call to action image.webp') center/cover no-repeat;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background: var(--color-final-cta-overlay);
  z-index: 0;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: left;
}

.final-cta-label {
  font-family: var(--font-label);
  font-weight: var(--weight-medium);
  font-size: var(--text-xs);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  margin-bottom: var(--space-md);
}

.final-cta-inner h2 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-9xl);
  line-height: var(--leading-tight);
  color: #fff;
  margin-bottom: var(--space-md);
}

.final-cta-inner p {
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: #fff;
  margin-bottom: var(--space-xl);
  max-width: 585px;
}


/* ── Video Lightbox ──────────────────────────────────────────────── */

.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-lightbox);
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-lightbox.active {
  display: flex;
}

.video-lightbox video {
  max-width: 860px;
  max-height: 80vh;
  width: 90%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-overlay);
  cursor: default;
}

.video-lightbox-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-lg);
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  color: var(--color-text-white);
  font-size: var(--text-2xl);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease-default);
}

.video-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}


/* ── Footer ──────────────────────────────────────────────────────── */

.footer {
  background: var(--color-jade);
  padding: var(--space-3xl) var(--space-5xl) var(--space-xl);
  border-top: 1px solid var(--color-border-lighter);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  column-gap: var(--space-xl);
  row-gap: var(--space-xl);
  max-width: var(--container-lg);
  margin: 0 auto;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border-lighter);
}

.footer-brand-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 36px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-12xl);
  color: var(--color-border-lighter);
  line-height: var(--leading-none);
  letter-spacing: var(--tracking-tight);
}

.footer-brand-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: var(--weight-medium);
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.18);
  line-height: 1.4;
}

.footer-icons {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.footer-compass {
  height: 166px;
  width: auto;
  opacity: 0.20;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-base);
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-col ul li a {
  font-size: var(--text-lg);
  color: var(--color-text-white);
  transition: opacity 0.2s;
}

.footer-col ul li a:hover {
  color: var(--color-gold);
  opacity: 1;
}

.footer-address {
  font-size: var(--text-sm);
  line-height: var(--leading-loose);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  transition: opacity 0.2s;
}

.social-icon:hover {
  opacity: 0.7;
}

.social-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.footer-badge {
  display: flex;
  align-items: center;
}

.footer-badge img {
  height: 92px;
  width: auto;
  object-fit: contain;
}

.footer-bottom {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-md);
}

.footer-bottom-links a {
  color: var(--color-text-muted);
  transition: opacity 0.2s;
}

.footer-bottom-links a:hover {
  opacity: 0.7;
}


/* ================================================================
   RESPONSIVE — COMPONENT OVERRIDES
   ================================================================ */

/* ── Tablet (max-width: 1200px) ──────────────────────────────────── */
@media (max-width: 1200px) {

  /* Header */
  .header { padding: 0 var(--space-xl); }
  .hamburger { display: flex; }
  .header-nav {
    display: flex;
    position: absolute;
    top: var(--header-height);
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: var(--color-header-menu-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 0 var(--space-xl);
    gap: 0;
    border-top: 1px solid var(--color-border-lighter);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height var(--ease-content), opacity var(--ease-interactive), padding var(--ease-content), gap var(--ease-content);
    pointer-events: none;
  }
  .header-nav.open {
    max-height: 400px;
    opacity: 1;
    padding: var(--space-md) var(--space-xl) var(--space-lg);
    gap: var(--space-sm);
    pointer-events: auto;
  }
  .header-nav a:not(.btn):not(.header-cta) {
    padding: var(--space-xs) 0;
    font-size: var(--text-lg);
  }
  .header-cta {
    display: flex !important;
    position: static;
    order: -1;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
  }

  /* Cards */
  .story-card-body h4 { font-size: var(--text-lg); }

  /* Carousel */
  .carousel-slides { min-height: 420px; }
  .carousel-slide blockquote { font-size: var(--text-8xl); }

  /* Final CTA */
  .final-cta { padding: var(--space-3xl) var(--space-xl); }
  .final-cta-inner h2 { font-size: var(--text-8xl); }

  /* Footer */
  .footer { padding: var(--space-3xl) var(--space-xl) var(--space-xl); }
}

/* ── Mobile (max-width: 768px) ───────────────────────────────────── */
@media (max-width: 768px) {

  /* Header */
  .header { padding: 0 var(--space-md); height: var(--header-height-mobile); }
  .header-logo { font-size: var(--text-xl); }
  .hamburger { display: flex; }
  .header-nav {
    display: flex;
    position: absolute;
    top: var(--header-height-mobile);
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    background: var(--color-header-menu-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 0 var(--space-md);
    gap: 0;
    border-top: 1px solid var(--color-border-lighter);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height var(--ease-content), opacity var(--ease-interactive), padding var(--ease-content), gap var(--ease-content);
    pointer-events: none;
  }
  .header-nav.open {
    max-height: 400px;
    opacity: 1;
    padding: var(--space-md) var(--space-md) var(--space-lg);
    gap: var(--space-sm);
    pointer-events: auto;
  }
  .header-nav a:not(.btn) {
    padding: var(--space-xs) 0;
    font-size: var(--text-lg);
  }
  .header-cta { display: none !important; }
  .header-nav-cta {
    display: flex !important;
    width: 100%;
    justify-content: center;
    margin-top: var(--space-xs);
  }

  /* Cards */
  .case-card { flex-direction: column; }
  .case-card-image { min-height: 240px; }
  .case-card-content blockquote { font-size: var(--text-3xl); }
  .story-card { flex-direction: column; }
  .story-card-img { flex: none; min-height: 200px; }
  .story-card-body { flex: none; }

  /* CTA Card */
  .cta-card { padding: var(--space-xl); }
  .cta-card h3 { font-size: var(--text-5xl); }
  .cta-card p { font-size: var(--text-md); }
  .cta-card .btn { width: 100%; justify-content: center; }

  /* Carousel */
  .carousel-slide blockquote { font-size: 28px; }
  .carousel-slides { min-height: 250px; }
  .carousel-note { font-size: var(--text-lg); }

  /* Final CTA */
  .final-cta { padding: var(--space-xl) var(--space-md); }
  .final-cta-inner h2 { font-size: var(--text-6xl); }
  .final-cta-inner p { font-size: var(--text-md); }
  .final-cta-inner .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: var(--space-xl) var(--space-md) var(--space-sm); }
  .footer-inner {
    grid-template-columns: 1fr;
    row-gap: var(--space-lg);
    text-align: center;
  }
  .footer-col { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-brand-row { flex-direction: column; align-items: center; gap: var(--space-md); }
  .footer-brand { text-align: center; }
  .footer-brand-name { font-size: var(--text-8xl); }
  .footer-compass { height: 100px; }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
  .footer-badges { flex-direction: column; gap: var(--space-md); align-items: center; }
  .footer-badge img { height: 80px !important; width: auto; object-fit: contain; }
  .footer-col ul li a { font-size: var(--text-md); }
}

/* ── Small Mobile (max-width: 480px) ─────────────────────────────── */
@media (max-width: 480px) {

  /* Cards */
  .case-card-content blockquote { font-size: var(--text-xl); }
  .story-card-body h4 { font-size: var(--text-md); }

  /* CTA Card */
  .cta-card h3 { font-size: var(--text-3xl); }
  .cta-card p { font-size: var(--text-base); }

  /* Carousel */
  .carousel-slide blockquote { font-size: var(--text-3xl); }
  .carousel-slides { min-height: 280px; }
  .carousel-note { font-size: var(--text-base); }

  /* Final CTA */
  .final-cta-inner h2 { font-size: 26px; }
  .final-cta-inner p { font-size: var(--text-base); }
  .final-cta-label { font-size: var(--text-2xs); }

  /* Footer */
  .footer-brand-name { font-size: var(--text-7xl); }
  .footer-brand-tagline { font-size: var(--text-base); }
  .footer-compass { height: 80px; }
  .footer-badge img { height: 56px; }
}
