:root {
  --fire-red: #DC2626;
  --fire-red-dark: #B91C1C;
  --fire-red-glow: rgba(220, 38, 38, 0.35);
  --white: #fafafa;
  --text: #1a1a1a;
  --text-dim: #666666;
  --whatsapp: #0a8f5a;
  --whatsapp-dark: #076843;
  --whatsapp-glow: rgba(10, 143, 90, 0.3);
  --burnt-orange: #EA580C;
  --cement-grey: #757575;
  --border: rgba(0, 0, 0, 0.08);
  --card-bg: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 40px 90px rgba(0, 0, 0, 0.12);
  --motion-ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-enter-duration: 700ms;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background: var(--white);
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 16px;
  z-index: 10002;
  padding: 10px 12px;
  background: var(--text);
  color: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--white);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-bar {
  width: 0;
  height: 2px;
  background: var(--fire-red);
  transition: width 0.8s var(--motion-ease-soft);
}

#preloader.active .preloader-bar {
  width: 80px;
}

.preloader-initial {
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  opacity: 0;
  transition: opacity 0.6s 0.25s ease;
}

#preloader.active .preloader-initial {
  opacity: 1;
}

/* --- Navbar --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transform: translateY(-100%);
  transition:
    transform 0.6s var(--motion-ease-soft),
    background 0.3s ease,
    border-color 0.3s ease;
}

.site-nav.visible {
  transform: translateY(0);
}

.site-nav.scrolled {
  background: rgba(250, 250, 250, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 48px;
  transition: padding 0.3s ease;
}

.site-nav.scrolled .nav-inner {
  padding: 16px 48px;
}

.nav-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  color: transparent;
  font-size: 0;
  white-space: nowrap;
}

.nav-brand::before {
  content: '';
  display: block;
  height: 64px;
  aspect-ratio: 2172 / 724;
  background: url('./assets/new name logo.png') no-repeat center / contain;
  flex-shrink: 0;
  transition: height 0.3s ease;
  position: relative;
  z-index: 1;
}

.site-nav.scrolled .nav-brand::before {
  height: 52px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--fire-red);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.nav-active {
  color: var(--text);
}

.nav-links a.nav-active::after {
  width: 100%;
}

.nav-links--right .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 4px;
  background: var(--fire-red);
  color: #ffffff;
}

.nav-links--right .nav-cta::after {
  display: none;
}

.nav-links--right .nav-cta:hover {
  background: var(--fire-red-dark);
}

/* --- Mobile hamburger --- */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
.nav-mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.3s var(--motion-ease-out), opacity 0.25s ease;
}
.nav-mobile-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-mobile-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 108px 48px 96px;
  background: var(--white);
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 50%;
  opacity: 0.97;
  will-change: transform;
  overflow: hidden;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--white) 0%, rgba(250, 250, 250, 0) 28%),
    linear-gradient(0deg, var(--white) 0%, rgba(250, 250, 250, 0) 15%);
}

.hero-gallery {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 30%;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-gallery-slide.active {
  z-index: 1;
}

.hero-gallery-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* ===== Gallery bottom nav — pure SVG liquid glass ===== */
.hero-gallery-bottom-nav {
  position: absolute;
  bottom: 12%;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  isolation: isolate;
  overflow: hidden;
  background: none;
  border: none;
  box-shadow: inset 0 0 15px -5px rgb(255 255 255 / .7);
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.hero-gallery-bottom-nav::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 999px;
  filter: url(#glass-distortion);
  -webkit-filter: url(#glass-distortion);
}

.hero-gallery-bottom-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 999px;
  background: rgb(255 255 255 / .06);
  pointer-events: none;
}

.hero-gallery-btn {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  transform: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(26, 26, 26, 0.06);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  font-size: 0;
  flex-shrink: 0;
}

.hero-gallery-btn svg {
  display: block;
  width: 20px;
  height: 20px;
}

.hero-gallery-btn:hover {
  background: var(--fire-red);
  color: #fff;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
  transform: scale(1.05);
}

.hero-gallery-btn:active {
  transform: scale(0.92);
}

.hero-gallery-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  z-index: auto;
}

.hero-gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(26, 26, 26, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0;
}

.hero-gallery-dot.active {
  background: var(--fire-red);
  width: 18px;
  border-radius: 3px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: clamp(48px, 4vw, 80px);
  text-align: left;
}

.hero-tag {
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-h1-top {
  display: block;
  font-family: "Anton", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(60px, 10vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--fire-red);
  margin-bottom: 4px;
}

.hero h1 {
  color: var(--text);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  animation: fadeInLeft 1s 0.45s both;
}

.hero h1 .hero-h1-top {
  animation: heroTopIn 0.9s 0.1s both;
}

@keyframes heroTopIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-tagline {
  max-width: 460px;
  margin: 28px 0 0;
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  animation: fadeInLeft 1s 0.7s both;
}

.hero-divider {
  width: 40px;
  height: 2px;
  margin: 32px 0 0;
  background: var(--fire-red);
  animation: fadeInLeft 1s 0.9s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 32px;
  animation: fadeInLeft 1s 1s both;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--text);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--whatsapp-dark);
  background: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(10, 143, 90, 0.2);
  animation: ctaGlow 3s ease-in-out infinite;
}

.button-primary:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 20px 44px rgba(10, 143, 90, 0.3);
  transform: translateY(-2px) scale(1.02);
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 16px 34px var(--fire-red-glow); }
  50% { box-shadow: 0 24px 48px var(--fire-red-glow), 0 0 0 4px rgba(220, 38, 38, 0.08); }
}

.button-secondary {
  background: var(--white);
  color: var(--text);
  border-color: var(--border);
}

.button-secondary:hover {
  border-color: var(--fire-red);
  color: var(--fire-red);
}

.offer-terms {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.7;
  animation: fadeInLeft 1s 1.1s both;
}

/* --- Marquee --- */
.marquee-bar {
  background: var(--white);
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  text-align: left;
}

.marquee-track {
  display: inline-flex;
  flex-wrap: nowrap;
  animation: marqueeScroll 25s linear infinite;
  will-change: transform;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
}

.marquee-item {
  font-family: "Anton", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cement-grey);
  white-space: nowrap;
}

.marquee-sep {
  font-size: 9px;
  color: var(--fire-red);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  to { transform: translateX(-14.285%); }
}

/* --- Hero live tag --- */
.hero-tag-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 6px 14px 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  animation: fadeInLeft 1s 0.2s both;
}

.hero-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fire-red);
  box-shadow: 0 0 0 0 var(--fire-red-glow);
  animation: livePulseRed 1.6s ease-in-out infinite;
}

@keyframes livePulseRed {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(220, 38, 38, 0); }
}

/* --- Hero photo meta --- */
/* --- Sections --- */
section {
  position: relative;
  padding: 100px 48px;
}

section:nth-of-type(even) {
  background: #f5f5f5;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  margin-bottom: 8px;
  color: var(--fire-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-h2 {
  margin-bottom: 44px;
  color: var(--text);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

/* --- About --- */
.about-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 48px;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.9;
}

.about-text strong {
  color: var(--text);
  font-weight: 700;
}

.about-visual {
  min-height: 400px;
  border-radius: 4px;
  background: url("./assets/running shoes.png") center / cover no-repeat;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s var(--motion-ease-out);
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  pointer-events: none;
  border-radius: 4px;
}

.about-visual-caption {
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 2px;
  background: rgba(26, 26, 26, 0.72);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  white-space: nowrap;
}

/* --- About stats --- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.about-stat-num {
  font-family: "Anton", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--text);
  line-height: 1;
  letter-spacing: -1px;
}

.about-stat-lbl {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* --- How It Works --- */
.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 48px;
}

.how-list {
  list-style: none;
  counter-reset: none;
}

.how-list li {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.how-list li span {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--text);
  color: var(--white);
  font-family: "Anton", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: background 0.3s ease, transform 0.3s var(--motion-ease-out);
}

.how-list li:hover span {
  background: var(--fire-red);
  transform: scale(1.08);
}

.how-list li h3 {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}

.how-list li p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}

.how-visual {
  min-height: 420px;
  border-radius: 4px;
  background: url("./assets/redbull.png") center / cover no-repeat;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.how-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  pointer-events: none;
  border-radius: 4px;
}

/* --- Proof --- */
.proof-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: start;
  gap: 48px;
}

.proof-visual {
  min-height: 420px;
  border-radius: 4px;
  background: url("./assets/chinese jacket.png") center / cover no-repeat;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.proof-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  pointer-events: none;
  border-radius: 4px;
}

.proof-list {
  list-style: none;
}

.proof-list li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

.proof-list li:last-child {
  border-bottom: none;
}

.proof-list li strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.proof-bottom {
  margin-top: 28px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

.proof-bottom strong {
  color: var(--fire-red);
  font-weight: 700;
}

/* --- Bottom sections wrapper (mobile reorder) --- */
.bottom-sections {
  display: flex;
  flex-direction: column;
}

/* --- Contact --- */
#contact {
  background: #f5f5f5;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 48px;
}

.contact-info h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text);
}

.contact-info p {
  margin-bottom: 16px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

.contact-info p strong {
  display: inline;
  color: var(--text);
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.consultation-offer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  font-weight: 500;
  color: var(--fire-red) !important;
}

.contact-payment {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.contact-risk {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-dim);
  font-style: italic;
}

.contact-card {
  position: relative;
  padding: 36px;
  border-radius: 4px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s var(--motion-ease-out),
              box-shadow 0.4s var(--motion-ease-out);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.contact-visual {
  margin-bottom: 24px;
  min-height: 160px;
  border-radius: 4px;
  background: url("./assets/lifestyle.png") center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.contact-visual::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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  pointer-events: none;
  border-radius: 4px;
}

.products-visual,
.map-visual {
  display: none;
}

.contact-primary {
  width: 100%;
  margin-bottom: 16px;
}

.contact-alt {
  color: var(--text-dim);
  font-size: 13px;
}

.contact-alt a {
  color: var(--text);
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-alt a:hover {
  color: var(--fire-red);
}

.contact-alt span {
  margin: 0 8px;
  color: var(--border);
}

/* --- Products urgency --- */
.products-urgency {
  font-size: 13px;
  color: var(--fire-red);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* --- Products filter --- */
.products-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 6px 16px;
  border: 1px solid var(--cement-grey);
  border-radius: 2px;
  background: transparent;
  color: var(--cement-grey);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.filter-btn:hover {
  border-color: var(--text);
  color: var(--text);
}

.filter-btn.active {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}

.filter-btn:active {
  transform: scale(0.96);
}

/* --- Products --- */
#products {
  background: #f5f5f5;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ===== Liquid glass utility ===== */
.liquid-glass {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: none;
  border: none;
  box-shadow: inset 0 0 15px -5px rgb(255 255 255 / .5);
}

.liquid-glass::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  filter: url(#glass-distortion);
  -webkit-filter: url(#glass-distortion);
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgb(255 255 255 / .06);
  pointer-events: none;
}

/* Lighter variant — for cards with text */
.liquid-glass-light {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: none;
  border: none;
  box-shadow: inset 0 0 15px -5px rgb(255 255 255 / .4);
}

.liquid-glass-light::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  filter: url(#glass-distortion-light);
  -webkit-filter: url(#glass-distortion-light);
}

.liquid-glass-light::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: rgb(255 255 255 / .85);
  pointer-events: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ===== About stat liquid glass ===== */
.about-stat.liquid-glass-stat {
  border-radius: 999px;
  padding: 12px 28px;
  background: none;
  border: none;
  box-shadow: inset 0 0 12px -4px rgb(255 255 255 / .5);
}

.about-stat.liquid-glass-stat::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 999px;
  filter: url(#glass-distortion-light);
  -webkit-filter: url(#glass-distortion-light);
}

.about-stat.liquid-glass-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 999px;
  background: rgb(255 255 255 / .08);
  pointer-events: none;
}

/* ===== How step number liquid glass ===== */
.how-list li .step-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px !important;
  height: 48px !important;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px !important;
  background: none !important;
  border: none !important;
  box-shadow: inset 0 0 12px -4px var(--fire-red-glow);
  flex-shrink: 0;
}

.how-list li .step-glass::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 999px;
  filter: url(#glass-distortion-light);
  -webkit-filter: url(#glass-distortion-light);
}

.how-list li .step-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 999px;
  background: rgb(255 255 255 / .06);
  pointer-events: none;
}

/* ===== Product card liquid glass ===== */
.product-card.liquid-glass-light {
  border-radius: 16px;
  box-shadow: inset 0 0 15px -5px rgb(255 255 255 / .4);
  border: 1px solid rgb(255 255 255 / .3);
}

.product-card {
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.product-card.filter-hidden {
  display: none;
}

.product-image {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}

.product-image::before {
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  pointer-events: none;
  z-index: 1;
}

.product-info {
  padding: 20px 24px 24px;
}

.product-brand {
  display: block;
  color: var(--cement-grey);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--motion-ease-out);
}

.product-card:hover .product-image-bg {
  transform: scale(1.06);
}

.product-status {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.product-status--available {
  background: var(--text);
  color: var(--white);
}

.product-status--low {
  background: var(--fire-red);
  color: var(--white);
}

.product-cta-overlay {
  display: block;
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--text);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.product-cta-overlay:hover {
  background: var(--whatsapp);
}
/* ponytail: CTA in info area, always visible, no overlay positioning */

.product-info h3 {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.product-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--text);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 7px;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.18);
  border-radius: 999px;
}

.product-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  background: rgba(220, 38, 38, 0.08);
  color: var(--fire-red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
}

.product-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}

/* --- Map / Pickup Point --- */
#map {
  background: var(--white);
}

.map-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  transition: box-shadow 0.4s var(--motion-ease-out);
  cursor: pointer;
}

.map-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: none;
  pointer-events: none;
}

.map-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(0deg, rgba(26, 26, 26, 0.92) 0%, rgba(26, 26, 26, 0) 100%);
  pointer-events: none;
}

.map-info-label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  background: var(--fire-red);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.map-info h3 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.map-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.map-card a {
  position: absolute;
  inset: 0;
  z-index: 2;
  text-indent: -9999px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .map-card {
    padding-bottom: 20px;
  }
  .map-card iframe {
    display: none;
  }
  .map-info {
    position: static;
    background: var(--text);
    border-radius: 4px 4px 0 0;
    padding: 16px 20px;
  }
  .map-info p {
    color: rgba(255,255,255,0.55);
  }
  .map-card a {
    position: static;
    text-indent: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: var(--text);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 12px;
    transition: background 0.3s ease;
  }
  .map-card a:hover {
    background: var(--whatsapp);
  }
}

/* --- Footer --- */
footer {
  padding: 72px 48px 48px;
  text-align: center;
  background: var(--text);
  color: var(--white);
}

.footer-bar {
  width: 40px;
  height: 2px;
  margin: 0 auto 24px;
  background: var(--fire-red);
}

.footer-name {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
}

.footer-name small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
}

.footer-meta {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-location {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer-studio {
  display: grid;
  justify-items: center;
  gap: 10px;
  max-width: 520px;
  margin: 48px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-studio-label {
  color: var(--fire-red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.footer-studio-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
  text-decoration: none;
  transition: color 220ms var(--motion-ease-out), transform 220ms var(--motion-ease-out);
}

.footer-studio-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--fire-red);
  transition: transform 220ms var(--motion-ease-out);
}

.footer-studio-link:hover {
  color: var(--fire-red);
  transform: translateY(-2px);
}

.footer-studio-link:hover svg {
  transform: translate(3px, -3px);
}

.footer-studio-link:focus-visible {
  outline: 2px solid var(--fire-red);
  outline-offset: 7px;
}

.footer-studio p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* --- Scroll Reveals --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--motion-enter-duration) var(--motion-ease-soft),
              transform var(--motion-enter-duration) var(--motion-ease-soft);
}

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

/* --- Staggered Reveals --- */
.reveal-stagger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--motion-ease-out),
              transform 600ms var(--motion-ease-out);
}

.reveal-stagger.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Animations --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Desktop overrides */
@media (min-width: 769px) {
  .nav-drawer {
    display: none;
  }
  body.drawer-open {
    overflow: visible;
    position: static;
    width: auto;
  }
  .bottom-sections > section#contact {
    order: 1;
  }
  .bottom-sections > section#map {
    order: 0;
  }
  .hero-mobile-nav {
    display: none !important;
  }
}

/* --- Mobile --- */
@media screen and (max-width: 768px) {
  section {
    padding: 48px 24px;
  }
  /* ponytail: sections 48px v-margin, tight enough */

  .site-nav {
    padding: 0 24px;
  }

  .nav-inner {
    padding: 20px 0;
  }

  .site-nav.scrolled .nav-inner {
    padding: 14px 0;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-inner > .nav-links--left {
    display: none;
  }

  .nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 101;
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: transform 0.35s var(--motion-ease-out), opacity 0.35s ease, visibility 0.35s ease;
  }
  .nav-drawer.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .nav-drawer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    z-index: 102;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-drawer-close:hover,
  .nav-drawer-close:focus-visible {
    opacity: 1;
  }
  .nav-drawer .nav-links--left {
    flex-direction: column;
    gap: 6px;
  }
  .nav-drawer .nav-links--left a {
    font-size: 16px;
    letter-spacing: 3px;
    padding: 14px 24px 14px 27px;
    min-height: 44px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
  }
  .nav-drawer.open .nav-links--left a {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-drawer.open .nav-links--left a:nth-child(1) { transition-delay: 0.05s; }
  .nav-drawer.open .nav-links--left a:nth-child(2) { transition-delay: 0.1s; }
  .nav-drawer.open .nav-links--left a:nth-child(3) { transition-delay: 0.15s; }
  .nav-drawer.open .nav-links--left a:nth-child(4) { transition-delay: 0.2s; }
  .nav-drawer.open .nav-links--left a:nth-child(5) { transition-delay: 0.25s; }
  .nav-drawer .nav-links--left a.nav-active {
    color: var(--fire-red);
    border-left: 3px solid var(--fire-red);
    padding-left: 24px;
  }
  .nav-drawer-cta {
    margin-top: 32px;
    padding: 12px 32px;
    border-radius: 999px;
    background: var(--fire-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .nav-drawer.open .nav-drawer-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
  }
  body.drawer-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .nav-links--right .nav-cta {
    padding: 0 12px;
    min-height: 36px;
    font-size: 9px;
    letter-spacing: 1px;
  }

  .nav-brand {
    position: static;
    transform: none;
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .nav-brand::before {
    height: 28px;
    aspect-ratio: 2172 / 724;
    background: url('./assets/new name logo.png') no-repeat center / contain;
  }

  /* ponytail: static logo in flex flow, burger + CTA on each side */

  .hero {
    padding: 72px 24px 28px;
    min-height: auto;
    flex-direction: column;
  }

  .hero-photo {
    position: relative;
    width: 100%;
    height: 170px;
    margin-top: 16px;
  }

  .hero-gallery {
    height: 170px;
  }

  /* ===== Mobile gallery bottom nav — SVG liquid glass ===== */
  .hero-gallery-bottom-nav {
    bottom: 32px;
    padding: 4px 8px;
    gap: 10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 0 15px -5px rgb(255 255 255 / .3);
  }

  .hero-gallery-bottom-nav::before {
    background: rgb(255 255 255 / .04);
  }

  .hero-gallery-btn {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .hero-gallery-btn:hover {
    background: var(--fire-red);
    color: #fff;
    transform: scale(1.05);
  }

  .hero-gallery-dot {
    background: rgba(255, 255, 255, 0.3);
  }

  .hero-gallery-dot.active {
    width: 18px;
    border-radius: 3px;
  }

  /* ===== Mobile progress bar ===== */
  .hero-mobile-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0;
    pointer-events: none;
  }

  .hero-mobile-progress {
    position: relative;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }
  .hero-mobile-progress-fill {
    display: block;
    width: 0%;
    height: 100%;
    background: var(--fire-red);
    box-shadow: 0 0 8px var(--fire-red-glow);
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .hero-photo::after {
    background: linear-gradient(180deg, rgba(250, 250, 250, 0) 60%, var(--white) 100%);
  }

  .hero-content {
    text-align: left;
    margin-left: 0;
  }

  .hero-h1-top {
    font-size: clamp(32px, 10vw, 48px);
  }

  .hero h1 {
    font-size: clamp(20px, 5vw, 28px);
  }

  .hero h1 br {
    display: none;
  }

  .hero-tag-wrap {
    margin-bottom: 12px;
  }

  .hero-tag {
    font-size: 9px;
  }

  .offer-terms {
    display: none;
  }

  .hero-tagline {
    margin-top: 12px;
    font-size: 13px;
  }

  .hero-divider {
    margin-top: 14px;
    margin-bottom: 14px;
    margin-left: 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 14px;
    gap: 8px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 44px;
    font-size: 10px;
  }

  .about-body,
  .how-grid,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .about-visual {
    min-height: 200px;
  }

  .about-stat-num {
    font-size: 26px;
  }

  .about-text p {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .how-list li {
    margin-bottom: 24px;
  }

  .how-list li span {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .how-list li h3 {
    font-size: 16px;
  }

  .how-list li p {
    font-size: 14px;
  }

  .how-visual {
    min-height: 200px;
  }

  .proof-visual {
    min-height: 200px;
  }

  .proof-list li {
    font-size: 14px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .proof-list li strong {
    font-size: 12px;
  }

  .proof-bottom {
    font-size: 14px;
    margin-top: 20px;
  }

  .products-filter {
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
  }
  .filter-btn {
    padding: 8px 16px;
    font-size: 11px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-info {
    padding: 16px 20px 20px;
  }

  .contact-card {
    padding: 28px 24px;
  }

  .section-h2 {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .section-h2 br {
    display: none;
  }

  footer {
    padding: 40px 24px;
  }

  /* ===== MOBILE REDESIGN ===== */

  /* Page stack for section reordering */
  .page-stack {
    display: flex;
    flex-direction: column;
  }
  main#main {
    display: flex;
    flex-direction: column;
  }
  main#main > #home { order: 0; }
  main#main > .marquee-bar { order: 1; }
  main#main > #products { order: 2; }
  main#main > #proof { order: 3; }
  main#main > #how { order: 4; }
  main#main > #about { order: 5; }

  /* Hero — poster treatment */
  .hero {
    padding: 80px 24px 40px;
    gap: 0;
  }
  .hero-photo {
    height: 340px;
    margin-top: 24px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  }
  .hero-photo::after {
    display: none;
  }
  .hero-gallery {
    height: 340px;
    border-radius: 14px;
    overflow: hidden;
  }
  .hero-gallery-slide {
    background-position: center 60%;
  }
  .hero-gallery-video {
    object-position: center 60%;
  }
  .hero-h1-top {
    font-size: clamp(40px, 12vw, 56px);
  }
  .hero h1 {
    font-size: clamp(22px, 6vw, 30px);
  }
  .hero-tagline {
    font-size: 14px;
  }
  .hero-divider {
    margin: 20px 0;
    width: 32px;
  }
  .hero-actions {
    margin-top: 20px;
    gap: 6px;
  }
  .hero-actions .button-primary {
    min-height: 48px;
    font-size: 11px;
    box-shadow: 0 6px 14px rgba(10, 143, 90, 0.15);
    animation: none;
  }
  .hero-actions .button-secondary {
    min-height: 44px;
    font-size: 10px;
    background: none;
    border: none;
    color: var(--cement-grey);
  }
  /* ponytail: quiet secondary = text link, no border */
  .hero-tag-wrap {
    margin-bottom: 10px;
  }
  .hero-tag {
    font-size: 9px;
  }

  /* Remove repetitive section visuals */
  .about-visual { display: none; }
  .how-visual { display: none; }
  .proof-visual { display: none; }
  .contact-visual { display: none; }

  /* Section rhythm — less chrome, more breath */
  .section-label {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 6px;
    opacity: 0.7;
  }
  .section-h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .section-h2 br {
    display: none;
  }

  /* About — text only */
  .about-text p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 14px;
  }
  .about-stats {
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
  }
  .about-stat-num {
    font-size: 24px;
  }

  /* How — tighter steps */
  .how-list li {
    gap: 16px;
    margin-bottom: 20px;
  }
  .how-list li span {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
  .how-list li h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }
  .how-list li p {
    font-size: 13px;
  }

  /* Proof — tighter bullets */
  .proof-list li {
    font-size: 13px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  .proof-list li strong {
    font-size: 11px;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
  }
  .proof-bottom {
    font-size: 13px;
    margin-top: 16px;
  }

  /* Products — premium mobile scroller */
  .products-filter {
    gap: 6px;
    margin-bottom: 12px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    justify-content: flex-start;
  }
  .products-filter::-webkit-scrollbar { display: none; }
  .filter-btn {
    padding: 8px 18px;
    font-size: 10px;
    letter-spacing: 0.8px;
    white-space: nowrap;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: transparent;
    color: var(--text-dim);
    transition: all 0.25s ease;
    flex-shrink: 0;
  }
  .filter-btn.active {
    background: #111;
    border-color: #111;
    color: #fff;
  }
  .products-urgency {
    font-size: 11px;
    color: var(--fire-red);
    margin-bottom: 14px;
    padding: 0;
    background: none;
    border-radius: 0;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.3px;
  }
  .products-grid {
    gap: 12px;
  }
  .product-card {
    flex-direction: row;
    border-radius: 16px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    padding: 10px;
    margin-bottom: 0;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .product-card.liquid-glass-light {
    border-radius: 16px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
  }
  .product-image {
    width: 120px;
    height: 120px;
    min-height: auto;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
  }
  .product-image-bg {
    width: 100%;
    height: 100%;
  }
  .product-status {
    font-size: 8px;
    padding: 2px 7px;
    top: 6px;
    left: 6px;
    border-radius: 4px;
  }
  .product-card .product-cta-overlay {
    margin-top: auto;
    padding: 7px 10px;
    font-size: 9px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    text-align: center;
    letter-spacing: 0.5px;
    font-weight: 600;
  }
  .product-qv--info {
    margin-top: 6px;
    padding: 6px 10px;
    font-size: 9px;
    border-radius: 999px;
  }
  .product-info {
    flex: 1;
    min-width: 0;
    padding: 0 4px 0 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .product-meta {
    margin-bottom: 3px;
    flex-wrap: wrap;
    gap: 3px;
  }
  .product-brand {
    font-size: 9px;
    letter-spacing: 1.2px;
  }
  .product-verified {
    font-size: 7px;
    letter-spacing: 0.8px;
    padding: 2px 6px;
  }
  .product-info h3 {
    font-size: 14px;
    margin-bottom: 3px;
    line-height: 1.2;
  }
  .product-foot {
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
  }
  .product-tag {
    font-size: 8px;
    padding: 2px 7px;
    border-radius: 4px;
  }
  .product-price {
    font-size: 16px;
  }

  /* Contact — clean CTA block */
  .contact-grid {
    gap: 24px;
  }
  .contact-info h3 {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .contact-info p {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .contact-card {
    padding: 20px;
  }
  .contact-card .button-primary {
    width: 100%;
    min-height: 44px;
    font-size: 11px;
  }
  .contact-payment {
    font-size: 13px;
  }
  .consultation-offer {
    font-size: 13px;
    margin-top: 14px;
    padding-top: 12px;
  }
  .contact-risk {
    font-size: 12px;
  }

  /* Map — compact directions */
  .map-card {
    padding-bottom: 0;
  }
  .map-info h3 {
    font-size: 15px;
    margin-bottom: 2px;
  }
  .map-info p {
    font-size: 12px;
  }

  /* Footer — tighter */
  footer {
    padding: 32px 24px 24px;
  }
  .footer-name {
    font-size: 16px;
  }
  .footer-name small {
    font-size: 10px;
  }
  .footer-meta {
    font-size: 9px;
  }
  .footer-location {
    flex-wrap: wrap;
    gap: 6px 9px;
    margin-top: 14px;
    font-size: 10px;
    letter-spacing: 1.3px;
  }
  .footer-studio {
    margin-top: 36px;
    padding-top: 24px;
  }
  .footer-studio-link {
    font-size: 32px;
  }

  /* Modal — refined bottom sheet */
  .modal-viewport {
    height: 36vh;
  }
  .modal-body {
    padding: 14px 18px 18px;
  }
  .modal-body h3 {
    font-size: 15px;
  }
  .modal-wa {
    padding-top: 10px;
  }
  .modal-close {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

/* --- Print / PDF export --- */
@media print {
  @page {
    size: A4;
    margin: 14mm;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    background: var(--white) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    box-shadow: none !important;
  }

  #preloader,
  .skip-link,
  .site-nav,
  .hero-gallery-btn,
  .hero-gallery-dots,
  .products-urgency,
  .products-filter,
  .map-card a {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 0 0 18mm;
    align-items: flex-start;
    break-after: avoid;
    page-break-after: avoid;
  }

  .hero-photo {
    position: relative;
    width: 100%;
    height: 92mm;
    opacity: 1;
    transform: none !important;
    margin-bottom: 14mm;
  }

  .hero-photo::after {
    background:
      linear-gradient(90deg, var(--white) 0%, rgba(250, 250, 250, 0) 24%),
      linear-gradient(0deg, var(--white) 0%, rgba(250, 250, 250, 0) 12%);
  }

  .hero-gallery-slide,
  .hero-gallery-video {
    transition: none;
  }

  .hero-content {
    margin-left: 0;
    max-width: none;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  section {
    padding: 0 0 18mm;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  section:nth-of-type(even),
  #contact,
  #products {
    background: transparent !important;
  }

  .container {
    max-width: none;
  }

  .about-body,
  .how-grid,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-visual,
  .how-visual,
  .proof-visual,
  .contact-visual,
  .map-card {
    min-height: 56mm;
    box-shadow: none;
  }

  .products-grid {
    gap: 12px;
  }

  .product-card,
  .contact-card,
  .map-card {
    box-shadow: none;
  }

  .product-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .product-image {
    min-height: 62mm;
  }

  .map-card iframe {
    height: 70mm;
  }

  footer {
    padding: 0;
    background: transparent;
    color: var(--text);
  }

  .footer-bar,
  .footer-studio {
    display: none;
  }

  .footer-name,
  .footer-meta {
    color: var(--text);
  }
}

html.pdf-mode body {
  background: var(--white);
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

html.pdf-mode *,
html.pdf-mode *::before,
html.pdf-mode *::after {
  animation: none !important;
  transition: none !important;
}

html.pdf-mode .skip-link,
html.pdf-mode .site-nav,
html.pdf-mode #preloader,
html.pdf-mode .hero-gallery-btn,
html.pdf-mode .hero-gallery-dots,
html.pdf-mode .products-filter,
html.pdf-mode .map-card a {
  display: none !important;
}

html.pdf-mode .hero {
  min-height: auto;
  align-items: flex-start;
  padding: 88px 48px 72px;
}

html.pdf-mode .hero-photo {
  top: 0;
  bottom: 0;
  opacity: 1;
}

html.pdf-mode .hero-content {
  margin-left: 0;
}

html.pdf-mode section {
  padding-top: 84px;
  padding-bottom: 84px;
}

/* ===== Product Quick View button — iOS frosted pill ===== */
.product-qv {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0.5px solid rgb(255 255 255 / .35);
  border-radius: 999px;
  background: rgb(255 255 255 / .18);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  color: #fff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  box-shadow:
    inset 0 0.5px 0 rgb(255 255 255 / .45),
    0 2px 8px rgb(0 0 0 / .15);
  text-shadow: 0 0.5px 1px rgb(0 0 0 / .15);
  -webkit-tap-highlight-color: transparent;
}

/* Quick View — in-image overlay */
.product-qv {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  padding: 6px 14px;
  opacity: 1;
}

/* Quick View — in-info variant (new) */
.product-qv--info {
  position: static;
  transform: none;
  width: 100%;
  padding: 8px 12px;
  margin-top: 8px;
  background: transparent;
  border: 1px solid var(--border);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--text-dim);
  box-shadow: none;
  text-shadow: none;
  font-size: 10px;
  letter-spacing: 0.8px;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-qv--info:hover {
  background: var(--card-bg);
  border-color: var(--text);
  color: var(--text);
}

.product-qv--info:active {
  transform: scale(0.97);
}

/* --- Product Quick-View Modal — iOS Sheet --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.modal-panel {
  background: var(--white);
  border-radius: 20px 20px 0 0;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.12);
  position: relative;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal-backdrop.active .modal-panel {
  transform: translateY(0);
}

/* iOS grab handle */
.modal-drag-handle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}

.modal-drag-handle:active {
  cursor: grabbing;
}

.modal-drag-handle span {
  display: block;
  width: 36px;
  height: 5px;
  border-radius: 999px;
  background: rgba(0,0,0,0.15);
  transition: background 0.2s;
}

.modal-drag-handle:hover span {
  background: rgba(0,0,0,0.25);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(0,0,0,0.08);
  color: #000;
  font-size: 20px;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal-close:hover {
  background: rgba(0,0,0,0.15);
  transform: scale(1.05);
}
.modal-close:active {
  transform: scale(0.92);
}
.modal-media {
  position: relative;
  background: #f0f0f0;
  flex-shrink: 0;
}
.modal-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 60vh;
  overflow: hidden;
  isolation: isolate;
  background: #171717;
}
.modal-media-backdrop {
  position: absolute;
  inset: -8%;
  z-index: 0;
  width: 116%;
  height: 116%;
  object-fit: cover;
  filter: blur(24px) saturate(0.9) brightness(0.74);
  transform: scale(1.02);
  pointer-events: none;
}
.modal-viewport::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.14);
  pointer-events: none;
}
.modal-media-foreground {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--text);
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}
.modal-media:hover .modal-nav-btn {
  opacity: 1;
}
.modal-prev { left: 12px; }
.modal-next { right: 12px; }
.modal-nav-btn:hover {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.modal-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.modal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.modal-dot.active {
  background: #fff;
}
.modal-body {
  padding: 20px 24px 24px;
  flex-shrink: 0;
}
.modal-body .modal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.modal-brand {
  color: var(--cement-grey);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.modal-verified {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 7px;
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.18);
  border-radius: 999px;
  color: var(--text);
}
.modal-body h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text);
  margin-bottom: 8px;
}
.modal-foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
}
.modal-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 2px;
  background: rgba(220,38,38,0.08);
  color: var(--fire-red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.modal-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.3px;
}
.modal-wa {
  margin-top: 14px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
p.shipping-note {
  margin-top: 10px;
  padding: 8px 16px;
  display: inline-block;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  border: 1px solid #888;
  box-shadow: 0 0 14px rgba(255,255,255,0.12);
}
@media (max-width: 768px) {
  .modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }
  .modal-panel {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 16px 16px 0 0;
  }
  .modal-viewport {
    aspect-ratio: auto;
    height: 40vh;
  }
  .modal-nav-btn {
    opacity: 1;
  }
  .modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
  }
  .modal-body .modal-meta {
    order: 0;
  }
  .modal-body h3 {
    order: 1;
  }
  .modal-body .modal-foot-inner {
    order: 2;
  }
  .modal-wa {
    order: 3;
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding-top: 12px;
  }
  .modal-close {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .modal-backdrop,
  .modal-panel,
  .modal-backdrop.active .modal-panel {
    transition: none;
  }
}

/* --- Mobile drawer reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .nav-drawer {
    transition: none;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.revealed {
    opacity: 1;
    transform: none;
  }

  .reveal-stagger,
  .reveal-stagger.revealed {
    opacity: 1;
    transform: none;
  }

  .button-primary {
    animation: none;
  }

  .hero-live-dot {
    animation: none;
    box-shadow: none;
  }
}
