/* ============================================================
   GOLDEN RENTAL (PTY) LTD. — MASTER STYLESHEET v2.0
   Golden Rental (Pty) Ltd.
   Stack: Vanilla CSS3 | Google Fonts: Inter
   ============================================================ */

/* Smooth scroll — respects reduced-motion */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ─────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
───────────────────────────────────────── */
:root {
  /* === DARK PALETTE (Primary) === */
  --gold:            #d4af37;
  --gold-light:      #e8c84a;
  --gold-warm:       #c9a027;
  --gold-dim:        rgba(212, 175, 55, 0.12);
  --gold-glow:       rgba(212, 175, 55, 0.35);
  --bg-dark:         #0f0f0f;
  --bg-card:         #161616;
  --bg-card-hover:   #1e1e1e;
  --bg-glass:        rgba(15, 15, 15, 0.85);
  --white:           #ffffff;
  --cream:           #f3e5ab;
  --text-muted:      rgba(255, 255, 255, 0.55);
  --border-subtle:   rgba(212, 175, 55, 0.18);
  --border-card:     rgba(255, 255, 255, 0.06);

  /* === LIGHT PALETTE (Alternating Sections) === */
  --bg-light:        #faf9f6;
  --bg-light-card:   #ffffff;
  --bg-light-alt:    #f5f3ee;
  --text-dark:       #1a1a1a;
  --text-dark-muted: #6b6b6b;
  --border-light:    rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --fs-xs:     0.75rem;
  --fs-sm:     0.875rem;
  --fs-base:   1rem;
  --fs-md:     1.125rem;
  --fs-lg:     1.25rem;
  --fs-xl:     1.5rem;
  --fs-2xl:    2rem;
  --fs-3xl:    2.75rem;
  --fs-4xl:    3.75rem;
  --fs-5xl:    5rem;

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Border radius */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill: 999px;

  /* Transitions */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
  --ease-inout: cubic-bezier(0.45, 0, 0.55, 1);
  --t-fast:  0.18s;
  --t-base:  0.3s;
  --t-slow:  0.5s;

  /* Shadows */
  --shadow-card:  0 4px 24px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0,0,0,0.3);
  --shadow-gold:  0 0 30px rgba(212, 175, 55, 0.25), 0 0 60px rgba(212, 175, 55, 0.1);
  --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(212, 175, 55, 0.15);
  --shadow-light: 0 2px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-light-hover: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);

  /* Z-index scale */
  --z-base:    1;
  --z-card:    10;
  --z-nav:     100;
  --z-overlay: 200;
  --z-modal:   300;
}

/* ─────────────────────────────────────────
   2. RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  background-color: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.has-main-js body {
  opacity: 0;
  animation: bodyFallbackReveal 0.4s ease 2.5s forwards;
}

.has-main-js body.page-ready {
  opacity: 1;
  transition: opacity 0.4s ease;
  animation: none;
}

@keyframes bodyFallbackReveal {
  to { opacity: 1; }
}

/* Prevent fixed navbar from covering anchor targets */
section[id],
[id^="section-"] {
  scroll-margin-top: 110px;
}

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

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

ul, ol { list-style: none; }

button {
  font-family: var(--font-base);
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-base);
}

/* ─────────────────────────────────────────
   3. TYPOGRAPHY
───────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6vw, var(--fs-5xl)); }
h2 { font-size: clamp(1.8rem, 4vw, var(--fs-3xl)); }
h3 { font-size: clamp(1.3rem, 2.5vw, var(--fs-xl)); }
h4 { font-size: var(--fs-lg); font-weight: 700; }

p {
  color: var(--cream);
  font-size: var(--fs-md);
  line-height: 1.75;
  font-weight: 400;
}

/* Light section text overrides */
.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4,
.section--light h5,
.section--light h6 {
  color: var(--text-dark);
}

.section--light p,
.section--light .card__desc {
  color: var(--text-dark-muted);
}

.text-gold   { color: var(--gold); }
.text-cream  { color: var(--cream); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }
.text-dark   { color: var(--text-dark); }
.text-center { text-align: center; }
.text-sm     { font-size: var(--fs-sm); }

.label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─────────────────────────────────────────
   4. LAYOUT UTILITIES
───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--wide {
  max-width: 1440px;
  padding: 0 var(--space-8);
}

.section {
  padding: var(--space-24) 0;
  position: relative;
}

.section--sm {
  padding: var(--space-16) 0;
}

/* Light section base */
.section--light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section--light-alt {
  background: var(--bg-light-alt);
  color: var(--text-dark);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); align-items: stretch; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-col    { display: flex; flex-direction: column; }
.gap-4  { gap: var(--space-4); }
.gap-6  { gap: var(--space-6); }
.gap-8  { gap: var(--space-8); }

/* ─────────────────────────────────────────
   5. SECTION HEADINGS
───────────────────────────────────────── */
.section-header {
  margin-bottom: var(--space-16);
  text-align: center;
}

.section-header .label {
  display: inline-block;
  margin-bottom: var(--space-4);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  max-width: 620px;
  margin: 0 auto;
  font-size: var(--fs-lg);
}

.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: var(--space-4) auto 0;
  border-radius: var(--radius-pill);
}

/* Light section label variant */
.section--light .label {
  color: var(--gold-warm);
}

.section--light .gold-line {
  background: linear-gradient(90deg, var(--gold-warm), transparent);
}

/* ─────────────────────────────────────────
   6. BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.85rem var(--space-8);
  font-size: var(--fs-base);
  font-weight: 600;
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Primary button — Gold filled */
.btn-primary {
  background: var(--gold);
  color: #0f0f0f;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

/* Outline button — Gold bordered */
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--gold-glow);
}

/* Ghost button — subtle */
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid var(--border-card);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* Light section button variants */
.section--light .btn-outline {
  color: var(--gold-warm);
  border-color: var(--gold-warm);
}

.section--light .btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: var(--fs-md);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: var(--fs-sm);
}

/* Button icon arrow animation */
.btn .btn-arrow {
  transition: transform var(--t-fast) var(--ease-out);
  display: inline-block;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ─────────────────────────────────────────
   7. NAVIGATION
───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: var(--space-6) 0;
  transition: padding var(--t-base) var(--ease-out),
              background var(--t-base) var(--ease-out),
              backdrop-filter var(--t-base);
}

.navbar.scrolled {
  padding: var(--space-3) 0;
  background: var(--bg-glass);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--border-subtle);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  min-width: 84px;
}

.navbar__logo-icon {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.navbar__logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1.04);
  mix-blend-mode: screen;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.navbar__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding: var(--space-1) 0;
  transition: color var(--t-fast);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  border-radius: var(--radius-pill);
  transition: width var(--t-base) var(--ease-out);
}

.navbar__link:hover { color: var(--white); }
.navbar__link:hover::after { width: 100%; }
.navbar__link.active { color: var(--gold); }
.navbar__link.active::after { width: 100%; }

.navbar__cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  gap: var(--space-3);
}

.navbar.scrolled .navbar__logo-icon {
  width: 72px;
  height: 72px;
}

/* Mobile hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-pill);
  transition: all var(--t-base) var(--ease-out);
}

.navbar__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.navbar__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: rgba(15,15,15,0.98);
  z-index: calc(var(--z-nav) - 1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

.navbar__mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.navbar__mobile-menu a {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--white);
  transition: color var(--t-fast);
}
.navbar__mobile-menu a:hover { color: var(--gold); }

/* ─────────────────────────────────────────
   8. CARDS (Dark Section)
───────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base),
              border-color var(--t-base);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-hover);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--gold-dim);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  transition: background var(--t-base), box-shadow var(--t-base);
}

.card:hover .card__icon {
  background: rgba(212, 175, 55, 0.25);
  box-shadow: 0 0 20px var(--gold-glow);
}

.card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.card__desc {
  color: var(--text-muted);
  font-size: var(--fs-base);
  line-height: 1.7;
}

/* Light section cards */
.section--light .card {
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-light);
}

.section--light .card:hover {
  box-shadow: var(--shadow-light-hover);
  border-color: rgba(212, 175, 55, 0.2);
}

.section--light .card__icon {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.15);
}

.section--light .card__title {
  color: var(--text-dark);
}

.section--light .card__desc {
  color: var(--text-dark-muted);
}

/* ─────────────────────────────────────────
   9. TRUST STRIP
───────────────────────────────────────── */
.trust-strip {
  background: var(--bg-light);
  padding: var(--space-16) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.trust-metric {
  text-align: center;
  padding: 0 var(--space-6);
}

.trust-metric__number {
  font-size: var(--fs-3xl);
  font-weight: 900;
  color: var(--gold-warm);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}

.trust-metric__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-2);
  display: block;
}

.trust-divider {
  width: 1px;
  height: 50px;
  background: var(--border-light);
}

/* Trust badges inline */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-top: var(--space-10);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 20px;
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-light);
}

.trust-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-warm);
  fill: none;
  stroke-width: 2;
}

/* ─────────────────────────────────────────
   10. TESTIMONIALS
───────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.testimonial-card {
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-light);
  transition: transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-light-hover);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.testimonial-quote {
  font-size: var(--fs-md);
  color: var(--text-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-6);
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 0;
  position: absolute;
  top: -8px;
  left: -4px;
  opacity: 0.4;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: var(--fs-sm);
  color: #0f0f0f;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: var(--fs-xs);
  color: var(--text-dark-muted);
}

/* ─────────────────────────────────────────
   11. EQUIPMENT CARDS
───────────────────────────────────────── */
.equipment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base),
              box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.equipment-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-hover);
}

.equipment-card__visual {
  height: 220px;
  background: linear-gradient(135deg, #161616 0%, #0f0f0f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.equipment-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.equipment-card:hover .equipment-card__visual img {
  transform: scale(1.06);
}

.equipment-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.equipment-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.equipment-card__desc {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-4);
  line-height: 1.6;
  flex-grow: 1;
}

.equipment-card__body .btn-outline {
  margin-top: auto;
  width: 100%;
}

/* Rental term badges */
.term-badges {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.badge {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.badge--gold {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.badge--outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-card);
}

/* ─────────────────────────────────────────
   12. FORM ELEMENTS
───────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.form-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.85rem var(--space-4);
  color: var(--white);
  font-size: var(--fs-base);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.04);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4af37' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--bg-card);
  color: var(--white);
}

.form-textarea { min-height: 130px; resize: vertical; }

/* ─────────────────────────────────────────
   13. PAGE HERO (Inner Pages)
───────────────────────────────────────── */
.page-hero {
  min-height: 50vh;
  min-height: 50svh; /* iOS Safari: excludes address bar */
  display: flex;
  align-items: center;
  padding: calc(var(--space-24) + 80px) 0 var(--space-20);
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,55,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__content { position: relative; z-index: 2; }
.page-hero__label { margin-bottom: var(--space-4); }

.page-hero__title {
  margin-bottom: var(--space-6);
}

.page-hero__title .gold-highlight {
  color: var(--gold);
  display: block;
}

.page-hero__desc {
  max-width: 580px;
  font-size: var(--fs-lg);
  margin-bottom: var(--space-10);
}

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

/* ─────────────────────────────────────────
   14. FOOTER
───────────────────────────────────────── */
.footer {
  background: #080808;
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-24) 0 var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer__brand p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  margin-top: var(--space-4);
  line-height: 1.7;
  max-width: 280px;
}

.footer .navbar__logo {
  min-width: 112px;
}

.footer .navbar__logo-icon {
  width: 112px;
  height: 112px;
}

.footer__heading {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  transition: color var(--t-fast);
}
.footer__link:hover { color: var(--gold); }

/* Footer contact details */
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-3);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: var(--text-muted);
  transition: color var(--t-fast);
}

.footer__contact-item a:hover {
  color: var(--gold);
}

.footer__hours {
  margin-top: var(--space-4);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}

.footer__bottom {
  border-top: 1px solid var(--border-card);
  padding-top: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.footer__reg {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.25);
}

/* ─────────────────────────────────────────
   15. PROCESS STEPS
───────────────────────────────────────── */
.process-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  position: relative;
}

.process-bar::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: var(--border-subtle);
  z-index: 0;
}

.section--light .process-bar::before {
  background: var(--border-light);
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  font-weight: 900;
  color: var(--gold);
  margin: 0 auto var(--space-4);
  transition: background var(--t-base), box-shadow var(--t-base);
}

.process-step:hover .process-step__number {
  background: rgba(212, 175, 55, 0.25);
  box-shadow: 0 0 25px var(--gold-glow);
}

.section--light .process-step__number {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-warm);
  color: var(--gold-warm);
}

.process-step__title {
  font-size: var(--fs-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.section--light .process-step__title {
  color: var(--text-dark);
}

.process-step__desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

.section--light .process-step__desc {
  color: var(--text-dark-muted);
}

/* ─────────────────────────────────────────
   16. STATS / METRICS (Dark)
───────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: var(--space-12);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: var(--space-8) 0;
}

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

.stat-number {
  font-size: var(--fs-3xl);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: var(--space-2);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-card);
}

/* ─────────────────────────────────────────
   17. FAQ ACCORDION
───────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border-card);
}

.section--light .faq-item {
  border-bottom-color: var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) 0;
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-base);
  text-align: left;
  transition: color var(--t-fast);
}

.section--light .faq-question {
  color: var(--text-dark);
}

.faq-question:hover { color: var(--gold); }
.section--light .faq-question:hover { color: var(--gold-warm); }

.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--fs-md);
  color: var(--gold);
  transition: transform var(--t-base) var(--ease-out),
              background var(--t-base);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-dim);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-out);
}

.faq-answer-inner {
  padding: 0 0 var(--space-6);
  color: var(--text-muted);
  font-size: var(--fs-base);
  line-height: 1.8;
}

.section--light .faq-answer-inner {
  color: var(--text-dark-muted);
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ─────────────────────────────────────────
   18. DECORATIVE ELEMENTS
───────────────────────────────────────── */
/* Gold gradient divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  border: none;
  margin: var(--space-12) 0;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: var(--z-modal);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--fs-sm);
  transform: translateY(100px);
  opacity: 0;
  transition: transform var(--t-base) var(--ease-out), opacity var(--t-base);
  max-width: 340px;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast--success {
  background: #1a2e1a;
  border: 1px solid #2d6a2d;
  color: #7ddb7d;
}

.toast--error {
  background: #2e1a1a;
  border: 1px solid #6a2d2d;
  color: #db7d7d;
}

/* Loading spinner */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ─────────────────────────────────────────
   19. SCROLL ANIMATIONS
───────────────────────────────────────── */
/* GSAP targets */
.anim-fade-up     { opacity: 0; transform: translateY(40px); }
.anim-fade-in     { opacity: 0; }
.anim-scale-in    { opacity: 0; transform: scale(0.92); }
.anim-slide-left  { opacity: 0; transform: translateX(-40px); }
.anim-slide-right { opacity: 0; transform: translateX(40px); }

/* Intersection Observer reveal */
.reveal-up {
  opacity: 1;
  transform: none;
}

.has-scroll-reveal .reveal-up,
.has-scroll-reveal .reveal-up.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

/* ─────────────────────────────────────────
   20. PRODUCT GALLERY GRID
───────────────────────────────────────── */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-8);
  padding: var(--space-8) 0;
}

.product-gallery__item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.product-gallery__item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-gallery__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a0a0a;
}

.product-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-gallery__item:hover .product-gallery__image {
  transform: scale(1.06);
}

.product-gallery__content {
  padding: var(--space-6);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-gallery__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-2);
  color: var(--white);
  font-weight: 700;
}

.product-gallery__desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-6);
  flex-grow: 1;
  line-height: 1.7;
}

.product-gallery__action {
  margin-top: auto;
}

/* ─────────────────────────────────────────
   20B. SPEC CARDS (Equipment without images)
───────────────────────────────────────── */
.spec-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.3s;
}

.spec-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-hover);
}

.spec-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
}

.spec-card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.spec-card__badge {
  background: var(--gold-dim);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.spec-card__desc {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.spec-card__pricing {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  text-align: center;
}

.spec-card__tier {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-card__tier-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.spec-card__tier-price {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--gold);
}

.spec-card__tier-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.spec-card__deposit {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-align: center;
}

.spec-card__action {
  margin-top: auto;
}

/* ─────────────────────────────────────────
   21. SERVICE AREA STRIP
───────────────────────────────────────── */
.areas-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-6) var(--space-8);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-card);
  flex-wrap: wrap;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--gold-dim);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--cream);
}

/* ─────────────────────────────────────────
   22. CTA BANNER
───────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1a150a 0%, #100d00 50%, #1a150a 100%);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-xl);
  padding: var(--space-16) var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: var(--space-24) 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,55,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  font-size: var(--fs-lg);
  max-width: 560px;
  margin: 0 auto var(--space-10);
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   23. WHATSAPP FLOAT BUTTON
───────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-8);
  z-index: var(--z-overlay);
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.3);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t-base) var(--ease-out),
              opacity 0.4s ease, visibility 0.4s ease,
              box-shadow var(--t-base);
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.wa-float.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  pointer-events: none;
}

.wa-float.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.wa-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0,0,0,0.3);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.wa-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-fast);
}

.wa-float__tooltip::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--border-subtle);
}

.wa-float:hover .wa-float__tooltip { opacity: 1; }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ─────────────────────────────────────────
   24. UTILITY & MISC
───────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.border-top-gold {
  border-top: 2px solid var(--gold);
}

.bg-card   { background: var(--bg-card); }
.bg-dark   { background: var(--bg-dark); }
.bg-light  { background: var(--bg-light); }
.rounded   { border-radius: var(--radius-lg); }
.relative  { position: relative; }
.z-2       { z-index: 2; }

/* Gold text gradient */
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--cream) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Separator dots */
.dot-separator {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 var(--space-3);
}

/* ─────────────────────────────────────────
   25. RESPONSIVE BREAKPOINTS
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }

  .navbar__logo {
    min-width: 74px;
  }

  .navbar__logo-icon {
    width: 74px;
    height: 74px;
  }

  .navbar.scrolled .navbar__logo-icon {
    width: 64px;
    height: 64px;
  }

  .footer .navbar__logo {
    min-width: 96px;
  }

  .footer .navbar__logo-icon {
    width: 96px;
    height: 96px;
  }

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

@media (max-width: 768px) {
  html { font-size: 15px; }

  .section   { padding: var(--space-20) 0; }
  .section--sm { padding: var(--space-16) 0; }

  .grid-2  { grid-template-columns: 1fr; }
  .grid-3  { grid-template-columns: 1fr; }
  .grid-4  { grid-template-columns: 1fr 1fr; }

  .navbar__links { display: none; }
  .navbar__cta .btn:not(.btn-primary) { display: none; }
  .navbar__cta .btn-primary { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__logo {
    min-width: 64px;
  }
  .navbar__logo-icon {
    width: 64px;
    height: 64px;
  }

  .navbar.scrolled .navbar__logo-icon {
    width: 60px;
    height: 60px;
  }

  .footer .navbar__logo {
    min-width: 92px;
  }

  .footer .navbar__logo-icon {
    width: 92px;
    height: 92px;
  }

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

  .process-bar::before {
    display: none;
  }

  .testimonials { grid-template-columns: 1fr; }

  .page-hero {
    min-height: auto;
    padding: calc(var(--space-24) + 80px) 0 var(--space-20);
    flex-direction: column;
    text-align: center;
  }

  .page-hero__desc { margin: 0 auto var(--space-10); }
  .page-hero__actions { justify-content: center; }

  .stats-row { gap: var(--space-8); }
  .trust-strip__inner { gap: var(--space-8); }
  .trust-divider { display: none; }

  .footer__grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* Lock input font-size to 16px to prevent iOS auto-zoom on focus */
  .form-input,
  .form-select,
  .form-textarea { font-size: 16px; }
}

@media (max-width: 480px) {
  .grid-4  { grid-template-columns: 1fr; }
  .container { padding: 0 var(--space-4); }
  .page-hero__actions { flex-direction: column; }
  .btn-lg { width: 100%; }
  .toast { left: var(--space-4); right: var(--space-4); bottom: var(--space-4); }

  .process-bar { grid-template-columns: 1fr; }

  .trust-badges { flex-direction: column; }

  .wa-float {
    bottom: var(--space-6);
    right: var(--space-4);
    width: 48px;
    height: 48px;
  }

  .wa-float__tooltip { display: none; }

  .cta-banner { padding: var(--space-10) var(--space-6); margin: var(--space-16) 0; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}

/* ─────────────────────────────────────────
   26. PRINT / ACCESSIBILITY
───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-up,
  .has-scroll-reveal .reveal-up,
  .has-scroll-reveal .reveal-up.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ─────────────────────────────────────────
   27. DUAL-VIDEO SCROLL EXPERIENCE
───────────────────────────────────────── */
.vacuum-video-scroll {
  position: relative;
  height: 300vh;
  background: #000000;
}

.vacuum-video-scroll__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh; /* iOS Safari: excludes address bar */
  width: 100%;
  overflow: hidden;
  background: #000000;
  isolation: isolate;
}

.vacuum-video-scroll__media {
  position: absolute;
  inset: 0;
  transform: scale(var(--video-scale, 1)) translateZ(0);
  transform-origin: center center;
  opacity: var(--video-group-opacity, 1);
  will-change: transform, opacity;
}

/* Cinematic vignette + letterbox overlay */
.vacuum-video-scroll__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Top letterbox bar */
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 12%),
    /* Bottom letterbox bar */
    linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 18%),
    /* Radial vignette */
    radial-gradient(circle at 50% 50%, transparent 35%, rgba(0,0,0,0.30) 100%);
  pointer-events: none;
  z-index: 3;
}

.vacuum-video-scroll__hud {
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 5vh, 3rem);
  z-index: 4;
  max-width: min(600px, 92vw);
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
  pointer-events: none;
  transition: transform 0.1s linear;
}

.vacuum-video-scroll__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.vacuum-video-scroll__title {
  margin: 0;
  font-size: clamp(1.2rem, 3.2vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #ffffff;
  transition: opacity 0.3s ease;
}

.vacuum-video-scroll__progress {
  width: min(360px, 86vw);
  height: 3px;
  margin-top: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.vacuum-video-scroll__progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d4af37 0%, #f0d060 100%);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.5);
  transition: width 0.16s linear;
}

.vacuum-video-scroll__hint {
  margin: 0.65rem 0 0;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  transition: opacity 0.35s ease;
}

.vacuum-video-scroll video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  pointer-events: none;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: opacity, transform;
}

.vacuum-video-scroll #video1 {
  z-index: 1;
  opacity: 1;
}

.vacuum-video-scroll #video2 {
  z-index: 2;
  opacity: 0;
}

.video-scroll-play-cta {
  position: absolute;
  left: 50%;
  bottom: clamp(1.1rem, 4vh, 2.2rem);
  z-index: 6;
  transform: translate(-50%, 10px);
  border: 1px solid rgba(212, 175, 55, 0.55);
  background: rgba(0, 0, 0, 0.55);
  color: #f3e3a8;
  border-radius: 999px;
  padding: 0.7rem 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease, background-color 0.28s ease;
  cursor: pointer;
}

.video-scroll-play-cta:hover,
.video-scroll-play-cta:focus-visible {
  background: rgba(0, 0, 0, 0.72);
  border-color: rgba(212, 175, 55, 0.85);
}

.vacuum-video-scroll.show-play-cta .video-scroll-play-cta {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.video-scroll-loader {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: #000000;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  transition:
    opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1),
    visibility 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-scroll-loader__spinner {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: rgba(212, 175, 55, 0.86);
  border-radius: 50%;
  animation: video-scroll-spin 0.75s linear infinite;
}

.video-scroll-loader__text {
  color: rgba(255, 255, 255, 0.72);
}

.vacuum-video-scroll.is-ready .video-scroll-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes video-scroll-spin {
  to { transform: rotate(360deg); }
}

/* Mobile / touch / reduced-motion: collapse to viewport height */
@media (max-width: 900px), (hover: none), (pointer: coarse) {
  .vacuum-video-scroll {
    height: 100vh;
    height: 100svh;
  }

  .vacuum-video-scroll__sticky {
    position: relative;
  }

  .vacuum-video-scroll__hud {
    left: 1rem;
    right: 1rem;
    bottom: 1.2rem;
    max-width: none;
  }

  .vacuum-video-scroll__title {
    font-size: clamp(1.05rem, 5.8vw, 1.45rem);
  }

  .vacuum-video-scroll__hint {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vacuum-video-scroll {
    height: 100vh;
    height: 100svh;
  }

  .vacuum-video-scroll__sticky {
    position: relative;
  }

  .vacuum-video-scroll__progress-fill {
    transition: none;
  }
}

/* ─────────────────────────────────────────
   28. HERO TEXT REVEAL ANIMATION
───────────────────────────────────────── */
.copy-email-wrap { display:inline-flex; align-items:center; gap:8px; }
.copy-email-btn {
  background:none; border:1px solid var(--border-subtle); border-radius:4px;
  padding:3px 6px; cursor:pointer; color:var(--text-muted);
  transition:color 0.2s, border-color 0.2s;
}
.copy-email-btn:hover { color:var(--gold); border-color:var(--gold); }

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 8px 16px;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 4px 0;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

