/* ===== AWAFI — Shared Styles (v3 — Sans, no italics, square buttons) ===== */

@import url('https://api.fontshare.com/v2/css?f[]=general-sans@300,400,500,600,700&f[]=jetbrains-mono@400,500&display=swap');

:root {
  --ink: #231f20;
  --ink-2: #3a3637;
  --paper: #fff;
  --paper-2: #EAE6DC;
  --paper-3: #DCD6C7;
  --sage: #ec1c3a;
  --sage-deep: #b91529;
  --line: rgba(35, 31, 32, 0.12);
  --line-soft: rgba(35, 31, 32, 0.06);

  --accent: #ec1c3a;
  --accent-soft: #f44d68;
  --accent-deep: #b91529;

  --font-display: 'General Sans', ui-sans-serif, system-ui, sans-serif;
  --font-sans: 'General Sans', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --pad-x: clamp(20px, 4vw, 64px);
  --max-w: 1440px;

  --btn-radius: 6px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::selection {
  background: var(--sage);
  color: var(--paper);
}

html,
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

html {}

/* Kill italics globally */
em,
i {
  font-style: normal;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.serif {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.015em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.6;
}

/* Nav - Floating Style */
.nav {
  position: fixed;
  top: 15px;
  left: 0;
  right: 0;
  z-index: 100;
  background: #fff;
  max-width: calc(var(--max-w) - 120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px var(--pad-x);
  transition: all 0.4s var(--ease-out-expo);
  border-radius: 20px;
  margin-inline: auto;
}

/* Floating state - activated on scroll */
.nav.floating {
  top: 16px;
  left: var(--pad-x);
  right: var(--pad-x);
  max-width: calc(var(--max-w) - 120px);
  margin: 0 auto;
  padding: 7px 40px;
  background: #ffffff !important;
  backdrop-filter: blur(20px);
  border-radius: 19px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 40px rgba(35, 31, 32, 0.12),
    0 4px 12px rgba(35, 31, 32, 0.06),
    0 2px 4px rgba(35, 31, 32, 0.04);
}

.nav.on-dark {
  color: var(--paper);
}

.nav.on-dark.floating {
  background: #ffffff !important;
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(35, 31, 32, 0.12),
    0 4px 12px rgba(35, 31, 32, 0.06),
    0 2px 4px rgba(35, 31, 32, 0.04);
  color: var(--ink);
}

/* Floating nav - adjust logo and links */
.nav.floating .logo {
  font-size: 20px;
  /* Slightly smaller when floating */
}

.nav.floating .logo img {
  height: 45px;
  /* Smaller logo when floating */
}

.nav.floating .nav-links a {
  font-size: 13px;
      font-size: 13px;
    padding: 0;
    overflow: hidden
}

.nav.floating .nav-cta {
  padding: 8px 12px;
  font-size: 12px;
}

.logo {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}

.logo img {
  height: 45px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.005em;
  position: relative;
  padding: 4px 0;
  transition: opacity 0.3s var(--ease-out-soft);
  opacity: 0.65;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
}

/* Brands Submenu */
.nav-links li.has-submenu {
  position: relative;
}

.brands-submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 24px 60px rgba(35, 31, 32, 0.14),
    0 8px 24px rgba(35, 31, 32, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease-out-expo),
    transform 0.28s var(--ease-out-expo),
    visibility 0.28s;
  width: max-content;
  max-width: min(92vw, 920px);
  z-index: 1000;
}

/* Invisible bridge to keep submenu open while moving mouse */
.brands-submenu::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
  background: transparent;
}

.nav-links li.has-submenu:hover .brands-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Submenu header */
.bsm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 8px 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}

.bsm-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.45;
}

.bsm-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.25s var(--ease-out-soft), color 0.25s var(--ease-out-soft);
}

.bsm-all span {
  transition: transform 0.3s var(--ease-out-expo);
}

.bsm-all:hover {
  opacity: 1;
  color: var(--sage);
}

.bsm-all:hover span {
  transform: translateX(4px);
}

/* Group label for the second row of brands */
.bsm-subhead {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.45;
  padding: 4px 8px 12px;
  margin: 16px 0 12px;
  border-top: 1px solid var(--line-soft);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 150px;
  padding: 16px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease-out-expo),
    background 0.3s var(--ease-out-soft),
    border-color 0.3s var(--ease-out-soft),
    box-shadow 0.3s var(--ease-out-soft);
  text-align: center;
}

.brand-item:hover {
  transform: translateY(-4px);
}

.brand-logo {
  width: 100%;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  /* Soft, light "raised tile" shadow */
  box-shadow: 0 6px 16px rgba(35, 31, 32, 0.08),
    0 2px 4px rgba(35, 31, 32, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: box-shadow 0.32s var(--ease-out-soft),
    transform 0.32s var(--ease-out-expo);
}

.brand-item:hover .brand-logo {
  box-shadow: 0 16px 32px rgba(35, 31, 32, 0.14),
    0 5px 12px rgba(35, 31, 32, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand-logo img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s var(--ease-out-expo);
}

.brand-item:hover .brand-logo img {
  transform: scale(1.06);
}

.brand-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  opacity: 0.7;
  transition: opacity 0.25s var(--ease-out-soft), color 0.25s var(--ease-out-soft);
}

.brand-item:hover .brand-name {
  opacity: 1;
  color: var(--sage);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s var(--ease-out-expo);
}

.nav.on-dark .nav-cta {
  border-color: rgba(245, 242, 236, 0.25);
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.nav.on-dark .nav-cta:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.nav-cta .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* ===== Mobile menu (burger + panel) ===== */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  z-index: 101;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.2s;
}

body.mm-open .nav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.mm-open .nav-burger span:nth-child(2) {
  opacity: 0;
}

body.mm-open .nav-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--paper);
  padding: 100px var(--pad-x) 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease-out-expo), transform 0.35s var(--ease-out-expo), visibility 0.3s;
}

body.mm-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

body.mm-open {
  overflow: hidden;
}

.mm-links {
  display: flex;
  flex-direction: column;
}

.mm-links>a,
.mm-group-head {
  font-family: var(--font-sans);
  font-size: clamp(22px, 6vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}

.mm-links>a.active,
.mm-group-head.active {
  color: var(--sage);
}

.mm-group {
  border-bottom: 1px solid var(--line-soft);
}

.mm-group-head {
  border-bottom: none;
  display: block;
}

.mm-brands {
  display: flex;
  flex-direction: column;
  padding: 0 0 16px 2px;
}

.mm-blabel {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.45;
  margin: 12px 0 4px;
}

.mm-brands a {
  font-size: 15.5px;
  padding: 9px 0;
  opacity: 0.8;
  color: var(--ink);
}

.mm-cta {
  align-self: flex-start;
  margin-top: 4px;
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .brands-submenu {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

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

  /* Adjust floating nav for mobile */
  .nav.floating {
    top: 12px;
    left: 16px;
    right: 16px;
    padding: 12px 20px;
    border-radius: 999px;
    /* Keep pill shape on mobile */
    max-width: 100%;
  }

  .nav.floating .logo {
    font-size: 18px;
  }

  .nav.floating .logo img {
    height: 18px;
    /* Smaller logo for mobile floating */
  }

  .logo img {
    height: 22px;
    /* Smaller default logo on mobile */
  }

  .nav.floating .nav-cta {
    font-size: 11px;
    padding: 7px 10px;
  }
}

/* Buttons - rectangular */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--btn-radius);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  transition: all 0.3s var(--ease-out-expo);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--sage);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--sage);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn-paper {
  background: var(--paper);
  color: var(--ink);
}

.btn-paper:hover {
  background: var(--sage);
  color: var(--paper);
}

.btn-arrow {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: transform 0.4s var(--ease-out-expo);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Footer */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px var(--pad-x) 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  font-family: var(--font-sans);
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin-bottom: 60px;
}

.footer-top .stroke {
  -webkit-text-stroke: 1px var(--paper);
  color: transparent;
  font-weight: 500;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid rgba(245, 242, 236, 0.12);
  border-bottom: 1px solid rgba(245, 242, 236, 0.12);
}

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

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  opacity: 0.5;
  font-weight: 400;
}

.footer-col p,
.footer-col a {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.75;
  display: block;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 11px;
  font-family: var(--font-mono);
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 12px;
  letter-spacing: 0.05em;
}

/* Section utilities */
.section {
  padding: clamp(80px, 11vw, 160px) var(--pad-x);
  position: relative;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 64px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  max-width: 18ch;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  color: var(--ink);
  font-weight: 400;
}

.tag .led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
}

.tag.on-dark {
  color: var(--paper);
  border-color: rgba(245, 242, 236, 0.2);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out-soft), transform 0.9s var(--ease-out-soft);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Text Animation - Word by Word */
.hero-title {
  opacity: 1;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(25px);
}

.is-ready .hero-title .word {
  animation-name: wordReveal;
  animation-duration: 0.8s;
  animation-timing-function: var(--ease-out-expo);
  animation-fill-mode: forwards;
}

@keyframes wordReveal {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animation for hero elements */
.hero-animate-1,
.hero-animate-2,
.hero-animate-3,
.hero-animate-4 {
  opacity: 0;
  transform: translateY(40px);
}

.is-ready .hero-animate-1 {
  animation: heroTextReveal 1.2s var(--ease-out-expo) forwards;
  animation-delay: 0.2s;
}

.is-ready .hero-animate-2 {
  animation: heroTextReveal 1.2s var(--ease-out-expo) forwards;
  animation-delay: 0.4s;
}

.is-ready .hero-animate-3 {
  animation: heroTextReveal 1.2s var(--ease-out-expo) forwards;
  animation-delay: 0.6s;
}

.is-ready .hero-animate-4 {
  animation: heroTextReveal 1.2s var(--ease-out-expo) forwards;
  animation-delay: 0.8s;
}

@keyframes heroTextReveal {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Marquee */
.marquee {
  display: flex;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.marquee-track {
  display: flex;
  gap: 48px;
  padding: 18px 0;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
}

.marquee-track .star {
  opacity: 0.4;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  pointer-events: none;
}

.loader.gone {
  display: none !important;
}

.loader-content {
  position: relative;
  overflow: hidden;
  border-right: 3px solid;
  width: 0px;
  white-space: nowrap;
  animation: typewriter 2s steps(10) infinite alternate, blink 0.5s steps(10) infinite;
}

.loader-text {
  font-size: clamp(48px, 12vw, 120px);
  font-weight: 600;
  /* letter-spacing: -0.03em; */
  color: #fff;
}

@keyframes typewriter {
  0% {
    width: 0px;
  }

  100% {
    width: 470px;
  }
}

@keyframes blink {
  0% {
    border-right-color: #b91529;
  }

  100% {
    border-right-color: transparent;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--paper-2);
}

::-webkit-scrollbar-thumb {
  background: var(--ink);
  border-radius: 4px;
}

/* Page hero shared */
.page-hero {
  padding: 140px var(--pad-x) 80px;
  position: relative;
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 28px;
}

.ph-title {
  font-family: var(--font-sans);
  font-size: clamp(40px, 6vw, 75px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 500;
  max-width: 100%;
}

.ph-title .stroke {
  -webkit-text-stroke: 1px currentColor;
  color: transparent;
}


/* ============================================================
   FLOATING — WhatsApp button + curvy floating menu
   ============================================================ */

/* WhatsApp FAB (right) */
.fab-whatsapp {
  position: fixed;
  right: clamp(16px, 2.4vw, 28px);
  bottom: clamp(20px, 3vw, 36px);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.34), 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
  cursor: pointer;
}

.fab-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
}

.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: fab-ping 2.4s var(--ease-out-expo) infinite;
}

@keyframes fab-ping {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.fab-whatsapp svg {
  width: 26px;
  height: 26px;
}

.fab-whatsapp .fab-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s var(--ease-out-expo);
}

.fab-whatsapp .fab-tip::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--ink);
}

.fab-whatsapp:hover .fab-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 600px) {
  .fab-whatsapp .fab-tip {
    display: none;
  }
}

/* Curvy floating menu — appears on scroll, with concave side cuts */
.float-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 75;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 56px;
  display: flex;
  align-items: center;
  gap: 6px;
  /* concave side cuts via inverted radial mask on left and right */
  -webkit-mask-image:
    radial-gradient(circle 22px at 0 50%, transparent 22px, black 23px),
    radial-gradient(circle 22px at 100% 50%, transparent 22px, black 23px);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(circle 22px at 0 50%, transparent 22px, black 23px),
    radial-gradient(circle 22px at 100% 50%, transparent 22px, black 23px);
  mask-composite: intersect;
  border-radius: 999px;
  transition: transform 0.5s var(--ease-out-expo), opacity 0.4s;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.float-nav.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.float-nav a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--paper);
  padding: 8px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity 0.25s, background 0.25s, color 0.25s;
  white-space: nowrap;
}

.float-nav a:hover {
  opacity: 1;
}

.float-nav a.active {
  opacity: 1;
  background: var(--paper);
  color: var(--ink);
}

.float-nav .fn-divider {
  width: 1px;
  height: 18px;
  background: rgba(245, 242, 236, 0.18);
  margin: 0 4px;
}

.float-nav .fn-cta {
  background: var(--sage-deep);
  color: var(--paper);
  opacity: 1;
  padding: 8px 16px;
}

.float-nav .fn-cta:hover {
  background: var(--sage);
  color: var(--ink);
}

@media (max-width: 700px) {
  .float-nav {
    padding: 8px 44px;
    gap: 2px;
  }

  .float-nav a {
    padding: 6px 10px;
    font-size: 12px;
  }

  .float-nav .fn-divider {
    display: none;
  }
}

.odometer.plus {
  position: relative;
}

.odometer.plus::after {
  content: "+";
  position: absolute;
  top: 5px;
  right: -16px;
  font-size: 20px;
  color: #b91529;
}

.odometer.hour::after {
  content: "h";
  position: absolute;
  top: 5px;
  right: -13px;
  font-size: 16px;
  color: #b91529;
}

.odometer.odometer-animating .odometer-inside .odometer-digit .odometer-ribbon {
  transition: transform 10s !important;
}

.scroll-left,
.scroll-right {
  opacity: 0;
  will-change: transform, opacity;
  /* Optimizes browser rendering performance during scrub */
}

.tag.reveal {
  clip-path: inset(0 100% 0 0);
  will-change: clip-path;
}

/* Container that handles the pinning */
.bs-track {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Base setup for every panel */
.bs-panel {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  /* Keeps panels full screen */
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* Force subsequent panels to lay exactly over the previous ones */
.bs-panel:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}

/* Style wrapper inside the panel to hold your cards nicely */
.bs-panel-inner {
  /* width: 100%; */
  /* max-width: 1200px; */
  /* margin: 0 auto; */
  /* padding: 2rem; */
  /* background-color: #ffffff; */
  /* Give them a solid background color so they overlap cleanly */
  /* border-radius: 12px; */
  /* box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05); */
  /* Adds a subtle shadow on top edge as cards slide in */
}