/* ============================================================
   ALTERNATE HOME PAGE STYLES
   Loaded after styles.css to override specific blocks
   ============================================================ */

/* =================== VERSION SWITCHER (all variants) =================== */
.version-switch {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 90;
  background: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 6px;
  display: flex;
  gap: 4px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.version-switch a {
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--slate);
  white-space: nowrap;
  transition: all 0.2s;
}
.version-switch a:hover { color: var(--paper); }
.version-switch a.is-active {
  background: var(--accent);
  color: white;
}

/* ============================================================
   V2 — EDITORIAL LIGHT
   Warm paper, oversized grotesk, agency portfolio
   ============================================================ */
body.v-editorial {
  background: #F4EFE3;
  color: #14110E;
}
.v-editorial { --paper: #F4EFE3; --paper-2: #E9E0CC; --ink: #14110E; --slate-deep: #4A4337; --slate-2: #7D7363; }

.v-editorial .nav {
  background: color-mix(in srgb, #F4EFE3 80%, transparent);
  border-bottom: 1px solid rgba(20,17,14,0.1);
}
.v-editorial .nav__links a { color: #4A4337; }
.v-editorial .nav__links a:hover, .v-editorial .nav__links a.is-active { background: rgba(20,17,14,0.06); color: #14110E; }

/* Hero — single big headline, no dark section */
.ed-hero {
  padding: 64px 0 24px;
  position: relative;
  overflow: hidden;
}
.ed-hero .container { position: relative; }
.ed-hero__year {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #7D7363;
  margin-bottom: 32px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.ed-hero__year::before {
  content: "";
  width: 28px; height: 1px;
  background: #14110E;
}
.ed-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #14110E;
  font-weight: 500;
  max-width: 1200px;
}
.ed-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-family: var(--font-display);
}
.ed-hero h1 .strike {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 6px;
  text-underline-offset: 12px;
}
.ed-hero__sub {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: end;
}
.ed-hero__lede {
  font-size: 20px;
  line-height: 1.45;
  color: #4A4337;
  max-width: 540px;
}
.ed-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Marquee strip */
.ed-marquee {
  background: #14110E;
  color: #F4EFE3;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.03em;
  font-weight: 500;
  white-space: nowrap;
}
.ed-marquee__track {
  display: flex;
  gap: 48px;
  animation: ed-scroll 32s linear infinite;
  width: max-content;
}
.ed-marquee span { display: inline-flex; align-items: center; gap: 48px; }
.ed-marquee em {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}
.ed-marquee .dot {
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
@keyframes ed-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Pillars as horizontal numbered list */
.ed-pillars {
  padding: 96px 0 56px;
}
.ed-pillar {
  display: grid;
  grid-template-columns: 80px 1.4fr 1fr 200px;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid rgba(20,17,14,0.15);
  align-items: start;
  transition: padding 0.3s;
}
.ed-pillar:last-child { border-bottom: 1px solid rgba(20,17,14,0.15); }
.ed-pillar:hover { padding-left: 16px; }
.ed-pillar__num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.ed-pillar h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 44px);
  letter-spacing: -0.025em;
  font-weight: 500;
  line-height: 1.05;
  color: #14110E;
  margin-bottom: 12px;
}
.ed-pillar__desc { color: #4A4337; font-size: 16px; line-height: 1.55; }
.ed-pillar__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #4A4337;
}
.ed-pillar__list li {
  padding-left: 14px;
  position: relative;
}
.ed-pillar__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.ed-pillar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: end;
  background: #14110E;
  color: #F4EFE3;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  width: fit-content;
  justify-self: end;
}
.ed-pillar__cta:hover { background: var(--accent); }

/* Editorial capabilities — 2-column with rules */
.ed-caps {
  padding: 80px 0 96px;
  background: #E9E0CC;
}
.ed-caps__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
  align-items: end;
}
.ed-caps__head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: -0.03em;
  font-weight: 500;
  line-height: 1.02;
  color: #14110E;
}
.ed-caps__head p {
  font-size: 18px;
  color: #4A4337;
  line-height: 1.5;
}
.ed-caps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(20,17,14,0.12);
  border-top: 1px solid rgba(20,17,14,0.12);
  border-bottom: 1px solid rgba(20,17,14,0.12);
}
.ed-cap {
  background: #E9E0CC;
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.ed-cap:hover { background: #F4EFE3; }
.ed-cap__idx {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #7D7363;
}
.ed-cap h4 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #14110E;
  margin: 0;
}
.ed-cap p { font-size: 14px; color: #4A4337; line-height: 1.5; }

/* Editorial work — large staggered */
.ed-work { padding: 96px 0; }
.ed-work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.ed-work__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--ink-2);
}
.ed-work__item .work-placeholder {
  width: 100%; height: 100%;
  transition: transform 0.5s;
}
.ed-work__item:hover .work-placeholder { transform: scale(1.04); }
.ed-work__item--1 { grid-column: 1 / span 7; aspect-ratio: 16/10; }
.ed-work__item--2 { grid-column: 8 / span 5; aspect-ratio: 4/5; margin-top: 56px; }
.ed-work__item--3 { grid-column: 1 / span 5; aspect-ratio: 1/1; margin-top: -120px; }
.ed-work__item--4 { grid-column: 6 / span 7; aspect-ratio: 16/10; }
.ed-work__meta-below {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ed-work__meta-below h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #14110E;
}
.ed-work__meta-below small {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7D7363;
}

/* Editorial CTA / footer */
.ed-cta {
  background: #14110E;
  color: #F4EFE3;
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}
.ed-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 500;
  max-width: 1100px;
}
.ed-cta h2 em { color: var(--accent); font-style: italic; font-weight: 400; }
.ed-cta__row {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.ed-cta__email {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #7D7363;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 20px;
  margin-left: 8px;
}
.ed-cta__email a { color: #F4EFE3; }

/* ============================================================
   V3 — PILLAR COLOR BLOCKS
   Three saturated vertical blocks dominate the hero
   ============================================================ */
.blocks-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
  overflow: hidden;
}
.blocks-hero__overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  pointer-events: none;
  padding: 96px 32px 24px;
  text-align: center;
}
.blocks-hero__overlay h1 {
  color: white;
  font-size: clamp(40px, 6.5vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-weight: 500;
  max-width: 1100px;
  margin: 0 auto;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.blocks-hero__overlay h1 em {
  font-style: italic;
  font-weight: 400;
}
.blocks-hero__overlay .eyebrow {
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  justify-content: center;
}
.blocks-hero__overlay .eyebrow::before { background: white; box-shadow: 0 0 0 4px rgba(255,255,255,0.3); }
.blocks-hero__overlay .lede {
  margin-top: 24px;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.block {
  position: relative;
  padding: 280px 32px 56px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: all 0.4s;
  pointer-events: auto;
}
.block:hover { flex: 1.3; }
.block--touch    { background: linear-gradient(180deg, #1647D1 0%, #062B8C 100%); }
.block--events   { background: linear-gradient(180deg, #FF6B35 0%, #B82F0A 100%); }
.block--sales    { background: linear-gradient(180deg, #18A065 0%, #0A5E3A 100%); }

.block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
.block__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.block__icon {
  margin: 16px 0 24px;
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.block h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: white;
}
.block__copy {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin-bottom: 24px;
  max-width: 380px;
}
.block__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #14110E;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  transition: transform 0.2s;
}
.block__cta:hover { transform: translateY(-2px); }

@media (max-width: 900px) {
  .blocks-hero { grid-template-columns: 1fr; min-height: auto; }
  .blocks-hero__overlay { position: static; padding: 80px 24px 0; }
  .block { padding: 48px 28px; }
}
