/* ============================================================
   05 SECTIONS ,  Son Altesse
   Page-specific composition: nav, hero, about, problem/solution,
   product, team, CTA, footer + reveal motion.
   ============================================================ */

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  padding: 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  height: 72px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav__links a {
  font-weight: var(--weight-semibold);
  font-size: var(--text-lg);
  color: var(--ink);
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: var(--border-rule) solid transparent;
  transition: border-color var(--dur) var(--ease-out);
}

.nav__links a:hover {
  border-color: var(--piment);
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: var(--space-2);
}

.nav__toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  margin: 5px 0;
  transition: var(--dur) var(--ease-out);
}

.nav[data-open="true"] .nav__toggle .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav[data-open="true"] .nav__toggle .bar:nth-child(2) {
  opacity: 0;
}

.nav[data-open="true"] .nav__toggle .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Hero v3 ,  2026 Immersive ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0c0a09;
}

/* Animated gradient mesh */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(202, 54, 54, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(54, 134, 77, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 50% 20%, rgba(245, 166, 35, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 80%, rgba(202, 54, 54, 0.08) 0%, transparent 60%);
  z-index: 0;
  animation: meshShift 12s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.05) translate(-2%, 1%); }
  100% { transform: scale(1) translate(1%, -1%); }
}

/* Grain texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

/* --- Top: Eyebrow + Title --- */
.hero__top {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--piment);
  margin-bottom: var(--space-6);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(202, 54, 54, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(202, 54, 54, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero__eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--piment);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: var(--weight-black);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.03em;
  margin: 0;
}

.hero__title .line {
  display: block;
}

.hero__title .accent {
  color: var(--piment);
  background: none;
  padding: 0;
  display: inline;
  font-style: italic;
}

.hero__title .accent--leaf {
  color: var(--leaf);
  background: none;
  padding: 0;
  display: inline;
}

.hero__title .outline {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
  color: transparent;
}

/* --- Middle: Product + floating tags --- */
.hero__middle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--space-8) 0;
  min-height: 420px;
}

.hero__product {
  position: relative;
  z-index: 2;
  width: 500px;
}

.hero__product img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 80px rgba(202, 54, 54, 0.3)) drop-shadow(0 40px 60px rgba(0, 0, 0, 0.5));
  animation: productFloat 5s ease-in-out infinite;
}

@keyframes productFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-8px) rotate(0.5deg); }
  66% { transform: translateY(-4px) rotate(-0.5deg); }
}

/* Glow ring behind product */
.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 54, 54, 0.2) 0%, transparent 70%);
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Floating ingredient tags */
.hero__tag {
  position: absolute;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.hero__tag--piment {
  background: rgba(202, 54, 54, 0.2);
  color: #ff8a8a;
  top: 10%;
  left: 10%;
  animation: tagFloat 6s ease-in-out infinite;
}

.hero__tag--leaf {
  background: rgba(54, 134, 77, 0.2);
  color: #7dcaA0;
  top: 20%;
  right: 8%;
  animation: tagFloat 7s ease-in-out infinite 1s;
}

.hero__tag--gold {
  background: rgba(245, 166, 35, 0.15);
  color: #f5c97a;
  bottom: 25%;
  left: 5%;
  animation: tagFloat 5s ease-in-out infinite 0.5s;
}

.hero__tag--white {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  bottom: 15%;
  right: 10%;
  animation: tagFloat 8s ease-in-out infinite 2s;
}

@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- Bottom: CTA + Meta --- */
.hero__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.hero__cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__cta .btn {
  border: 2px solid;
}

.hero__cta .btn:first-child {
  background: var(--piment);
  color: var(--white);
  border-color: var(--piment);
}

.hero__cta .btn:first-child:hover {
  background: transparent;
  color: var(--piment);
}

.hero__cta .btn:last-child {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero__cta .btn:last-child:hover {
  background: var(--white);
  color: #0c0a09;
  border-color: var(--white);
}

.hero__meta {
  display: flex;
  gap: var(--space-8);
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.hero__meta-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--weight-black);
  color: var(--white);
  line-height: 1;
}

.hero__meta-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--space-2);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Mobile responsive */
@media (max-width: 920px) {
  .hero {
    min-height: auto;
    padding-block: var(--space-8);
  }

  .hero__title {
    font-size: clamp(2.5rem, 8vw, var(--text-4xl));
  }

  .hero__middle {
    min-height: 300px;
    margin: var(--space-6) 0;
  }

  .hero__product {
    width: 280px;
  }

  .hero__glow {
    width: 240px;
    height: 240px;
  }

  .hero__tag {
    font-size: 0.65rem;
    padding: 0.4rem 0.8rem;
  }

  .hero__tag--piment { left: 2%; top: 5%; }
  .hero__tag--leaf { right: 2%; top: 15%; }
  .hero__tag--gold { left: 0%; bottom: 20%; }
  .hero__tag--white { right: 2%; bottom: 10%; }

  .hero__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-6);
  }

  .hero__meta {
    justify-content: center;
  }

  .hero__meta-item {
    text-align: center;
  }

  .hero__scroll {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero__title {
    font-size: clamp(2rem, 9vw, var(--text-3xl));
  }

  .hero__middle {
    min-height: 250px;
  }

  .hero__product {
    width: 220px;
  }

  .hero__tag {
    display: none;
  }

  .hero__tag--piment,
  .hero__tag--leaf {
    display: block;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero__meta {
    gap: var(--space-5);
    flex-wrap: wrap;
  }

  .hero__meta-num {
    font-size: var(--text-xl);
  }
}

/* ---------- Slogan Banner ---------- */
.slogan-banner {
  background: var(--ink);
  color: var(--piment);
  text-align: center;
  padding: var(--space-6) var(--gutter);
  border-top: var(--border-rule) solid var(--piment);
  border-bottom: var(--border-rule) solid var(--piment);
}

.slogan-banner__text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, var(--text-3xl));
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
  font-style: italic;
}

.slogan-banner__sub {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--leaf);
  margin-top: var(--space-3);
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

.about__body p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--soot);
}

.about__body p+p {
  margin-top: var(--space-5);
}

.about__body strong {
  color: var(--ink);
  font-weight: var(--weight-bold);
}

/* Ingredient tags */
.ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.ingredient-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border: var(--border-rule) solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--piment-3);
  color: var(--ink);
  transition: all var(--dur) var(--ease-out);
}

.ingredient-tag:hover {
  background: var(--piment);
  color: var(--paper);
  transform: translateY(-2px);
}

/* ---------- Stats ---------- */
.stats__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.stat {
  padding-right: var(--space-5);
  border-left: var(--border-bold) solid var(--piment);
  padding-left: var(--space-5);
}

.section--ink .stat {
  border-color: var(--piment);
}

.section--leaf .stat {
  border-color: var(--paper);
}

/* ---------- Product Showcase ---------- */
.product-showcase {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}


.product-showcase__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.product-showcase__img {
  width: 100%;
  max-width: 100%;
  transition: transform var(--dur-slow) var(--ease-out);
}

.product-showcase__img:hover {
  transform: scale(1.03);
}

.product-showcase__img img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.product-showcase__content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.product-showcase__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: var(--space-4);
}

.product-showcase__badge::before {
  content: '';
  width: 22px;
  height: var(--border-bold);
  background: var(--leaf);
}

.product-showcase__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, var(--text-4xl));
  font-weight: var(--weight-black);
  color: var(--white);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
}

.product-showcase__desc {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-6);
}

.product-showcase__features {
  list-style: none;
  display: grid;
  gap: var(--space-4);
  padding: 0;
}

.product-showcase__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.85);
}

.product-showcase__features li::before {
  content: '🌶️';
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.product-showcase__cta {
  margin-top: var(--space-8);
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-showcase__visual {
    order: -1;
  }

  .product-showcase__img {
    width: 80%;
  }
}

/* ---------- Vision Section ---------- */
.vision-card {
  background: var(--ink);
  color: var(--white);
  border: var(--border-bold) solid var(--piment);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}

.vision-card__title {
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  font-size: var(--text-3xl);
  color: var(--piment);
  margin-bottom: var(--space-4);
}

.vision-card__text {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}

/* ---------- Team ---------- */
.member {
  display: flex;
  flex-direction: column;
  background: var(--surface-card);
  border: var(--border-bold) solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard);
  overflow: hidden;
  transition: transform var(--dur) var(--ease-snap), box-shadow var(--dur) var(--ease-snap);
  text-align: left;
}

.member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hard-lg);
}

.member__photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  border-bottom: var(--border-bold) solid var(--ink);
  background: var(--paper-2);
}

.member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}

.member:hover .member__photo img {
  transform: scale(1.05);
}

.member__content {
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
}

.member__name {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  color: var(--ink);
  margin-top: var(--space-1);
}

.member__role {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--piment);
  font-weight: var(--weight-bold);
}

/* ---------- Contact / CTA block ---------- */
.cta {
  text-align: center;
}

.cta__title {
  font-size: clamp(3.5rem, 6vw, var(--text-5xl));
  color: var(--white);
}

.cta .eyebrow.on-ink {
  justify-content: center;
}

.cta__sub {
  margin: var(--space-5) auto 0;
  max-width: 50ch;
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.85);
}

.cta__actions {
  margin-top: var(--space-8);
  justify-content: center;
}

.section--leaf .cta__title {
  color: var(--white);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--white);
  color: var(--soot);
  padding-block: var(--space-10) var(--space-6);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer__cols {
  display: flex;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.footer__col h5 {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--piment);
  margin-bottom: var(--space-4);
}

.footer__col ul {
  list-style: none;
  display: grid;
  gap: var(--space-3);
}

.footer__col a {
  color: var(--soot);
  font-size: var(--text-sm);
}

.footer__col a:hover {
  color: var(--ink);
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: var(--border-rule) solid var(--ink);
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: var(--dur) var(--ease-out);
}

.social-link:hover {
  background: var(--piment);
  color: var(--paper);
  border-color: var(--piment);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer__bottom {
  margin-top: var(--space-10);
  padding-top: var(--space-5);
  border-top: var(--border-rule) solid var(--ink);
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--stone);
  letter-spacing: var(--tracking-wide);
}

/* ---------- Split (image + content) sections ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.split__media {
  aspect-ratio: 4 / 3;
}

.split--media-left .split__media {
  order: -1;
}

.split+.split {
  margin-top: var(--space-10);
}

.split__media .stat-chip {
  position: absolute;
  right: -14px;
  top: 22px;
  z-index: 3;
  background: var(--piment);
  color: var(--white);
  border: var(--border-rule) solid var(--ink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard-sm);
  padding: var(--space-3) var(--space-4);
}

.split__media {
  position: relative;
}

.stat-chip b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-2xl);
  color: var(--white);
  line-height: 1;
}

.stat-chip span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 820px) {
  .split {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .split--media-left .split__media,
  .split .split__media {
    order: -1;
  }
}

/* ---------- Reveal-on-scroll ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 820px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .hero__visual {
    order: -1;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .stats__row {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8) var(--space-6);
  }
}

@media (max-width: 920px) {
  .nav__cta .btn {
    display: none;
  }

  .logo__img {
    height: 80px;
  }
}

@media (max-width: 720px) {

  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0;
    right: 0;
    top: 110px;
    background: var(--paper);
    border-bottom: var(--border-rule) solid var(--ink);
    padding: var(--space-5) var(--gutter);
    gap: var(--space-4);
  }

  .nav__links.is-open a {
    font-size: var(--text-lg);
  }
}

@media (max-width: 600px) {
  .stats__row {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer__top {
    flex-direction: column;
    gap: var(--space-8);
  }

  .footer__cols {
    gap: var(--space-6);
  }

  .footer__col {
    width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }

  .cta__title {
    font-size: clamp(1.8rem, 5vw, var(--text-3xl));
  }

  .cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta__actions .btn {
    width: 100%;
    max-width: 280px;
  }
}
