/* ═══════════════════════════════════════
   On Point — Dark Grid Editorial
   Inspired by MagnetLover aesthetic
   ═══════════════════════════════════════ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; }

:root {
  --dark: #111114;
  --dark-surface: #18181c;
  --grid-line: rgba(255,255,255,0.04);
  --border-line: rgba(255,255,255,0.08);
  --cream: #e8d5b8;
  --cream-dim: rgba(240,230,211,0.5);
  --coral: #ff6b6b;
  --teal: #4ecdc4;
  --purple: #a855f7;
  --yellow: #f0d060;
  --white: #ffffff;
  --text-muted: rgba(240,230,211,0.4);
  --text-body: rgba(240,230,211,0.7);
  --font-display: 'Outfit', 'Cabinet Grotesk', 'Arial Black', sans-serif;
  --font-body: 'General Sans', 'Helvetica Neue', sans-serif;
  --font-mono: 'Outfit', monospace;
  --font-serif: 'Georgia', 'Times New Roman', serif;
  --grid-col: calc(100vw / 6);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--dark);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
}
.outer-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 30px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 30px);
}
.outer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.04;
}


/* --- Content Frame --- */
.content-frame {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-left: 1px solid rgba(90, 82, 102, 0.4);
  border-right: 1px solid rgba(90, 82, 102, 0.4);
  background: var(--dark);
  z-index: 1;
  overflow: visible;
}


a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

::selection { background: var(--coral); color: var(--dark); }

/* --- Grid Overlay --- */
.grid-overlay {
  display: none;
}

/* --- Color Stripes (vertical accent) --- */
.color-stripes {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 1;
  pointer-events: none;
}
.color-stripes span {
  width: 18px;
  height: 60px;
  border-radius: 0 0 4px 4px;
}
.color-stripes span:nth-child(1) { background: rgba(255,255,255,0.15); }
.color-stripes span:nth-child(2) { background: var(--cream); }
.color-stripes span:nth-child(3) { background: rgba(255,255,255,0.15); }
.color-stripes span:nth-child(4) { background: var(--cream); }

/* --- Loader --- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader__logo {
  width: 90px;
  height: 90px;
  margin-bottom: 24px;
}

/* Nav logo — no glow/pulse */
.nav__logo-icon {
  opacity: 1;
  transition: transform 0.4s ease;
}
.nav__logo-icon:hover {
  transform: rotate(180deg);
}
.loader__line {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.loader__line::after {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 40%;
  height: 100%;
  background: var(--coral);
  animation: loader-slide 1s ease infinite;
}
@keyframes loader-slide {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
  border-bottom: 1px solid rgba(90, 82, 102, 0.4);
  background: rgba(17,17,20,0.95);
  backdrop-filter: blur(20px);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-icon { width: 38px; height: auto; margin: 0; }
.nav__logo-text-svg { fill: var(--cream); transition: fill 0.3s; }
.nav__logo:hover .nav__logo-text-svg { fill: var(--coral); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}
.nav__link {
  color: var(--cream);
  transition: color 0.3s;
  padding: 8px 12px;
}
.nav__link:hover { color: var(--coral); }
.nav__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(90, 82, 102, 0.6);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.nav__cta svg { width: 18px; height: 18px; }
.nav__cta:hover { background: var(--cream); color: var(--dark); border-color: var(--cream); }

/* Mobile menu button */
.nav__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__menu span {
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
}

/* --- Hero --- */
.hero {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 60px;
  text-align: center;
  overflow: visible;
}
.hero::before {
  display: none;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--cream-dim);
  margin-bottom: 40px;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-family: var(--font-display);
  font-family: 'Outfit', var(--font-display);
  font-weight: 900;
  -webkit-text-stroke: 0;
  font-size: clamp(4.5rem, 16vw, 16rem);
  line-height: 0.85;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: -6px;
  margin-bottom: 24px;
  position: relative;
  -webkit-text-stroke: 0;
}
.hero__mobile-strips { display: none; }
.hero__title-line--onpoint {
  position: relative;
  display: inline-block;
  color: transparent;
  background: none;
}
.hero__title-line--onpoint::before,
.hero__title-line--onpoint::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
}
.hero__title-line--onpoint::before {
  content: none;
}
.hero__title-line--onpoint::after {
  content: none;
}
.hero__title-line--onpoint {
  color: var(--cream);
  z-index: 1;
  letter-spacing: -6px;
}
.hero__tri-v,
.hero__tri-a {
  display: inline-block;
  height: 0.72em;
  width: auto;
  vertical-align: baseline;
  margin: 0 0.01em;
  position: relative;
  top: -0.02em;
}
/* flipped-v styles removed */
.hero__title-line {
  display: block;
}
.hero__title-line--onpoint {
  position: relative;
  display: inline-block;
}
.hero__onpoint-note {
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translate(100%, -50%);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.hero__onpoint-arrow {
  font-size: 1.4rem;
  color: var(--coral);
  font-weight: 400;
  animation: onpoint-nudge 2s ease-in-out infinite;
}
.hero__onpoint-arrow--mobile { display: none; }
.hero__onpoint-arrow--desktop { display: inline; }
.hero__onpoint-text {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-body);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
}
.hero__onpoint-text em {
  color: var(--coral);
  font-style: italic;
}
.hero__onpoint-note:hover .hero__onpoint-text {
  color: var(--cream);
}
@keyframes onpoint-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-4px); }
}
/* Stack the annotation below on small screens with arrow pointing up */
@media (max-width: 768px) {
  .hero__title-line--onpoint {
    display: inline-block;
    position: relative;
  }
  .hero__onpoint-note {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    justify-content: center;
    margin-top: 8px;
  }
  .hero__onpoint-arrow--desktop { display: none; }
  .hero__onpoint-arrow--mobile { display: inline; }
  .hero__onpoint-arrow {
    animation: onpoint-nudge-vertical 2s ease-in-out infinite;
  }
  @keyframes onpoint-nudge-vertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
  }
}

.hero__pin-o {
  display: inline-block;
  height: 0.83em;
  width: auto;
  vertical-align: baseline;
  margin: 0 -0.02em;
  position: relative;
  top: 0.06em;
  filter: none;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--text-body);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Floating Cards */
.hero__floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.float-card {
  position: absolute;
  width: 280px;
  pointer-events: auto;
  transition: transform 0.4s ease;
  border-radius: 14px;
  overflow: hidden;
}
.float-card:hover {
  transform: rotate(0deg) scale(1.08) !important;
}
.float-card img {
  width: 100%;
  height: auto;
  display: block;
  padding: 20px;
  box-sizing: border-box;
}
.float-card__label {
  display: block;
  text-align: center;
  padding: 10px 0 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.float-card--1 {
  top: 8%;
  left: -140px;
  width: 280px;
  transform: rotate(-12deg);
  background: #0d2b29;
}
.float-card--1 .float-card__label { color: #4ecdc4; }

.float-card--2 {
  top: 8%;
  right: -140px;
  width: 280px;
  transform: rotate(15deg);
  background: #2b1418;
}
.float-card--2 .float-card__label { color: #ff6b6b; }

.float-card--3 {
  bottom: 18%;
  left: -120px;
  width: 260px;
  transform: rotate(-8deg);
  background: #1c0f2e;
}
.float-card--3 .float-card__label { color: #a855f7; }

.float-card--4 {
  bottom: 15%;
  right: -120px;
  width: 260px;
  transform: rotate(10deg);
  background: #2b2510;
}
.float-card--4 .float-card__label { color: #f0d060; }

.float-card__tag {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* --- Scroll Marquee --- */
.scroll-marquee {
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 14px 0;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: var(--dark);
}
.scroll-marquee__track {
  display: flex;
  gap: 40px;
  animation: marquee-scroll 60s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.scroll-marquee span {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--text-muted);
  font-weight: 500;
}
.scroll-marquee .sep { color: var(--coral); }

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Info Bar (badges row) --- */
.info-bar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  z-index: 2;
  background: var(--dark);
}
.info-bar__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 40px;
}
.info-bar__icon {
  width: 48px;
  height: 48px;
  opacity: 0.3;
  flex-shrink: 0;
}
.info-bar__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info-bar__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.info-bar__value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Branding Bar --- */
.brand-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  position: relative;
  z-index: 2;
  background: var(--dark);
  min-height: 56px;
}
.brand-bar__left, .brand-bar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-bar .sep { color: var(--coral); }
.brand-bar__center {
  display: flex;
  gap: 3px;
  align-items: center;
  height: 24px;
}
.brand-bar__pip {
  width: 3px;
  height: 16px;
  background: rgba(255,255,255,0.15);
  border-radius: 1px;
  animation: eq-bounce 0.8s ease-in-out infinite alternate;
}
.brand-bar__pip:nth-child(1)  { animation-duration: 0.5s; }
.brand-bar__pip:nth-child(2)  { animation-duration: 0.7s; animation-delay: 0.1s; }
.brand-bar__pip:nth-child(3)  { animation-duration: 0.4s; animation-delay: 0.05s; }
.brand-bar__pip:nth-child(4)  { animation-duration: 0.65s; animation-delay: 0.15s; }
.brand-bar__pip:nth-child(5)  { animation-duration: 0.45s; animation-delay: 0.08s; }
.brand-bar__pip:nth-child(6)  { animation-duration: 0.8s; animation-delay: 0.2s; }
.brand-bar__pip:nth-child(7)  { animation-duration: 0.55s; animation-delay: 0.12s; }
.brand-bar__pip:nth-child(8)  { animation-duration: 0.35s; animation-delay: 0.03s; }
.brand-bar__pip:nth-child(9)  { animation-duration: 0.7s; animation-delay: 0.18s; }
.brand-bar__pip:nth-child(10) { animation-duration: 0.5s; animation-delay: 0.07s; }
.brand-bar__pip:nth-child(11) { animation-duration: 0.6s; animation-delay: 0.14s; }
.brand-bar__pip:nth-child(12) { animation-duration: 0.42s; animation-delay: 0.09s; }
.brand-bar__pip.active { background: var(--cream); }

@keyframes eq-bounce {
  0%   { height: 4px; }
  100% { height: 22px; }
}

/* --- Section Shared --- */
.section {
  position: relative;
  z-index: 2;
  padding: 100px 40px;
  background: var(--dark);
}
.section__label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.section__num { color: var(--teal); }

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--cream);
}
.section__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--text-body);
  max-width: 700px;
  line-height: 1.7;
}

/* --- Why Section (001) --- */
.why {
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: var(--dark);
}
.why__header { margin-bottom: 60px; }

.why__stat-band {
  background: var(--coral);
  color: var(--dark);
  padding: 20px 40px;
  margin: 0 -40px 50px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.why__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.why__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--text-body);
  line-height: 1.7;
}

/* --- Benefits (002) --- */
.benefits {
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: var(--dark);
}
.benefits__header { margin-bottom: 60px; }

.benefits__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-line);
  border-radius: 2px;
}
.benefits__col {
  padding: 40px;
}
.benefits__col:first-child {
  border-right: 1px solid var(--border-line);
}
.benefits__col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--teal);
}
.benefits__col-sub {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Accordion */
.accordion { border-top: 1px solid var(--border-line); }
.accordion__item { border-bottom: 1px solid var(--border-line); }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  transition: color 0.3s;
}
.accordion__trigger:hover { color: var(--coral); }
.accordion__icon {
  font-size: 1.2rem;
  color: var(--teal);
  transition: transform 0.3s;
}
.accordion__item.open .accordion__icon { transform: rotate(45deg); }
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion__inner {
  padding: 0 0 20px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* --- Color Pipes (decorative stripe band) --- */
.color-pipes {
  position: relative;
  z-index: 2;
  height: 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-line);
  background: var(--dark);
}
.color-pipes__inner {
  display: flex;
  height: 100%;
  align-items: center;
}
.color-pipes__line {
  height: 12px;
  border-radius: 6px;
  flex: 1;
}
.color-pipes__line--coral { background: var(--coral); }
.color-pipes__line--yellow { background: var(--yellow); }
.color-pipes__line--teal { background: var(--teal); }
.color-pipes__line--purple { background: var(--purple); }
.color-pipes__bend {
  width: 80px;
  height: 80px;
  position: relative;
}

/* --- Services Grid --- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-line);
  margin-top: 60px;
}
.service-card {
  padding: 40px 30px;
  border-right: 1px solid var(--border-line);
  position: relative;
  transition: background 0.3s;
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-child(n+4) { border-top: 1px solid var(--border-line); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 2px;
  background: var(--accent, var(--coral));
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  background: rgba(255,255,255,0.03);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card__num {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--accent, var(--coral));
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.service-card__desc {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-card__tags span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  color: var(--text-muted);
}

/* --- Big Text Section (About) --- */
.big-text {
  border-bottom: 1px solid var(--border-line);
}
.big-text__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--cream-dim);
  margin-bottom: 48px;
}
.big-text__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.big-text__left {
  position: sticky;
  top: 120px;
}
.big-text__statement {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.25;
  color: var(--cream);
  margin: 0;
}
.big-text__accent {
  font-family: var(--font-display);
  color: var(--coral);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}
.big-text__accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 3px;
  background: var(--coral);
  border-radius: 2px;
}
.big-text__right {
  border-left: 2px solid var(--teal);
  padding-left: 40px;
}
.big-text__content {
  margin-bottom: 24px;
}
.big-text__body {
  font-size: 1.05rem;
  color: var(--text-body);
  margin: 0 0 16px;
  line-height: 1.8;
}
.big-text__body:last-child {
  margin-bottom: 0;
}
.big-text__separator {
  border: none;
  border-top: 1px solid rgba(240, 230, 211, 0.15);
  max-width: 100%;
  margin: 32px 0;
}

/* --- Process Timeline --- */
.process__timeline {
  margin-top: 60px;
  position: relative;
}
.process__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-line);
  align-items: start;
}
.process__marker {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal);
  flex-shrink: 0;
}
.process__content {}
.process__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.process__desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 8px;
}
.process__time {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coral);
}

/* --- Marquee --- */
.marquee {
  border-top: 1px solid var(--border-line);
  border-bottom: 1px solid var(--border-line);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: var(--dark);
}
.marquee__track {
  display: flex;
  gap: 24px;
  animation: marquee-scroll 60s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--cream);
}
.marquee .dot {
  color: var(--coral);
}

/* --- CTA Section --- */
.cta {
  text-align: center;
  border-bottom: 1px solid var(--border-line);
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 7rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
}
.cta__title .accent { color: var(--coral); }
.cta__text {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  transition: all 0.3s;
  cursor: pointer;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn--primary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(90, 82, 102, 0.6);
  box-shadow: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn--primary:hover {
  background: var(--coral);
  color: var(--dark);
  border-color: var(--coral);
  transform: none;
  box-shadow: none;
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(90, 82, 102, 0.6);
  box-shadow: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn--outline:hover {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
  transform: none;
  box-shadow: none;
}
.btn--audit {
  background: rgba(78, 205, 196, 0.25);
  color: var(--teal);
  border: 1px solid rgba(78, 205, 196, 0.5);
  box-shadow: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.btn--audit:hover {
  background: var(--teal);
  color: var(--dark);
  border-color: var(--teal);
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(78, 205, 196, 0.3);
}

/* --- Contact --- */
.contact {
  border-bottom: 1px solid var(--border-line);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}
.contact__form { display: flex; flex-direction: column; gap: 20px; }

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.form__group input,
.form__group select,
.form__group textarea {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form__group input:-webkit-autofill,
.form__group input:-webkit-autofill:hover,
.form__group input:-webkit-autofill:focus,
.form__group textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #111114 inset !important;
  -webkit-text-fill-color: var(--cream) !important;
  transition: background-color 5000s ease-in-out 0s;
}
.form__group select {
  appearance: none;
  cursor: pointer;
}
.form__group select option {
  background: var(--dark);
  color: var(--cream);
}

.contact__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 10px;
}
.contact__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-line);
}
.contact__link-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}
.contact__link-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

/* --- Service Areas --- */
.areas {
  border-bottom: 1px solid var(--border-line);
}
.areas__header { margin-bottom: 40px; }
.areas__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.areas__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.areas__subtitle {
  color: var(--text-body);
  font-size: 0.9rem;
}
.areas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.areas__county-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--teal);
}
.areas__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.areas__city {
  font-size: 0.75rem;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  color: var(--text-body);
  transition: all 0.3s;
}
.areas__city--featured { border-color: rgba(255,255,255,0.15); color: var(--cream); }
.areas__overflow { display: none; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.areas__more[aria-expanded="true"] .areas__overflow { display: flex; }
.areas__toggle {
  margin-top: 12px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coral);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

/* --- Footer --- */
.footer {
  padding: 60px 40px 30px;
  position: relative;
  z-index: 2;
  background: var(--dark);
}
.footer__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-line);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__logo { width: 178px; height: 178px; object-fit: contain; display: inline-block; transition: transform 0.6s ease; cursor: pointer; }
.footer__logo:hover { transform: rotate(180deg); }
.footer__name {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.footer__links {
  display: flex;
  gap: 48px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col h4 {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 0.85rem;
  color: var(--text-body);
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--coral); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.footer__top-btn {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer__top-btn:hover { color: var(--coral); }

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
/* Staggered reveal delays */
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* Line draw on scroll — horizontal lines that draw in from left */
.line-draw {
  position: relative;
}
.line-draw::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.line-draw.drawn::after {
  width: 100%;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.btn.reveal.visible {
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.7s ease;
}
.btn.reveal.visible:hover {
  transform: translate(-3px, -2px);
}
/* Fallback: if JS hasn't kicked in after 3s, show content anyway */
@keyframes reveal-fallback {
  to { opacity: 1; transform: translateY(0); }
}
.reveal:not(.visible) {
  animation: reveal-fallback 0.5s ease 3s forwards;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .content-frame { border-left: none; border-right: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 1px solid var(--border-line); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card { border-bottom: 1px solid var(--border-line); }
  .hero__floats {
    pointer-events: none;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
  }
  .float-card {
    position: relative;
    width: 120px;
    opacity: 0.85;
    top: auto; bottom: auto; left: auto; right: auto;
  }
  .float-card--1 { transform: rotate(-12deg); }
  .float-card--2 { transform: rotate(15deg); }
  .float-card--3 { transform: rotate(-8deg); }
  .float-card--4 { transform: rotate(10deg); }
  .float-card__label { font-size: 0.65rem; padding: 6px 0 10px; }
  .float-card img { padding: 12px; }
}

@media (max-width: 768px) {
  :root { --grid-col: calc(100vw / 3); }

  .nav { padding: 0 20px; height: 64px; }
  .nav__logo-icon { width: 30px; height: auto; margin: 0; }
  .nav__logo-text { font-size: 1.8rem; letter-spacing: 2.5px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__menu { display: flex; }

  .hero__mobile-strips { display: flex; justify-content: center; gap: 16px; padding: 8px 0; }
  .hero__mobile-strips--top { margin-bottom: 12px; }
  .hero__mobile-strips--bottom { margin-top: 20px; }
  .hero__strip {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--strip-color);
    transform: rotate(var(--strip-angle));
    padding: 6px 16px;
    border: 1.5px solid var(--strip-color);
    background: rgba(17,17,20,0.6);
  }

  .hero { padding: 76px 20px 50px; justify-content: flex-start; }
  .hero__badge { font-size: 0.6rem; padding: 8px 16px; letter-spacing: 2px; margin-bottom: 28px; }
  .hero__title { font-size: clamp(4rem, 20vw, 7rem); letter-spacing: 0px; }
  .hero__title-line--onpoint { letter-spacing: 0px; }
  .hero__title-line--onpoint::before { transform: translate(-1.5px, -1.5px); }
  .hero .btn { padding: 10px 22px; font-size: 0.65rem; letter-spacing: 1.5px; }

  .section { padding: 60px 20px; }

  .info-bar { grid-template-columns: 1fr; }
  .info-bar__item { border-right: none; border-bottom: 1px solid var(--border-line); padding: 20px; }
  .info-bar__item:last-child { border-bottom: none; }

  .brand-bar { padding: 12px 20px; justify-content: center; }
  .brand-bar__left, .brand-bar__right { display: none; }
  .brand-bar__center { display: flex; }

  .why__body { grid-template-columns: 1fr; gap: 40px; }
  .why__stat-band { margin: 0 -20px 40px; padding: 16px 20px; }

  .benefits__split { grid-template-columns: 1fr; }
  .benefits__col:first-child { border-right: none; border-bottom: 1px solid var(--border-line); }

  .services__grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }

  .contact__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }

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

  .process__step { grid-template-columns: 56px 1fr; gap: 20px; }

  .footer__top { flex-direction: column; align-items: center; gap: 32px; text-align: center; }
  .footer__links { flex-direction: column; gap: 32px; align-items: center; }
  .footer__col { align-items: center; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .hero { text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }

  .section { text-align: center; }
  .big-text__grid { grid-template-columns: 1fr; gap: 32px; }
  .big-text__left { position: static; }
  .big-text__right { border-left: none; padding-left: 0; border-top: 2px solid var(--teal); padding-top: 32px; }
  .big-text__body { text-align: left; }
  .big-text__separator { margin-left: 0; margin-right: auto; }

  .info-bar__item { text-align: center; }

  .why__body { text-align: center; }
  .why__text { text-align: center; }

  .benefits__split { text-align: center; }
  .benefits__col { align-items: center; }

  .service-card { text-align: center; align-items: center; }

  .process__step { text-align: center; justify-items: center; }

  .contact__grid { text-align: center; }
  .contact__info { align-items: center; }

  .areas__grid { text-align: center; }

  .cta { text-align: center; }

  .color-stripes span { width: 12px; height: 40px; }
}

@media (max-width: 480px) {
  .hero__title { letter-spacing: 0px; font-size: clamp(4.5rem, 22vw, 7rem); }
  .hero__title-line--onpoint { letter-spacing: 0px; }
  .hero__title-line--onpoint::before { transform: translate(-1px, -1px); }
  .hero__sub { max-width: 100%; font-size: 0.85rem; padding: 0 4px; box-sizing: border-box; }
  .hero .btn { padding: 10px 16px; font-size: 0.6rem; letter-spacing: 1px; }
  .cta__title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero__floats { gap: 8px; }
  .float-card { width: 76px; }
  .float-card__label { font-size: 0.55rem; padding: 6px 0 8px; letter-spacing: 1px; }
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--cream);
  color: var(--dark);
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* --- Page Grain --- */
.page-grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* Desktop hero boost */
@media (min-width: 1200px) {
  .hero__title {
    font-size: 11rem;
    letter-spacing: -4px;
  }
  .hero__sub {
    font-size: 1.4rem;
  }
  .float-card {
    width: 220px;
  }
}

/* Hero text line control */
.hero__title-line--top,
.hero__title-line--bottom {
  display: inline;
}

@media (max-width: 768px) {
  .hero__title-line--top,
  .hero__title-line--bottom {
    display: block;
    text-align: center;
  }
}




