:root {
  --amber: #8B1A2E;
  --amber-light: #B02240;
  --amber-dim: #5C1020;
  --amber-glow: rgba(139,26,46,0.15);
  --silver: #C8C8C8;
  --silver-dim: #888888;
  --dark: #0A0A0A;
  --dark-2: rgba(17,17,17,0.92);
  --dark-3: rgba(24,24,24,0.94);
  --dark-4: rgba(34,34,34,0.96);
  --border: rgba(255,255,255,0.07);
  --text: #ECEAE8;
  --text-muted: #B8B6B4;
  --text-dim: #888885;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark) url('assets/assets-bg-dark.jpg') center center / cover no-repeat fixed;
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--amber);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, opacity 0.2s;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(139,26,46,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out, width 0.25s, height 0.25s, opacity 0.2s;
}
body:hover .cursor { opacity: 1; }
a:hover ~ .cursor, button:hover ~ .cursor { width: 16px; height: 16px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--amber); }
.nav-cta {
  background: var(--amber);
  color: #0A0A0A;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--amber-light); transform: translateY(-1px); }
.nav-cta { color: #fff; }

/* HERO BACKGROUND IMAGE */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  background: transparent;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.75) 60%, rgba(139,26,46,0.15) 100%);
  z-index: 0;
}
.hero-grid-bg { z-index: 1; }
.hero-glow { z-index: 1; }
.hero-content {
  position: relative;
  max-width: 900px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  will-change: transform;
}
.hero-stats { z-index: 2; }
/* NAV LOGO IMAGE */
.nav-logo-img {
  height: 72px; width: auto;
  display: block;
}
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo-text span { color: var(--amber); }

/* PORTFOLIO CARD IMAGE */
.work-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  display: block;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  filter: grayscale(20%);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.work-card:hover .work-card-img {
  filter: grayscale(0%);
  transform: scale(1.01);
}
.work-card-img-wrap {
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  position: relative;
}
.work-card-img-wrap img {
  width: 100%; height: 200px;
  object-fit: cover; object-position: top;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s ease, transform 0.5s ease;
}
.work-card:hover .work-card-img-wrap img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* BEFORE / AFTER SLIDER */
.ba-section { background: var(--dark-2); }

.ba-wrap {
  margin-top: 3rem;
  position: relative;
}

.ba-slider {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  border: 1px solid var(--border);
}

.ba-img-before {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  pointer-events: none;
  z-index: 1;
}

.ba-img-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  pointer-events: none;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

/* Dark vignette left + right */
.ba-slider::before,
.ba-slider::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 3;
  pointer-events: none;
}
.ba-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 100%);
}
.ba-slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
}

/* BEFORE / AFTER pill labels */
.ba-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  pointer-events: none;
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
}
.ba-label.before-label {
  left: 1.4rem;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}
.ba-label.after-label {
  right: 1.4rem;
  color: var(--amber);
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(139,26,46,0.5);
}

/* Drag handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.9);
  transform: translateX(-50%);
  z-index: 6;
  cursor: col-resize;
}

.ba-handle-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid var(--amber);
  box-shadow: 0 4px 24px rgba(0,0,0,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--amber);
  pointer-events: none;
  font-weight: 700;
}

/* Info bar below slider */
.ba-info {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 2.5rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-top: none;
}

.ba-info-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(139,26,46,0.35);
  flex-shrink: 0;
  text-align: center;
}

.ba-info-text { min-width: 0; }

.ba-info-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
  line-height: 1.1;
}

.ba-info-text p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ba-tag {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(139,26,46,0.35);
  padding: 0.18rem 0.55rem;
  border-radius: 1px;
  margin-bottom: 0.35rem;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(139,26,46,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,26,46,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139,26,46,0.1) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 32px; height: 1px;
  background: var(--amber);
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: 2rem;
}
.hero-title .outline {
  -webkit-text-stroke: 2px rgba(220,220,220,0.45);
  color: transparent;
}
.hero-title .amber { color: var(--amber); position: relative; display: inline-block; }
.hero-accent {
  display: block;
  height: 5px;
  width: 0%;
  background: var(--amber);
  margin-top: 0.1em;
  border-radius: 2px;
  animation: accentGrow 1.2s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}
@keyframes accentGrow { from { width: 0%; } to { width: 100%; } }
.hero-bg-text {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(16rem, 35vw, 28rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  line-height: 1;
  top: 50%; right: -5%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  letter-spacing: 0.05em;
  user-select: none;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.8rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--amber);
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); }
.btn-ghost {
  color: var(--text-muted);
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin-top: 3rem;
  border: 1px solid rgba(139,26,46,0.3);
  width: fit-content;
  max-width: 100%;
}
.stat-item {
  padding: 1.4rem 2.8rem;
  background: rgba(139,26,46,0.08);
  text-align: center;
  border-right: 1px solid rgba(139,26,46,0.2);
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: var(--text);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 0.4rem;
  font-weight: 500;
}

/* SECTION SHARED */
section { padding: 7rem 4rem; }
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-label::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--amber);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

/* MARQUEE STRIP */
.marquee-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 1.1rem 0;
  background: var(--dark-2);
  isolation: isolate;
}
.marquee-track {
  display: flex; gap: 0;
  width: max-content;
  animation: marquee 20s linear infinite;
  will-change: transform;
}
.marquee-item {
  display: flex; align-items: center; gap: 2rem;
  padding: 0 2.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  white-space: nowrap;
}
.marquee-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SCROLL PROGRESS BAR */
#progress-bar {
  position: fixed; top: 0; left: 0; z-index: 200;
  height: 3px; width: 0%;
  background: var(--amber);
  transition: width 0.1s linear;
}

/* BACK TO TOP */
#back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 100;
  width: 42px; height: 42px;
  background: var(--amber);
  border: none; border-radius: 2px;
  color: #fff; font-size: 1.1rem;
  cursor: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
#back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#back-top:hover { background: var(--amber-light); }

/* AMBER TEXT READABILITY - white glow behind all maroon text */
.hero-title .amber {
  color: var(--amber);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 20px rgba(255,255,255,0.25), 0 0 40px rgba(255,255,255,0.12);
  -webkit-text-stroke: 0.5px rgba(255,255,255,0.15);
}

/* BODY TEXT SHADOW - helps all text read over busy background */
.section-title,
.section-label,
.hero-sub,
.work-card h3,
.work-card p,
.work-link,
.why-content h3,
.why-content p,
.why-num,
.process-step h3,
.process-step p,
.process-step-tag,
.process-step-num,
.ba-info-text h3,
.ba-info-text p,
.stat-num,
.stat-label,
.testimonial-card blockquote,
.author-name,
.pricing-price,
.pricing-desc,
.pricing-features li,
.contact-info p,
.contact-detail,
.faq-question,
.faq-answer p {
  text-shadow: 0 1px 4px rgba(0,0,0,0.7), 0 2px 8px rgba(0,0,0,0.5);
}

.section-label,
.work-link,
.stat-label,
.why-num,
.process-step-tag,
.footer-logo span,
.nav-links a:hover,
.faq-question:hover,
.faq-question.open {
  text-shadow: 0 0 12px rgba(255,255,255,0.2), 0 1px 4px rgba(0,0,0,0.7);
}

.btn-primary,
.nav-cta {
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  box-shadow: 0 2px 16px rgba(139,26,46,0.35);
}
.section-label::before {
  box-shadow: 0 0 8px rgba(255,255,255,0.2);
}

/* HERO PARALLAX HINT */
/* TYPING CURSOR BLINK */
.type-cursor {
  display: inline-block;
  width: 3px; height: 0.85em;
  background: var(--amber);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* WORK CARD ACCENT BAR */
.work-card-preview {
  height: 3px;
  background: var(--amber);
  opacity: 0.5;
  margin-bottom: 1.5rem;
  border-radius: 1px;
  transition: opacity 0.3s;
}
.work-card:hover .work-card-preview {
  opacity: 1;
}

/* SECTION DIVIDER LINE */
.section-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.3;
  margin: 0;
}

/* HIGHLIGHT BADGE */

/* WORK / PORTFOLIO */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}
.work-card {
  background: var(--dark-2);
  padding: 2.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.work-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.work-card:hover { background: var(--dark-3); }
.work-card:hover::before { transform: scaleX(1); }
.work-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-left: 2px solid var(--amber);
  padding: 0.35rem 0.75rem;
  border-radius: 1px;
  margin-bottom: 1.4rem;
  width: fit-content;
  font-weight: 500;
}
.work-tag::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}
.work-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  line-height: 1;
}
.work-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.8rem;
}
.work-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  transition: gap 0.2s;
}
.work-link:hover { gap: 0.8rem; }
.work-link svg { width: 14px; height: 14px; }
.work-card-number {
  position: absolute; bottom: 1.5rem; right: 2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: rgba(139,26,46,0.18);
  -webkit-text-stroke: 1px rgba(139,26,46,0.5);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s, -webkit-text-stroke 0.3s;
  letter-spacing: -0.02em;
}
.work-card:hover .work-card-number {
  color: rgba(139,26,46,0.35);
  -webkit-text-stroke: 1px rgba(139,26,46,0.8);
}

/* SERVICES */
.services-section { background: var(--dark-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
}
.service-item {
  background: var(--dark-2);
  padding: 2.2rem 2rem;
  transition: background 0.25s;
}
.service-item:hover { background: var(--dark-3); }
.service-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(245,158,11,0.35);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}
.service-item h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
}
.service-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* WHY OTM */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
}
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  border-bottom: 1px solid var(--border);
  padding: 1.6rem 0;
  display: flex; gap: 1.5rem; align-items: flex-start;
  cursor: default;
  transition: background 0.2s;
}
.why-item:first-child { border-top: 1px solid var(--border); }
.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: #D4A843;
  min-width: 28px;
  padding-top: 0.15rem;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.why-content h3 { font-size: 0.95rem; font-weight: 500; margin-bottom: 0.35rem; }
.why-content p { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; }
.why-visual {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
  position: relative; overflow: hidden;
}
.compare-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.compare-label { letter-spacing: 0.06em; }
.compare-bar-wrap {
  flex: 1; margin: 0 1rem;
  height: 4px; background: var(--dark-4); border-radius: 2px; overflow: hidden;
}
.compare-bar {
  height: 100%; border-radius: 2px;
  background: var(--amber);
  transition: width 1s ease;
}
.compare-bar.low { background: var(--text-dim); }
.compare-val { min-width: 28px; text-align: right; }
.compare-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.compare-title span { color: var(--amber); }
.vs-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

/* TESTIMONIALS CAROUSEL */
.testimonials-section { background: var(--dark-2); }
.carousel-wrap {
  position: relative;
  margin-top: 4rem;
  overflow: hidden;
  border: 1px solid var(--border);
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  min-width: 100%;
  background: var(--dark-2);
  padding: 3rem 3.5rem;
  box-sizing: border-box;
}
.stars {
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
}
.testimonial-card blockquote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.2rem;
  border-left: 2px solid var(--amber);
  max-width: 720px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 0.85rem;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--amber-glow);
  border: 1px solid rgba(139,26,46,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--silver);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.author-name { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.author-detail { font-size: 0.73rem; color: var(--text-dim); margin-top: 0.15rem; }
.carousel-controls {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--dark-3);
}
.carousel-dots { display: flex; gap: 0.5rem; align-items: center; }
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text-dim);
  cursor: none;
  transition: background 0.25s, transform 0.25s;
  border: none;
  padding: 0;
}
.carousel-dot.active { background: var(--amber); transform: scale(1.4); }
.carousel-btns { display: flex; gap: 0.5rem; }
.carousel-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  border-radius: 2px;
  font-size: 1rem;
  cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.carousel-btn:hover { border-color: var(--amber); color: var(--amber); background: var(--amber-glow); }

/* PRICING - SINGLE FLAT RATE */
.pricing-single {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
  align-items: stretch;
}
.pricing-single-left {
  background: var(--dark-3);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  border-right: 1px solid var(--border);
}
.pricing-single-left::after {
  content: 'Flat Rate';
  position: absolute; top: 0; right: 0;
  background: var(--amber);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
}
.pricing-single-right {
  background: var(--dark-2);
  padding: 3rem 2.5rem;
}
.pricing-features-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.pricing-features-title::before {
  content: '';
  display: block; width: 20px; height: 1px;
  background: var(--amber);
}
.pricing-tier {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.pricing-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5.5rem;
  line-height: 1;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.pricing-price sup {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  vertical-align: super;
  margin-right: 0.1rem;
  color: var(--amber);
}
.pricing-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.pricing-features {
  list-style: none;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.pricing-features li {
  font-size: 0.82rem;
  color: var(--text);
  padding: 0.7rem 0.5rem 0.7rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 300;
}
.pricing-features li:nth-last-child(-n+2) { border-bottom: none; }
.pricing-features li::before {
  content: '—';
  color: var(--amber);
  font-size: 0.65rem;
  flex-shrink: 0;
}
.pricing-disclaimer {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* CONTACT FORM */
.contact-section { background: var(--dark-2); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}
.contact-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.1rem;
  font-weight: 300;
}
.contact-detail a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--amber); }
.contact-detail-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: var(--amber);
  flex-shrink: 0;
}
.contact-form {
  display: flex; flex-direction: column; gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.form-field {
  background: var(--dark-3);
  padding: 1.4rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.form-field label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  resize: none;
  width: 100%;
}
.form-field select option { background: var(--dark-3); color: var(--text); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }
.form-field:focus-within { background: var(--dark-4); }
.form-submit-row {
  background: var(--dark-3);
  padding: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.form-note {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 300;
}
.form-submit {
  background: var(--amber);
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 1px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.form-submit:hover { background: var(--amber-light); transform: translateY(-1px); }

/* SUCCESS MESSAGE */
.form-success {
  display: none;
  background: var(--dark-3);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 2rem;
  text-align: center;
}
.form-success.show { display: block; }
.form-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.85rem; color: var(--text-muted); font-weight: 300; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.footer-logo span { color: var(--amber); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 300;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--amber); }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* DARK / LIGHT MODE TOGGLE */
body.light-mode {
  --dark: #F4F2EE;
  --dark-2: rgba(236,234,230,0.92);
  --dark-3: rgba(226,222,216,0.94);
  --dark-4: rgba(216,212,204,0.96);
  --border: rgba(0,0,0,0.1);
  --text: #1A1A1A;
  --text-muted: #444440;
  --text-dim: #777772;
  background: #F4F2EE url('assets/assets-bg-light.jpg') center center / cover no-repeat fixed;
}

/* NAV */
body.light-mode nav { background: rgba(244,242,238,0.95); }

body.light-mode .hero::after {
  background: linear-gradient(135deg, rgba(244,242,238,0.88) 0%, rgba(244,242,238,0.72) 60%, rgba(139,26,46,0.06) 100%);
}
body.light-mode .hero-title .outline {
  -webkit-text-stroke: 2px rgba(30,30,30,0.5);
  color: transparent;
}
body.light-mode .hero-bg-text {
  -webkit-text-stroke: 1px rgba(0,0,0,0.06);
}
body.light-mode .hero-sub { color: #444440; }
body.light-mode .btn-ghost {
  color: #444440;
  border-color: rgba(0,0,0,0.2);
}
body.light-mode .btn-ghost:hover {
  color: #1A1A1A;
  border-color: rgba(0,0,0,0.4);
}

/* STAT CARDS — fix numbers and labels in light mode */
body.light-mode .hero-stats {
  border-color: rgba(139,26,46,0.4);
}
body.light-mode .stat-item {
  background: rgba(139,26,46,0.06);
  border-right-color: rgba(139,26,46,0.2);
}
body.light-mode .stat-num { color: #1A1A1A; }
body.light-mode .stat-label { color: var(--amber); }

/* PROCESS STEPS — fix ghost numbers */
body.light-mode .process-step { background: var(--dark-2); }
body.light-mode .process-step:hover { background: var(--dark-3); }

/* MARQUEE */
body.light-mode .marquee-item { color: #444440; }

/* Remove glow shadows in light mode - maroon reads fine on light bg */
body.light-mode .hero-title .amber,
body.light-mode .section-label,
body.light-mode .work-tag,
body.light-mode .work-link,
body.light-mode .ba-tag,
body.light-mode .stat-label,
body.light-mode .why-num,
body.light-mode .process-step-tag,
body.light-mode .footer-logo span,
body.light-mode .nav-links a:hover,
body.light-mode .faq-question:hover,
body.light-mode .faq-question.open,
body.light-mode .section-title,
body.light-mode .work-card h3,
body.light-mode .work-card p,
body.light-mode .why-content h3,
body.light-mode .why-content p,
body.light-mode .process-step h3,
body.light-mode .process-step p,
body.light-mode .process-step-num,
body.light-mode .stat-num,
body.light-mode .hero-sub,
body.light-mode .faq-question,
body.light-mode .faq-answer p { text-shadow: none; }
body.light-mode .hero-title .amber { -webkit-text-stroke: 0; }
body.light-mode .btn-primary,
body.light-mode .nav-cta { box-shadow: 0 2px 12px rgba(139,26,46,0.2); text-shadow: none; }
body.light-mode .why-num { color: var(--amber); }
body.light-mode .process-step-tag { color: var(--amber); border-color: rgba(139,26,46,0.3); }
body.light-mode .process-step-num {
  color: rgba(0,0,0,0.12);
  -webkit-text-stroke: 1px rgba(0,0,0,0.2);
}
body.light-mode .process-step:hover .process-step-num {
  color: rgba(139,26,46,0.3);
  -webkit-text-stroke: 1px rgba(139,26,46,0.5);
}

/* WORK CARDS */
body.light-mode .work-tag {
  background: rgba(139,26,46,0.06);
  border-color: rgba(0,0,0,0.1);
  color: #444440;
}
body.light-mode .work-card-number {
  color: rgba(139,26,46,0.12);
  -webkit-text-stroke: 1px rgba(139,26,46,0.35);
}
body.light-mode .work-card:hover .work-card-number {
  color: rgba(139,26,46,0.25);
  -webkit-text-stroke: 1px rgba(139,26,46,0.6);
}

/* COMPARE BARS */
body.light-mode .compare-bar-wrap { background: rgba(0,0,0,0.08); }

/* HERO GRID BG */
body.light-mode .hero-grid-bg {
  background-image:
    linear-gradient(rgba(139,26,46,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,26,46,0.06) 1px, transparent 1px);
}
#theme-toggle {
  position: fixed; bottom: 5.5rem; right: 2rem; z-index: 101;
  width: 36px; height: 36px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
#theme-toggle:hover { border-color: var(--amber); color: var(--amber); }

/* FLOATING CONTACT BUTTON */
#float-contact {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 100;
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--amber);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none; cursor: none;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
#float-contact.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#float-contact:hover { background: var(--amber-light); }
#float-contact::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #fff; opacity: 0.8;
  animation: blink 1.5s ease infinite;
  will-change: opacity;
}

/* PROCESS SECTION */
.process-section { background: var(--dark-2); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 4rem;
  position: relative;
}
.process-step {
  background: var(--dark-2);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.process-step:hover { background: var(--dark-3); }
.process-step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(212,168,67,0.5);
  -webkit-text-stroke: 1px rgba(212,168,67,0.8);
  margin-bottom: 1rem;
  transition: color 0.3s, -webkit-text-stroke 0.3s;
}
.process-step:hover .process-step-num {
  color: rgba(212,168,67,0.7);
  -webkit-text-stroke: 1px rgba(212,168,67,1);
}
.process-step-tag {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #D4A843;
  border: 1px solid rgba(212,168,67,0.5);
  padding: 0.2rem 0.5rem;
  border-radius: 1px;
  margin-bottom: 0.8rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.process-step h3 { font-size: 1rem; font-weight: 500; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* FAQ ACCORDION */
.faq-section { background: var(--dark); }
.faq-list {
  margin-top: 4rem;
  border: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem;
  text-align: left;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: none;
  transition: background 0.2s, color 0.2s;
  gap: 1rem;
}
.faq-question:hover { background: var(--dark-2); color: var(--amber); }
.faq-question.open { color: var(--amber); background: var(--dark-2); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-dim);
  transition: transform 0.3s, border-color 0.2s, color 0.2s;
}
.faq-question.open .faq-icon { transform: rotate(45deg); border-color: var(--amber); color: var(--amber); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--dark-2);
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding: 0 2rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

/* TOOLTIP */
.tooltip-wrap { position: relative; display: inline-flex; align-items: center; gap: 0.35rem; }
.tooltip-icon {
  width: 14px; height: 14px;
  border: 1px solid var(--text-dim);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  color: var(--text-dim);
  cursor: none;
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s;
}
.tooltip-icon:hover { border-color: var(--amber); color: var(--amber); }
.tooltip-box {
  position: absolute; bottom: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.5rem 0.75rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 50;
  max-width: 220px;
  white-space: normal;
  text-align: center;
  line-height: 1.5;
}
.tooltip-wrap:hover .tooltip-box { opacity: 1; }

/* SERVICE ICON MICRO-ANIMATIONS */
.service-icon {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), color 0.2s, border-color 0.2s;
}
.service-item:hover .service-icon {
  transform: rotate(90deg) scale(1.15);
  border-color: var(--amber);
  color: var(--amber);
}

/* COOKIE BANNER */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  padding: 1rem 4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: 0.8rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; }
#cookie-banner p a { color: var(--amber); text-decoration: none; }
.cookie-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-accept {
  background: var(--amber); color: #fff;
  border: none; padding: 0.5rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; cursor: none;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--amber-light); }
.cookie-decline {
  background: transparent; color: var(--text-dim);
  border: 1px solid var(--border); padding: 0.5rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 2px; cursor: none;
  transition: color 0.2s, border-color 0.2s;
}
.cookie-decline:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

@media (hover: none) and (pointer: coarse) {
  .cursor, .cursor-ring { display: none !important; }
  body { cursor: auto !important; }
  a, button, input, select, textarea { cursor: auto !important; }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { display: none; }
  body {
    background-attachment: scroll;
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
  }
  body.light-mode {
    background-attachment: scroll;
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
  }
  .hero { padding: 7rem 2rem 5rem; min-height: 100svh; }
  .hero-content { min-height: unset; }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
  }
  .btn-primary, .btn-ghost {
    width: 280px;
    text-align: center;
    font-size: 0.78rem;
    padding: 0.9rem 1rem;
    white-space: nowrap;
    display: block;
  }
  section { padding: 5rem 2rem; }
  .hero-stats { flex-wrap: nowrap; width: 100%; max-width: 100%; }
  .stat-item { flex: 1; min-width: 0; padding: 1rem 0.8rem; }
  .stat-num { font-size: 1.5rem; letter-spacing: 0; }
  .stat-label { font-size: 0.5rem; letter-spacing: 0.1em; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ba-info { grid-template-columns: 1fr; gap: 1rem; }
  .ba-info-num { display: none; }
  .ba-slider { height: auto; min-height: 200px; }
  .ba-img-before,
  .ba-img-after {
    object-fit: contain;
    object-position: top center;
    background: #0a0a0a;
    position: relative;
    width: 100%;
    height: auto;
    display: block;
  }
  .ba-img-after {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
  }
  footer { flex-direction: column; gap: 1.2rem; text-align: center; padding: 2rem; }
  .footer-links { display: none; }
  #cookie-banner { padding: 1rem 1.5rem; flex-direction: column; gap: 1rem; }
}

@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .pricing-single { grid-template-columns: 1fr; }
  .pricing-features { grid-template-columns: 1fr; }
}
/* ============================================================
   OTM LIGHT MODE PATCH — applies only inside body.light-mode
   Drop this at the BOTTOM of your style.css, after all existing
   light-mode rules. It will override/add without touching dark.
   ============================================================ */


/* ─────────────────────────────────────────────
   1. BACKGROUND — zoom out so more image shows
   ───────────────────────────────────────────── */
body.light-mode {
  background-size: cover;
  background-position: center center;
}

/* ─────────────────────────────────────────────
   2. TEXT FUZZINESS — nuke all text-shadow on
      dark text elements in light mode
   ───────────────────────────────────────────── */
body.light-mode .section-title,
body.light-mode .section-label,
body.light-mode .hero-sub,
body.light-mode .work-card h3,
body.light-mode .work-card p,
body.light-mode .work-link,
body.light-mode .why-content h3,
body.light-mode .why-content p,
body.light-mode .why-num,
body.light-mode .process-step h3,
body.light-mode .process-step p,
body.light-mode .process-step-tag,
body.light-mode .process-step-num,
body.light-mode .ba-info-text h3,
body.light-mode .ba-info-text p,
body.light-mode .stat-num,
body.light-mode .stat-label,
body.light-mode .testimonial-card blockquote,
body.light-mode .author-name,
body.light-mode .author-detail,
body.light-mode .pricing-price,
body.light-mode .pricing-desc,
body.light-mode .pricing-features li,
body.light-mode .pricing-tier,
body.light-mode .pricing-features-title,
body.light-mode .pricing-disclaimer,
body.light-mode .contact-info p,
body.light-mode .contact-detail,
body.light-mode .faq-question,
body.light-mode .faq-answer p,
body.light-mode .form-field label,
body.light-mode .form-field input,
body.light-mode .form-field select,
body.light-mode .form-field textarea,
body.light-mode .form-note,
body.light-mode .compare-label,
body.light-mode .compare-val,
body.light-mode .compare-title,
body.light-mode .service-item h3,
body.light-mode .service-item p,
body.light-mode .marquee-item,
body.light-mode .footer-copy,
body.light-mode .footer-links a,
body.light-mode .footer-logo,
body.light-mode .nav-links a,
body.light-mode .ba-tag,
body.light-mode .ba-info-num,
body.light-mode blockquote,
body.light-mode .author-detail,
body.light-mode .stars,
body.light-mode h3,
body.light-mode p,
body.light-mode li,
body.light-mode label,
body.light-mode span {
  text-shadow: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Keep amber accent elements crisp too */
body.light-mode .section-label,
body.light-mode .work-link,
body.light-mode .stat-label,
body.light-mode .process-step-tag,
body.light-mode .ba-tag,
body.light-mode .hero-title .amber {
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
}


/* ─────────────────────────────────────────────
   3. SECTION GAPS — tighter padding + dividers
   ───────────────────────────────────────────── */
body.light-mode section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

/* Decorative divider between sections */
body.light-mode section + section::before,
body.light-mode .ba-section + section::before,
body.light-mode section + .ba-section::before {
  content: '';
  display: block;
  width: calc(100% + 8rem);
  margin-left: -4rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(139, 26, 46, 0.15) 15%,
    rgba(139, 26, 46, 0.35) 40%,
    rgba(139, 26, 46, 0.35) 60%,
    rgba(139, 26, 46, 0.15) 85%,
    transparent 100%
  );
  margin-bottom: 4.5rem;
}

/* Diamond accent in the center of each divider */
body.light-mode section + section::after {
  content: '◆';
  display: block;
  text-align: center;
  font-size: 0.45rem;
  color: rgba(139, 26, 46, 0.5);
  margin-top: -4.8rem;
  margin-bottom: 4rem;
  letter-spacing: 0.3em;
}

/* Specific overrides for sections with their own bg */
body.light-mode .services-section,
body.light-mode .testimonials-section,
body.light-mode .process-section,
body.light-mode .contact-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

/* Tighter work section */
body.light-mode #work {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}


/* ─────────────────────────────────────────────
   4. BEFORE / AFTER BADGES — bold & dramatic
   ───────────────────────────────────────────── */

/* Base badge reset */
body.light-mode .ba-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  padding: 0.5rem 1.3rem;
  border-radius: 0;
  top: 1.5rem;
  transform: none;
  text-shadow: none !important;
}

/* BEFORE badge — dark filled, crisp */
body.light-mode .ba-label.before-label {
  left: 1.5rem;
  background: #1A1A1A;
  color: #FFFFFF;
  border: 2px solid #1A1A1A;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.25);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
  padding-right: 1.8rem;
}

/* AFTER badge — crimson filled, punchy */
body.light-mode .ba-label.after-label {
  right: 1.5rem;
  background: var(--amber);
  color: #FFFFFF;
  border: 2px solid var(--amber);
  box-shadow: -3px 3px 0px rgba(139, 26, 46, 0.3);
  clip-path: polygon(8px 0, 100% 0, 100% 100%, 8px 100%, 0 50%);
  padding-left: 1.8rem;
}

/* ─────────────────────────────────────────────
   5. DRAG BUTTON — centered, premium, bold
   ───────────────────────────────────────────── */

/* Remove old generic drag button styling */
body.light-mode .ba-wrap > div[style*="display:flex"] {
  display: none !important;
}

/* The actual drag instruction — shown above slider, centered */
body.light-mode .ba-wrap {
  position: relative;
}

/* Re-style the drag hint that sits above slider */
body.light-mode div[style*="display:flex"][style*="align-items:center"] {
  justify-content: flex-start;
  gap: 1.5rem;
}

/* The drag indicator pill next to description text */
body.light-mode div[style*="flex-shrink:0"][style*="display:flex"][style*="align-items:center"] {
  background: #1A1A1A !important;
  color: #FFFFFF !important;
  border: 2px solid #1A1A1A !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.2em !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 0 !important;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.15) !important;
  font-family: 'Bebas Neue', sans-serif !important;
}

/* Handle button itself — redesigned for light mode */
body.light-mode .ba-handle-btn {
  width: 56px;
  height: 56px;
  background: #1A1A1A;
  border: 3px solid var(--amber);
  color: #FFFFFF;
  font-size: 0.7rem;
  box-shadow:
    0 0 0 4px rgba(139, 26, 46, 0.2),
    0 6px 24px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.05em;
  font-weight: 900;
}

/* Handle line */
body.light-mode .ba-handle {
  background: #1A1A1A;
  width: 3px;
}

/* ─────────────────────────────────────────────
   6. HERO STATS — premium redesign for light
   ───────────────────────────────────────────── */
body.light-mode .hero-stats {
  border: none;
  background: transparent;
  gap: 0.75rem;
  margin-top: 3rem;
  width: fit-content;
}

body.light-mode .stat-item {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(139, 26, 46, 0.2);
  border-top: 3px solid var(--amber);
  padding: 1.4rem 2.4rem;
  border-right: none;
  box-shadow:
    0 2px 0 rgba(139, 26, 46, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.light-mode .stat-item:hover {
  transform: translateY(-2px);
  box-shadow:
    0 2px 0 rgba(139, 26, 46, 0.2),
    0 12px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Remove old top pseudo-element — replace with border-top */
body.light-mode .stat-item::before {
  display: none;
}

/* Thin right separator line between items */
body.light-mode .stat-item::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -0.375rem;
  height: 60%;
  width: 1px;
  background: rgba(139, 26, 46, 0.15);
}

body.light-mode .stat-item:last-child {
  border-right: 1px solid rgba(139, 26, 46, 0.2);
}

body.light-mode .stat-item:last-child::after {
  display: none;
}

body.light-mode .stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: #1A1A1A;
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: none !important;
}

body.light-mode .stat-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 0.5rem;
  font-weight: 600;
  text-shadow: none !important;
}


/* ─────────────────────────────────────────────
   7. MARQUEE STRIP — more defined in light mode
   ───────────────────────────────────────────── */
body.light-mode .marquee-strip {
  background: #FFFFFF;
  border-top: 1px solid rgba(139, 26, 46, 0.15);
  border-bottom: 1px solid rgba(139, 26, 46, 0.15);
}

body.light-mode .marquee-item {
  color: #1A1A1A;
  font-weight: 500;
}

body.light-mode .marquee-dot {
  background: var(--amber);
}


/* ─────────────────────────────────────────────
   8. BA-INFO BAR — clean card in light mode
   ───────────────────────────────────────────── */
body.light-mode .ba-info {
  background: #FFFFFF;
  border: 1px solid rgba(139, 26, 46, 0.15);
  border-top: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

body.light-mode .ba-info-num {
  -webkit-text-stroke: 1px rgba(139, 26, 46, 0.2);
  text-shadow: none !important;
}

body.light-mode .ba-info-text h3 {
  color: #1A1A1A;
  text-shadow: none !important;
}

body.light-mode .ba-info-text p {
  color: #555;
  text-shadow: none !important;
}
/* ============================================================
   OTM LIGHT MODE PATCH 2 — append after patch 1
   Fixes: nav height, background zoom, section white space
   ============================================================ */

/* ─────────────────────────────────────────────
   1. NAV — shrink padding 30% so hero title
      isn't clipped and nav looks cleaner
   ───────────────────────────────────────────── */
body.light-mode nav {
  padding: 0.75rem 4rem;
}

/* Also fix the JS-shrunken state on scroll */
body.light-mode nav[style*="padding"] {
  padding: 0.6rem 4rem !important;
}

/* ─────────────────────────────────────────────
   2. BACKGROUND — show much more of the image
      Use a smaller background-size so the full
      image is visible rather than cropped in
   ───────────────────────────────────────────── */
body.light-mode {
  background-size: 75% auto !important;
  background-position: right top !important;
  background-attachment: fixed !important;
}

/* ─────────────────────────────────────────────
   3. SECTION WHITE SPACE — let the background
      breathe through by reducing section bg
      opacity so it doesn't feel like solid
      blank walls between content blocks
   ───────────────────────────────────────────── */

/* Reduce the opacity on alternating section backgrounds */
body.light-mode .services-section,
body.light-mode .testimonials-section,
body.light-mode .process-section {
  background: rgba(236, 234, 230, 0.7);
}

body.light-mode .ba-section {
  background: rgba(236, 234, 230, 0.65);
}

body.light-mode #work,
body.light-mode #why,
body.light-mode #pricing,
body.light-mode #faq {
  background: rgba(244, 242, 238, 0.6);
}

body.light-mode .contact-section {
  background: rgba(236, 234, 230, 0.72);
}

/* Cards and content boxes stay opaque so text is readable */
body.light-mode .work-card,
body.light-mode .service-item,
body.light-mode .testimonial-card,
body.light-mode .process-step,
body.light-mode .why-visual,
body.light-mode .pricing-single-left,
body.light-mode .pricing-single-right,
body.light-mode .faq-list,
body.light-mode .contact-form,
body.light-mode .contact-info {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body.light-mode .work-card:hover,
body.light-mode .service-item:hover,
body.light-mode .process-step:hover {
  background: rgba(255, 255, 255, 0.96) !important;
}

/* FAQ items stay readable */
body.light-mode .faq-answer {
  background: rgba(255, 255, 255, 0.75);
}

/* Carousel wrap gets glass treatment */
body.light-mode .carousel-wrap {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(139, 26, 46, 0.12);
}

body.light-mode .carousel-controls {
  background: rgba(226, 222, 216, 0.9);
}

/* Why visual card */
body.light-mode .why-visual {
  border: 1px solid rgba(139, 26, 46, 0.15);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
body.light-mode .hero {
  padding-top: 5.5rem;
}
/* ============================================================
   OTM DARK MODE PATCH — append at very bottom of style.css
   Fixes: stat bar readability, section label visibility
   ============================================================ */

/* ─────────────────────────────────────────────
   1. HERO STATS — premium dark mode redesign
   ───────────────────────────────────────────── */

/* Only apply when NOT in light mode */
body:not(.light-mode) .hero-stats {
  border: 1px solid rgba(139, 26, 46, 0.5);
  background: transparent;
  gap: 0;
}

body:not(.light-mode) .stat-item {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-right: 1px solid rgba(139, 26, 46, 0.25);
  padding: 1.4rem 2.8rem;
  position: relative;
}

body:not(.light-mode) .stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  box-shadow: 0 0 12px rgba(139, 26, 46, 0.6);
}

body:not(.light-mode) .stat-item:last-child {
  border-right: none;
}

body:not(.light-mode) .stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: #FFFFFF;
  text-shadow:
    0 0 20px rgba(255, 255, 255, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.8);
  line-height: 1;
}

body:not(.light-mode) .stat-label {
  color: rgba(200, 200, 200, 0.85);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

/* ─────────────────────────────────────────────
   2. SECTION LABELS — pill backdrop so they
      pop off any background in dark mode
   ───────────────────────────────────────────── */
body:not(.light-mode) .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #FFFFFF;
  background: rgba(139, 26, 46, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.3rem 0.85rem 0.3rem 0.6rem;
  border: 1px solid rgba(139, 26, 46, 0.6);
  border-left: 3px solid #FFFFFF;
  border-radius: 1px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  width: fit-content;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow:
    0 2px 12px rgba(139, 26, 46, 0.4),
    0 1px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.2rem;
}

/* Replace the old ::before line with a small diamond */
body:not(.light-mode) .section-label::before {
  content: '◆';
  display: inline-block;
  width: auto;
  height: auto;
  background: none;
  box-shadow: none;
  font-size: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

/* BA-TAG (FreshStart Solutions, Bachmobile tags) */
body:not(.light-mode) .ba-tag {
  color: #FFFFFF;
  background: rgba(139, 26, 46, 0.8);
  border: 1px solid rgba(139, 26, 46, 0.5);
  padding: 0.25rem 0.65rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 8px rgba(139, 26, 46, 0.3);
}

/* ─────────────────────────────────────────────
   3. WORK LINK — "VIEW LIVE SITE" in dark mode
      gets a backdrop so it reads over images
   ───────────────────────────────────────────── */
body:not(.light-mode) .work-link {
  color: #FFFFFF;
  background: rgba(139, 26, 46, 0.75);
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(139, 26, 46, 0.5);
  border-radius: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, gap 0.2s;
  text-shadow: none;
  width: fit-content;
}

body:not(.light-mode) .work-link:hover {
  background: rgba(139, 26, 46, 0.95);
  gap: 0.8rem;
}
/* ============================================================
   DARK MODE — Before/After badges to match light mode style
   ============================================================ */

body:not(.light-mode) .ba-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  padding: 0.5rem 1.3rem;
  border-radius: 0;
  top: 1.5rem;
  transform: none;
}

/* BEFORE badge — white filled, dark text */
body:not(.light-mode) .ba-label.before-label {
  left: 1.5rem;
  background: #FFFFFF;
  color: #1A1A1A;
  border: 2px solid #FFFFFF;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
  padding-right: 1.8rem;
  text-shadow: none;
}

/* AFTER badge — crimson filled, white text */
body:not(.light-mode) .ba-label.after-label {
  right: 1.5rem;
  background: var(--amber);
  color: #FFFFFF;
  border: 2px solid var(--amber);
  box-shadow:
    -3px 3px 0px rgba(139, 26, 46, 0.5),
    0 0 16px rgba(139, 26, 46, 0.4);
  clip-path: polygon(8px 0, 100% 0, 100% 100%, 8px 100%, 0 50%);
  padding-left: 1.8rem;
  text-shadow: none;
}
/* ============================================================
   DARK MODE — Section opacity so background image shows through
   ============================================================ */

body:not(.light-mode) .services-section,
body:not(.light-mode) .testimonials-section,
body:not(.light-mode) .process-section,
body:not(.light-mode) .ba-section {
  background: rgba(17, 17, 17, 0.55);
}

body:not(.light-mode) #work,
body:not(.light-mode) #why,
body:not(.light-mode) #pricing,
body:not(.light-mode) #faq {
  background: rgba(10, 10, 10, 0.5);
}

body:not(.light-mode) .contact-section {
  background: rgba(17, 17, 17, 0.6);
}

/* Keep content cards opaque so text stays readable */
body:not(.light-mode) .work-card {
  background: rgba(17, 17, 17, 0.88) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body:not(.light-mode) .work-card:hover {
  background: rgba(24, 24, 24, 0.95) !important;
}

body:not(.light-mode) .service-item {
  background: rgba(17, 17, 17, 0.88) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body:not(.light-mode) .service-item:hover {
  background: rgba(24, 24, 24, 0.96) !important;
}

body:not(.light-mode) .process-step {
  background: rgba(17, 17, 17, 0.88) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body:not(.light-mode) .process-step:hover {
  background: rgba(24, 24, 24, 0.96) !important;
}

body:not(.light-mode) .testimonial-card {
  background: rgba(17, 17, 17, 0.88) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

body:not(.light-mode) .carousel-controls {
  background: rgba(24, 24, 24, 0.92);
}

body:not(.light-mode) .why-visual {
  background: rgba(17, 17, 17, 0.88) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body:not(.light-mode) .pricing-single-left {
  background: rgba(24, 24, 24, 0.92) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body:not(.light-mode) .pricing-single-right {
  background: rgba(17, 17, 17, 0.88) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body:not(.light-mode) .faq-list {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body:not(.light-mode) .faq-answer {
  background: rgba(17, 17, 17, 0.92);
}

body:not(.light-mode) .ba-info {
  background: rgba(24, 24, 24, 0.88) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

body:not(.light-mode) .contact-form {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body:not(.light-mode) .form-field {
  background: rgba(24, 24, 24, 0.9) !important;
}

body:not(.light-mode) .form-submit-row {
  background: rgba(24, 24, 24, 0.92) !important;
}
/* ============================================================
   MOBILE FIXES — nav CTA stacking, stat overflow, horizontal scroll
   ============================================================ */

/* ─────────────────────────────────────────────
   1. NAV CTA — always stacked, never single line
      Lock it so it never changes on scroll
   ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-cta {
    white-space: normal !important;
    text-align: center;
    line-height: 1.2;
    padding: 0.45rem 0.9rem;
    font-size: 0.72rem;
    max-width: 120px;
    word-break: break-word;
  }

  /* Prevent JS scroll handler from overriding nav padding on mobile */
  nav {
    padding: 0.75rem 1.2rem !important;
  }
}

/* ─────────────────────────────────────────────
   2. HERO STATS — stop overflowing on mobile
      for BOTH dark and light mode
   ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-stats {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
    overflow: hidden;
  }

  .stat-item {
    flex: 1;
    min-width: 0 !important;
    padding: 0.9rem 0.5rem !important;
    text-align: center;
  }

  .stat-num {
    font-size: 1.4rem !important;
    letter-spacing: 0 !important;
  }

  .stat-label {
    font-size: 0.45rem !important;
    letter-spacing: 0.08em !important;
  }

  /* Light mode stat cards on mobile */
  body.light-mode .stat-item {
    padding: 0.9rem 0.5rem !important;
    border-right: none !important;
  }

  body.light-mode .stat-item::after {
    display: none !important;
  }

  body.light-mode .stat-item:last-child {
    border-right: none !important;
  }
}

/* ─────────────────────────────────────────────
   3. LIGHT MODE HORIZONTAL SCROLL — fix the
      sliver gap on the right side
   ───────────────────────────────────────────── */
body.light-mode {
  overflow-x: hidden;
  max-width: 100vw;
}

body.light-mode .hero {
  overflow-x: hidden;
  max-width: 100%;
}

/* Ensure hero overlay covers full width including any overflow */
body.light-mode .hero::after {
  left: -5%;
  right: -5%;
  width: 110%;
}

/* Section divider pseudo-elements can cause overflow — clamp them */
body.light-mode section + section::before {
  width: 100% !important;
  margin-left: 0 !important;
  left: 0;
}

/* Prevent any child from creating horizontal scroll */
@media (max-width: 900px) {
  body.light-mode section {
    overflow-x: hidden;
    max-width: 100vw;
  }

  body.light-mode .hero-bg-text {
    display: none;
  }

  body:not(.light-mode) .hero-bg-text {
    display: none;
  }
}
/* ============================================================
   MOBILE FIXED BACKGROUND — iOS/Android workaround
   Uses a pseudo-element since background-attachment: fixed
   is disabled on mobile browsers for performance reasons
   ============================================================ */

@media (max-width: 900px) {

  /* Lock body positioning context */
  body {
    position: relative;
  }

  /* DARK MODE fixed background pseudo-element */
  body:not(.light-mode)::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #0A0A0A url('assets/assets-bg-dark.jpg') center center / cover no-repeat;
    z-index: -1;
    pointer-events: none;
  }

  /* Remove background from body in dark mode on mobile
     so the pseudo-element shows through */
  body:not(.light-mode) {
    background: transparent !important;
  }

  /* LIGHT MODE fixed background pseudo-element */
  body.light-mode::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #F4F2EE url('assets/assets-bg-light.jpg') right top / 75% auto no-repeat;
    z-index: -1;
    pointer-events: none;
  }

  /* Remove background from body in light mode on mobile */
  body.light-mode {
    background: transparent !important;
  }

}
/* ============================================================
   MOBILE LIGHT MODE BACKGROUND — force fix
   ============================================================ */

@media (max-width: 900px) {

  body.light-mode {
    background-image: none !important;
    background-color: #F4F2EE !important;
  }

  body.light-mode::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/assets-bg-light.jpg') !important;
    background-color: #F4F2EE !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll !important;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
  }

}
/* ============================================================
   MOBILE BACKGROUND ZOOM OUT — both dark and light
   ============================================================ */

@media (max-width: 900px) {

  body:not(.light-mode)::before {
    background-size: 280% auto !important;
    background-position: center top !important;
  }

  body.light-mode::before {
    background-size: 280% auto !important;
    background-position: center top !important;
  }

}
