/* ============================================================
   SWAY STRATEGY — REDESIGN v2
   Strict palette: black + gold. Sampled from the original SWAY logo.
   ============================================================ */

:root {
  /* Brand — rich antique gold (less yellow, more bronze) to match OG SWAY */
  --orange: #C9892F;        /* primary gold accent — rich antique gold */
  --orange-bright: #E5A954; /* lighter gold for hovers */
  --orange-deep: #8B5E16;   /* deep bronze for pressed/text-on-light */
  --orange-50: #F8EBD2;     /* pale gold tint */
  --gold: #C9892F;          /* alias */
  --gold-bright: #E5A954;
  --gold-deep: #8B5E16;

  /* Neutrals — warm-tinted darks so the black harmonises with the gold accent
     and the page feels less flat / pitch-black. */
  --black: #1A1612;        /* warm near-black (was #0A0A0A) */
  --black-deep: #100D0A;   /* deepest tone, used for gradients/footer */
  --ink: #221E18;          /* card / section bg */
  --ink-2: #2B2620;        /* raised surface */
  --ink-3: #3A3328;        /* hover surface */
  --line: rgba(255, 240, 210, 0.08);
  --line-strong: rgba(255, 240, 210, 0.18);
  --muted: #B5ACA0;        /* warm muted text */
  --muted-2: #7A7468;
  --paper: #F4F1EC;
  --paper-2: #ECE7DD;

  /* Type */
  --display: 'Anton', 'Inter', system-ui, sans-serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background-color: var(--black);
  /* Warm vignette + a wash of gold to lift the page off pure black */
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 137, 47, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 30%, rgba(201, 137, 47, 0.05) 0%, transparent 65%),
    radial-gradient(ellipse 70% 60% at 0% 80%, rgba(184, 128, 31, 0.06) 0%, transparent 65%);
  background-attachment: fixed;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
}

/* Soft grain overlay — adds tactile texture without dominating */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0 0.6  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}

/* Keep all real content above the grain layer */
body > * { position: relative; z-index: 1; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--pad);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--pad);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 120px; width: auto; transition: height 0.3s ease; }
.nav.scrolled .nav-logo { height: 88px; }
@media (max-width: 768px) {
  .nav-logo { height: 80px; }
  .nav.scrolled .nav-logo { height: 64px; }
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  padding: 10px 20px;
  background: var(--orange);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--orange-bright); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn.sent { background: #22c55e; color: #fff; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 220px var(--pad) 100px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  top: -300px;
  right: -200px;
  background: radial-gradient(circle, rgba(201, 137, 47, 0.18) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}

.hero-container {
  position: relative;
  text-align: center;
  z-index: 2;
  max-width: 1100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(201, 137, 47, 0.1);
  border: 1px solid rgba(201, 137, 47, 0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201, 137, 47, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(201, 137, 47, 0); }
}

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 11vw, 156px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-title .line { display: block; }
.hero-title .line-outline {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}
.hero-title .hl {
  color: var(--orange);
}
.hero-title .line-italic {
  font-family: 'Inter', serif;
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  font-size: 0.65em;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.85);
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-clients {
  padding-top: 44px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
.hero-clients-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px 56px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.hero-client {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 200px;
  height: 64px;
  opacity: 0.78;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hero-client:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.hero-client img {
  max-height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  /* Logos are white-on-transparent — they sit naturally on the dark hero */
  filter: brightness(0) invert(1);
}
.hero-clients-divider {
  display: none;
}
@media (max-width: 900px) {
  .hero-clients-row { gap: 32px 40px; }
  .hero-client { flex: 0 0 160px; height: 56px; }
  .hero-client img { max-width: 140px; }
}
@media (max-width: 640px) {
  .hero-clients-row { gap: 24px 30px; }
  .hero-client { flex: 0 0 130px; height: 48px; }
  .hero-client img { max-width: 120px; }
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scroll-tick 2s ease-in-out infinite;
}
@keyframes scroll-tick {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); }
}

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
  background: var(--orange);
  color: var(--black);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid var(--orange-deep);
  border-bottom: 1px solid var(--orange-deep);
}
.marquee-track {
  display: flex;
  gap: 36px;
  align-items: center;
  white-space: nowrap;
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 32px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track .dot-sep { font-size: 0.6em; opacity: 0.7; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */

.section-head {
  margin-bottom: 60px;
  max-width: 800px;
}
.section-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow-light { color: var(--orange); }
.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-title-xl {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(50px, 7.5vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-title .hl, .section-title-xl .hl { color: var(--orange); }
.hl-italic {
  font-family: 'Inter', serif;
  font-style: italic;
  font-weight: 300;
  text-transform: none;
  font-size: 0.7em;
  letter-spacing: -0.03em;
  color: var(--orange);
}
.section-lede {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--muted);
  margin-top: 22px;
  max-width: 640px;
}
.section-head-center .section-lede { margin-left: auto; margin-right: auto; }
.section-lede-light { color: rgba(255, 255, 255, 0.75); }

/* ============================================================
   ABOUT
   ============================================================ */

.about {
  padding: 120px 0;
  background: var(--black);
  border-top: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
}
.about-col p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.about-col p strong { color: #fff; font-weight: 600; }
.about-col p em { color: var(--orange); font-style: italic; font-weight: 500; }
.about-col .lede {
  font-size: 20px;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 24px;
}
.about-col .closing {
  font-family: var(--display);
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-top: 30px;
}

.services-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.service {
  padding: 32px 28px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.service:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  background: var(--ink-2);
}
.service-num {
  font-family: var(--display);
  font-size: 14px;
  color: var(--orange);
  margin-bottom: 18px;
  letter-spacing: 0.1em;
}
.service h3 {
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  font-weight: 400;
}
.service p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   BUSINESS / STEPS
   ============================================================ */

.business {
  padding: 140px 0;
  background: var(--paper);
  color: var(--black);
  position: relative;
}
.business .eyebrow { color: var(--orange-deep); }
.business .section-title-xl { color: var(--black); }
.business .section-title-xl .hl-italic { color: var(--orange-deep); }
.business .section-lede { color: rgba(0, 0, 0, 0.65); }
.business .section-lede strong { color: var(--orange-deep); font-weight: 700; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.step {
  padding: 36px 30px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -20px rgba(201, 137, 47, 0.4);
}
.step-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--black);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 24px;
}
.step h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 16px;
}
.step p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.7);
}
.step:nth-child(2) {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}
.step:nth-child(2) h3 { color: #fff; }
.step:nth-child(2) p { color: rgba(255, 255, 255, 0.7); }
.step:nth-child(2) .step-tag {
  background: var(--orange);
  color: var(--black);
}

.business-cta { text-align: center; margin-top: 40px; }

/* ============================================================
   INFLUENCERS
   ============================================================ */

.influencers {
  padding: 140px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.influencers::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(201, 137, 47, 0.12), transparent 60%);
  pointer-events: none;
}
.influencers-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.influencers-text .section-title-xl {
  margin-bottom: 24px;
}
.reqs {
  margin: 40px 0;
  padding: 28px;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.reqs-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.reqs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.reqs-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}
.req-num {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--black);
  font-weight: 700;
  font-size: 13px;
  border-radius: 50%;
  flex-shrink: 0;
}
.reqs-list strong { color: var(--orange); font-weight: 600; }

.influencers-visual {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.orbit {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}
.orbit-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 3;
}
.orbit-center img {
  width: 30%;
  filter: drop-shadow(0 10px 40px rgba(201, 137, 47, 0.4));
}
.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1.5px dashed rgba(201, 137, 47, 0.35);
  border-radius: 50%;
  animation: spin-slow 40s linear infinite;
}
.orbit-ring-1 { inset: 18%; }
.orbit-ring-2 { animation-direction: reverse; animation-duration: 60s; }
.orbit-ring .orb {
  position: absolute;
  width: 44px; height: 44px;
  background: var(--ink);
  border: 1.5px solid var(--orange);
  color: var(--orange);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 16px;
  animation: spin-slow-counter 40s linear infinite;
}
.orbit-ring-2 .orb { animation-duration: 60s; }
.orbit-ring-1 .orb:nth-child(1) { top: -22px; left: 50%; transform: translateX(-50%); }
.orbit-ring-1 .orb:nth-child(2) { top: 50%; right: -22px; transform: translateY(-50%); }
.orbit-ring-1 .orb:nth-child(3) { bottom: -22px; left: 50%; transform: translateX(-50%); }
.orbit-ring-1 .orb:nth-child(4) { top: 50%; left: -22px; transform: translateY(-50%); }
.orbit-ring-2 .orb:nth-child(1) { top: 4%; left: 50%; transform: translate(-50%, -50%); }
.orbit-ring-2 .orb:nth-child(2) { top: 25%; right: 4%; }
.orbit-ring-2 .orb:nth-child(3) { bottom: 25%; right: 4%; }
.orbit-ring-2 .orb:nth-child(4) { bottom: 4%; left: 50%; transform: translate(-50%, 50%); }
.orbit-ring-2 .orb:nth-child(5) { bottom: 25%; left: 4%; }
.orbit-ring-2 .orb:nth-child(6) { top: 25%; left: 4%; }

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

/* ============================================================
   PORTFOLIO / ROSTER
   ============================================================ */

.portfolio {
  padding: 140px 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.roster {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.roster-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, color 0.3s;
  cursor: default;
}
.roster-card:hover {
  background: var(--orange);
  color: var(--black);
}
.roster-card:hover .roster-num { color: var(--black); opacity: 0.6; }
.roster-num {
  font-family: var(--display);
  font-size: 14px;
  color: var(--orange);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  width: 28px;
}
.roster-name {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 26px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.roster-more {
  margin-top: 30px;
  text-align: center;
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.04em;
}

/* ============================================================
   CTA / CONTACT
   ============================================================ */

.cta {
  padding: 120px 0;
  background: var(--black);
}
.cta-card {
  position: relative;
  background: linear-gradient(180deg, var(--ink) 0%, var(--black) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  padding: 80px 60px;
  overflow: hidden;
}
.cta-bg-glow {
  position: absolute;
  width: 800px; height: 800px;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201, 137, 47, 0.18), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 18px 0 18px;
}
.cta-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 30px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: #fff;
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: var(--muted-2);
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(201, 137, 47, 0.05);
}
.cta-form select { color: var(--muted-2); }
.cta-form select:valid { color: #fff; }
.cta-form textarea { resize: vertical; min-height: 100px; }
.cta-form button { align-self: center; margin-top: 10px; }
.cta-form button[disabled] { opacity: 0.6; cursor: not-allowed; }

/* Hidden honeypot input — invisible to humans, visible to bots */
.cta-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  margin-top: 12px;
  font-size: 14px;
  min-height: 20px;
  text-align: center;
  color: var(--muted);
}
.form-status--ok  { color: #6ECF8E; }
.form-status--err { color: #E37B6A; }

.cta-direct {
  font-size: 14px;
  color: var(--muted);
}
.cta-direct a {
  color: var(--orange);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.cta-direct a:hover { color: var(--orange-bright); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding-top: 80px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-logo { height: 70px; width: auto; margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--orange); }

.footer-mark {
  text-align: center;
  padding: 30px 0;
  overflow: hidden;
}
.footer-mark-text {
  font-family: var(--display);
  font-size: clamp(120px, 26vw, 380px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.85;
  background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted-2);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--muted-2); transition: color 0.2s; }
.footer-legal a:hover { color: var(--orange); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 70px 0 0 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    z-index: 99;
  }
  .nav-links.open a { font-size: 22px; }

  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .services-strip { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .influencers-inner { grid-template-columns: 1fr; gap: 60px; }
  .roster { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding-top: 110px; padding-bottom: 80px; }
  .hero-clients { padding-top: 30px; gap: 18px; }
  .form-row { grid-template-columns: 1fr; }
  .roster { grid-template-columns: 1fr; }
  .cta-card { padding: 50px 24px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============================================
   ROSTER CARD AS LINK
   ============================================ */
a.roster-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  cursor: pointer;
}
.roster-arrow {
  margin-left: auto;
  font-size: 22px;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s ease, transform .25s ease;
  font-weight: 700;
}
a.roster-card:hover .roster-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   INFLUENCER DETAIL PAGE
   ============================================ */
.influencer-page {
  background: var(--black);
  color: var(--paper);
}

.influencer-detail {
  position: relative;
  padding: 160px 0 120px;
  overflow: hidden;
}

.influencer-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 137, 47, 0.18) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.influencer-detail .container {
  position: relative;
  z-index: 1;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 60px;
  padding: 10px 18px;
  border: 1.5px solid rgba(244, 241, 236, 0.2);
  border-radius: 999px;
  transition: all 0.25s ease;
}
.back-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateX(-4px);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}

.detail-photo {
  position: sticky;
  top: 120px;
}

.photo-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 3 / 4;
  border: 1.5px solid rgba(244, 241, 236, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--orange);
  color: var(--black);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-content .eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.detail-name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--paper);
}

.detail-title {
  font-size: 16px;
  color: rgba(244, 241, 236, 0.7);
  font-weight: 500;
  margin: 0 0 32px;
  letter-spacing: 0.02em;
}

.detail-bio {
  margin-bottom: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 241, 236, 0.12);
}
.detail-bio p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(244, 241, 236, 0.85);
  margin: 0 0 18px;
}
.detail-bio p:last-child { margin-bottom: 0; }

.detail-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1.5px solid rgba(244, 241, 236, 0.18);
  border-radius: 999px;
  color: var(--paper);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}
.social-link svg {
  flex-shrink: 0;
}
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
  transform: translateY(-2px);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.detail-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   MORE CREATORS
   ============================================ */
.more-creators {
  margin-top: 140px;
  padding-top: 80px;
  border-top: 1px solid rgba(244, 241, 236, 0.1);
}
.more-head {
  margin-bottom: 50px;
}
.more-head .eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.more-head .section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  color: var(--paper);
}

.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.more-card {
  display: block;
  text-decoration: none;
  color: var(--paper);
  background: #141414;
  border: 1px solid rgba(244, 241, 236, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.more-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
}

.more-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1a1a1a;
}
.more-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.more-card:hover .more-photo img {
  transform: scale(1.05);
}

.more-info {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.more-info strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--paper);
}
.more-info span {
  font-size: 13px;
  color: rgba(244, 241, 236, 0.55);
  letter-spacing: 0.02em;
}

/* ============================================
   INFLUENCER PAGE - RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .detail-photo {
    position: static;
    max-width: 480px;
  }
  .more-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .influencer-detail {
    padding: 130px 0 90px;
  }
  .more-creators {
    margin-top: 100px;
    padding-top: 60px;
  }
}

@media (max-width: 640px) {
  .influencer-detail {
    padding: 110px 0 70px;
  }
  .back-link {
    margin-bottom: 40px;
  }
  .more-grid {
    grid-template-columns: 1fr;
  }
  .detail-socials {
    gap: 8px;
  }
  .social-link {
    padding: 10px 14px;
    font-size: 13px;
  }
}

/* ============================================
   LOGO INCORPORATION — watermark, marquee mark, section mark
   ============================================ */

/* Giant decorative W watermark in the hero — sits behind everything */
.hero-watermark {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 720px;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 0 60px rgba(201, 137, 47, 0.4));
  animation: hero-watermark-float 12s ease-in-out infinite;
}
@keyframes hero-watermark-float {
  0%, 100% { transform: translateY(-50%) rotate(-2deg); }
  50%      { transform: translateY(-52%) rotate(2deg); }
}
.hero-container { position: relative; z-index: 2; }

/* Marquee separators replaced with mini W logos */
.marquee-track .marquee-mark {
  height: 28px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
  opacity: 0.7;
  filter: drop-shadow(0 0 8px rgba(201, 137, 47, 0.5));
}

/* Section divider — gold lines flanking the W */
.section-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 30px var(--pad);
  max-width: var(--container);
  margin: 0 auto;
}
.section-mark-line {
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--orange) 50%,
    transparent
  );
}
.section-mark-logo {
  height: 60px;
  width: auto;
  opacity: 0.9;
  filter: drop-shadow(0 0 24px rgba(201, 137, 47, 0.5));
  transition: transform 0.4s ease;
}
.section-mark:hover .section-mark-logo {
  transform: rotate(8deg) scale(1.05);
}
@media (max-width: 768px) {
  .hero-watermark {
    width: 480px;
    right: -180px;
    opacity: 0.05;
  }
  .section-mark { gap: 16px; padding: 20px var(--pad); }
  .section-mark-logo { height: 44px; }
  .section-mark-line { max-width: 120px; }
  .marquee-track .marquee-mark { height: 22px; }
}

/* ============================================
   CAMPAIGNS PAGE
   ============================================ */
.campaigns-page {
  background-color: var(--black);
  color: var(--paper);
}

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

.campaigns-hero {
  position: relative;
  padding: 220px var(--pad) 80px;
  overflow: hidden;
}
.campaigns-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(201, 137, 47, 0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}
.campaigns-hero .container { position: relative; z-index: 1; max-width: 1100px; }

.campaigns-title {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 18px 0 28px;
}
.campaigns-title .hl { color: var(--orange); font-style: italic; }

.campaigns-lede {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  max-width: 640px;
  color: rgba(244, 241, 236, 0.78);
}

.case-study {
  padding: 60px var(--pad) 140px;
}

.former-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.former-head .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}
.former-rule {
  display: block;
  width: 64px;
  height: 3px;
  margin: 0 auto 22px;
  background: var(--orange);
  border-radius: 2px;
}
.former-head .section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 0 18px;
  text-transform: uppercase;
}
.former-head .section-lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244, 241, 236, 0.72);
  margin: 0;
}

@media (max-width: 720px) {
  .former-head { margin-bottom: 36px; }
  .former-head .section-title { font-size: 36px; }
  .former-head .section-lede { font-size: 15px; }
}

.case-card {
  background: linear-gradient(180deg, rgba(34, 30, 24, 0.9) 0%, rgba(20, 17, 13, 0.95) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.case-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--orange), transparent);
}

.case-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 60px;
}

.case-client {
  display: flex;
  align-items: center;
  gap: 28px;
}
.case-logo {
  height: 160px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.case-client-meta .eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.case-name {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 8px 0 0;
}

.case-stat {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.case-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.case-stat-number {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 110px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--orange);
  display: block;
  text-shadow: none;
}
.case-stat-sub {
  font-size: 13px;
  color: rgba(244, 241, 236, 0.6);
  letter-spacing: 0.04em;
}

.case-perspective .eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.perspective-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 14px 0 50px;
  color: var(--paper);
  max-width: 900px;
}
.perspective-title .hl { color: var(--orange); }

.perspective-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.perspective-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.perspective-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 20px 60px -20px rgba(201, 137, 47, 0.4);
}

.perspective-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
}
.perspective-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.perspective-card:hover .perspective-photo img { transform: scale(1.04); }
.perspective-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(20, 17, 13, 0.7) 100%);
  pointer-events: none;
}
.perspective-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--orange);
  color: var(--black);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.perspective-body {
  padding: 28px 26px 30px;
}
.perspective-figure {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--orange);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.perspective-figure-sub {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(244, 241, 236, 0.55);
  text-transform: uppercase;
  margin-top: 10px;
}
.perspective-body p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 241, 236, 0.82);
  margin: 0;
}
.perspective-body p strong { color: var(--paper); font-weight: 700; }
.perspective-body p em { color: var(--orange-bright); font-style: italic; }

.case-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.case-footnote {
  text-align: center;
  font-size: 14px;
  color: rgba(244, 241, 236, 0.55);
  margin-top: 50px;
  font-style: italic;
}

@media (max-width: 1024px) {
  .case-header {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: left;
  }
  .case-stat { align-items: flex-start; text-align: left; }
  .perspective-grid { grid-template-columns: repeat(2, 1fr); }
  .case-card { padding: 40px 28px; }
}

@media (max-width: 640px) {
  .campaigns-hero { padding: 140px var(--pad) 50px; }
  .case-study { padding-bottom: 90px; }
  .case-card { padding: 32px 20px; border-radius: 12px; }
  .case-client { flex-direction: column; align-items: flex-start; gap: 16px; }
  .case-logo { height: 100px; max-width: 280px; }
  .perspective-grid { grid-template-columns: 1fr; }
  .case-cta { flex-direction: column; }
  .case-cta .btn { justify-content: center; }
}
