/* ============================================================
   STYLES.CSS — Ashton's Ad-Creator Portfolio
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=Hanken+Grotesk:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── Custom Properties ── */
:root {
  --bg:            #F5EFE0;
  --bg-warm:       #EDE5D0;
  --bg-card:       #F0E9D8;
  --ink:           #1A1108;
  --ink-mid:       #4A3F2F;
  --ink-soft:      #8A7A63;
  --ink-faint:     #C8B89A;
  --accent:        #C4522A;
  --accent-hover:  #A84020;
  --accent-light:  #F0886A;
  --espresso:      #1A1108;
  --espresso-warm: #231509;
  --white:         #FDFAF4;

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --ff-mono:    'DM Mono', 'Courier New', monospace;

  --r-sm:   4px;
  --r-md:   10px;
  --r-lg:   20px;
  --r-full: 9999px;

  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:       0.18s;
  --t-mid:        0.32s;
  --t-slow:       0.5s;

  --shadow-sm:   0 1px 4px rgba(26,17,8,0.07), 0 1px 2px rgba(26,17,8,0.05);
  --shadow-md:   0 4px 16px rgba(26,17,8,0.10), 0 2px 6px rgba(26,17,8,0.06);
  --shadow-lg:   0 16px 48px rgba(26,17,8,0.14), 0 6px 16px rgba(26,17,8,0.08);
  --shadow-card: 0 2px 12px rgba(26,17,8,0.08), 0 1px 3px rgba(26,17,8,0.05);
  --shadow-card-hover: 0 14px 44px rgba(26,17,8,0.16), 0 4px 12px rgba(26,17,8,0.08);

  --max-w: 1280px;
  --section-gap: clamp(80px, 10vw, 140px);
  --grid-gap: 24px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  overflow-x: hidden;
  position: relative;
}

/* Paper grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.mono {
  font-family: var(--ff-mono);
  font-size: 0.72em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

section { padding: var(--section-gap) 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: var(--r-full);
  transition: all var(--t-mid) var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,82,42,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(26,17,8,0.2);
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
}

/* ── Tags ── */
.tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: rgba(26,17,8,0.07);
  color: var(--ink-mid);
}

/* ── Section Label ── */
.section-label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Placeholder System ── */
.media-placeholder {
  background: var(--bg-warm);
  border: 1.5px dashed var(--ink-faint);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  color: var(--ink-soft);
  text-align: center;
  min-height: 200px;
}
.media-placeholder__icon {
  font-size: 24px;
  opacity: 0.5;
}
.media-placeholder__label {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  word-break: break-all;
}
.media-placeholder__hint {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease), padding var(--t-mid) var(--ease);
}
.nav.scrolled {
  background: rgba(245,239,224,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26,17,8,0.08);
  padding: 14px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.nav__logo span { color: var(--accent); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color var(--t-fast);
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all var(--t-mid) var(--ease);
  transform-origin: center;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 40px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  text-decoration: none;
  transition: color var(--t-fast);
}
.nav__mobile a:hover { color: var(--accent); }
.nav__mobile .mobile-sub {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-mid);
  margin-top: auto;
  display: flex;
  gap: 16px;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  padding-top: clamp(140px, 18vw, 220px);
  padding-bottom: clamp(80px, 10vw, 130px);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.hero__content { max-width: 700px; }

.hero__available {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  background: rgba(26,17,8,0.05);
  padding: 8px 14px;
  border-radius: var(--r-full);
  margin-bottom: 32px;
}
.hero__available .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4CAF50;
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
.hero__available.unavailable .dot { background: #FF9800; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__headline {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero__headline em {
  font-style: italic;
  color: var(--accent);
}

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-mid);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__meta {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero__meta::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink-faint);
}

/* Rotating Badge */
.hero__badge {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  cursor: pointer;
}
.hero__badge__ring {
  width: 100%;
  height: 100%;
  animation: spin 18s linear infinite;
}
.hero__badge__ring text {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  fill: var(--ink-mid);
  letter-spacing: 3px;
}
.hero__badge__center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__badge__play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-mid) var(--ease-spring), box-shadow var(--t-mid) var(--ease);
  box-shadow: 0 4px 20px rgba(196,82,42,0.35);
}
.hero__badge:hover .hero__badge__play {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(196,82,42,0.45);
}
.hero__badge__play svg { margin-left: 3px; }

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

@media (prefers-reduced-motion: reduce) {
  .hero__badge__ring { animation: none; }
}

/* ================================================================
   MARQUEE
   ================================================================ */
.marquee {
  padding: 28px 0;
  background: var(--espresso);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.marquee__track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee__track:hover { animation-play-state: paused; }

.marquee__item {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 28px;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}
.marquee__item::after {
  content: '·';
  margin-left: 28px;
  color: var(--accent);
  font-size: 1rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ================================================================
   SELECTED WORK
   ================================================================ */
.work__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 64px);
  flex-wrap: wrap;
}
.work__title {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 480px;
}
.work__intro {
  font-size: 0.95rem;
  color: var(--ink-mid);
  max-width: 340px;
  flex-shrink: 0;
  line-height: 1.6;
}

.work__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--grid-gap);
}

/* Brand Card */
.brand-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
  text-decoration: none;
  display: block;
  aspect-ratio: 4/3;
}
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.brand-card:hover .brand-card__arrow { transform: translate(3px, -3px); }

.brand-card__cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow) var(--ease);
}
.brand-card:hover .brand-card__cover { transform: scale(1.04); }

/* Gradient fallback when no cover image */
.brand-card__gradient {
  position: absolute;
  inset: 0;
}
.brand-card__index {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--ff-display);
  font-size: clamp(80px, 14vw, 130px);
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.07);
  user-select: none;
  pointer-events: none;
}
.brand-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}
.brand-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: white;
}
.brand-card__category {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}
.brand-card__name {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.brand-card__tagline {
  font-size: 0.82rem;
  opacity: 0.65;
  margin-top: 4px;
}
.brand-card__arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-mid) var(--ease-spring);
}

/* ================================================================
   REAL ESTATE CASE STUDY — Dark Band
   ================================================================ */
.real-estate {
  background: var(--espresso);
  color: var(--white);
  padding: var(--section-gap) 0;
}
.real-estate .section-label { color: var(--accent-light); }
.real-estate .section-label::before { background: var(--accent-light); }

.real-estate__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.real-estate__headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
}
.real-estate__headline em { font-style: italic; color: var(--accent-light); }

.real-estate__body {
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  font-size: 1rem;
}

.real-estate__differentiator {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin-bottom: 36px;
}
.real-estate__differentiator p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.real-estate__differentiator strong { color: var(--white); font-weight: 500; }

/* Video gallery in dark band */
.video-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-item {
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.video-item__player { position: relative; }
.video-item__player video {
  width: 100%;
  border-radius: var(--r-md) var(--r-md) 0 0;
  display: block;
}
.video-item__info {
  padding: 14px 18px;
}
.video-item__title {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 4px;
}
.video-item__caption {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* YouTube/Vimeo embed */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
/* Vertical videos (YouTube Shorts / Reels / TikTok) — 9:16 frame, centered */
.video-embed.vertical {
  padding-bottom: 0;
  height: min(78vh, 640px);
  max-width: 360px;
  margin: 0 auto;
  border-radius: var(--r-md) var(--r-md) 0 0;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services__header { margin-bottom: clamp(48px, 7vw, 80px); }
.services__title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.services__intro { color: var(--ink-mid); max-width: 480px; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(26,17,8,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background var(--t-fast);
}
.service-card:hover { background: var(--bg-warm); }

.service-card__number {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.service-card__title {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.service-card__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-mid);
  flex: 1;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* ================================================================
   MY APPROACH
   ================================================================ */
.approach { background: var(--bg-warm); }
.approach__header { margin-bottom: clamp(48px, 7vw, 80px); }
.approach__title { font-size: clamp(2rem, 4vw, 3rem); }

.approach__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.approach-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  transition: transform var(--t-mid) var(--ease);
}
.approach-card:hover { transform: translateY(-4px); }

.approach-card__number {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.approach-card__title {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 14px;
}
.approach-card__body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-mid);
}

/* ================================================================
   CREATOR ARMY — Dark Band
   ================================================================ */
.creator-army {
  background: var(--espresso-warm);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.creator-army::before {
  content: 'CA';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: clamp(200px, 30vw, 420px);
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
}

.creator-army .section-label { color: var(--accent-light); }
.creator-army .section-label::before { background: var(--accent-light); }

.creator-army__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
  position: relative;
}

.creator-army__headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 24px;
}
.creator-army__headline em { font-style: italic; color: var(--accent-light); }

.creator-army__body {
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-size: 1rem;
  margin-bottom: 28px;
}

.creator-army__highlight {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 28px;
}
.creator-army__highlight p {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.creator-army__bootcamp {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.creator-army__bootcamp__label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 10px;
}
.creator-army__bootcamp p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.creator-army__logo {
  max-height: 48px;
  width: auto;
  opacity: 0.85;
  margin-top: 8px;
}

/* Simon Beard card */
.creator-army__right { display: flex; flex-direction: column; gap: 28px; }

.simon-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.simon-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.1);
}
.simon-card__photo-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 8px;
  border: 1px dashed rgba(255,255,255,0.15);
}
.simon-card__info .name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}
.simon-card__info .title {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}
.simon-card__stat {
  margin-top: 14px;
  background: rgba(196,82,42,0.15);
  border: 1px solid rgba(196,82,42,0.2);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  font-size: 0.8rem;
  color: var(--accent-light);
}

.creator-army__what {
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-md);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.07);
}
.creator-army__what__label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 12px;
}
.creator-army__what p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ================================================================
   PROOF BAND
   ================================================================ */
.proof { background: var(--bg-warm); padding: 60px 0; }

.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(26,17,8,0.08);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.proof-item {
  background: var(--bg-warm);
  padding: 36px 28px;
  text-align: center;
}
.proof-item__stat {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 8px;
}
.proof-item__label {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
  padding: var(--section-gap) 0;
  text-align: center;
}

.contact__inner { max-width: 680px; margin: 0 auto; }

.contact__headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 20px;
  color: var(--ink);
}
.contact__headline em { font-style: italic; color: var(--accent); }

.contact__body {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.contact__divider {
  width: 60px;
  height: 1px;
  background: var(--ink-faint);
  margin: 40px auto;
}

.contact__email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 2px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.contact__email-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--espresso);
  color: rgba(255,255,255,0.4);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__logo {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}
.footer__logo span { color: var(--accent); }
.footer__copy {
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer__links {
  display: flex;
  gap: 20px;
}
.footer__links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer__links a:hover { color: rgba(255,255,255,0.8); }

/* ================================================================
   BRAND DETAIL PAGE
   ================================================================ */
.brand-hero {
  padding-top: clamp(120px, 16vw, 180px);
  padding-bottom: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.brand-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.brand-hero__gradient {
  position: absolute;
  inset: 0;
  opacity: 0.08;
}

.brand-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color var(--t-fast);
}
.brand-hero__back:hover { color: var(--ink); }
.brand-hero__back svg { transition: transform var(--t-fast); }
.brand-hero__back:hover svg { transform: translateX(-3px); }

.brand-hero__category {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.brand-hero__name {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.brand-hero__summary {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink-mid);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 32px;
}

/* Brand content sections */
.brand-videos { padding: var(--section-gap) 0; }
.brand-videos__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: clamp(32px, 5vw, 56px);
}

.brand-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.brand-video-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}
.brand-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.brand-video-card__player { position: relative; background: var(--espresso); }
.brand-video-card__player video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
}
.brand-video-card__player.landscape video { aspect-ratio: 16/9; }
.brand-video-card__info { padding: 18px 20px; }
.brand-video-card__title {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.brand-video-card__caption {
  font-size: 0.82rem;
  color: var(--ink-mid);
  line-height: 1.55;
}

.brand-statics { padding: 0 0 var(--section-gap); }
.brand-statics__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: clamp(32px, 5vw, 56px);
}
.brand-static-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.brand-static-card {
  background: var(--bg-card);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.brand-static-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.brand-static-card__info { padding: 14px 16px; }
.brand-static-card__title { font-weight: 500; font-size: 0.87rem; margin-bottom: 4px; }
.brand-static-card__caption { font-size: 0.78rem; color: var(--ink-mid); line-height: 1.5; }

/* Brand CTA */
.brand-cta {
  background: var(--bg-warm);
  padding: 80px 0;
  text-align: center;
}
.brand-cta__headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.brand-cta__body {
  color: var(--ink-mid);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.brand-cta__btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Real estate detail page */
.re-before-after {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.re-ba-card {
  background: var(--bg-card);
  border-radius: var(--r-md);
  overflow: hidden;
}
.re-ba-card__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.re-ba-card__images img, .re-ba-card__images .media-placeholder {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 0;
}
.re-ba-label {
  font-family: var(--ff-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: rgba(0,0,0,0.4);
  color: rgba(255,255,255,0.8);
  position: absolute;
  top: 8px;
  left: 8px;
}
.re-ba-card__caption { padding: 12px 16px; font-size: 0.82rem; color: var(--ink-mid); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .real-estate__inner,
  .creator-army__inner { grid-template-columns: 1fr; }
  .creator-army__right { display: contents; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__badge {
    width: 100px; height: 100px;
    position: absolute;
    top: 120px;
    right: 24px;
  }

  .work__grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .approach__grid { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .brand-video-grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .proof__grid { grid-template-columns: 1fr 1fr; }
  .brand-cta__btns { flex-direction: column; align-items: center; }
}
