@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --dark: #0E0E0E;
  --cream: #F2EDE6;
  --amber: #C8922A;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #777;
  --faint: #e5e5e5;
  --border-dark: #1e1e1e;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 60px;
}

a { color: inherit; text-decoration: none; cursor: pointer; }
button { cursor: pointer; font-family: var(--sans); }
ul { list-style: none; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--faint);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 60px;
}

.nav-logo {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover { color: var(--amber); }
.nav-links a.active { color: var(--amber); border-bottom-color: var(--amber); }

.nav-cta {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--text);
  color: var(--white);
  padding: 9px 20px;
  border: none;
  font-family: var(--sans);
  font-weight: 500;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover { background: var(--amber); }

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 60px; right: 0;
  width: 280px;
  height: calc(100vh - 60px);
  background: var(--white);
  border-left: 0.5px solid var(--faint);
  z-index: 99;
  flex-direction: column;
  padding: 32px 28px;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.nav-mobile.open { transform: translateX(0); }

.nav-mobile a {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--faint);
  transition: color 0.2s;
}

.nav-mobile a:hover, .nav-mobile a.active { color: var(--amber); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
}

.mobile-overlay.open { display: block; }

/* ── HERO ── */
.hero {
  background: var(--dark);
  height: 0;
  padding-bottom: 42.85%; /* 9/21 = 42.85% for 21:9 */
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  z-index: 0;
}

.hero-spacer {
  height: 0;
  padding-bottom: 42.85%;
}

.post-hero {
  position: relative;
  z-index: 1;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(200,146,42,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(200,146,42,0.04) 0%, transparent 50%);
}

.hero-img-area {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 50%, #0e0e0e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-placeholder span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2a2a2a;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
}

.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(14,14,14,0.95) 0%, rgba(14,14,14,0.6) 40%, rgba(14,14,14,0.2) 70%, transparent 100%);
  padding-top: 140px;
}

.hero-social {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444;
  transition: color 0.2s;
}

.hero-social:hover { color: var(--amber); }

.hero-title { text-align: right; }

.hero-descriptor {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
}

.hero-name em {
  font-style: italic;
  color: var(--amber);
}

/* ── STATEMENT ── */
.statement {
  padding: 48px 40px 44px;
  background: var(--white);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 20px;
}

.section-label-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #bbb;
  flex-shrink: 0;
}

.statement h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  max-width: 820px;
}

/* ── ABOUT SPLIT ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 0.5px solid var(--faint);
}

.about-img {
  background: #111;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(160deg, #141414 0%, #1c1c1c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-placeholder span {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2a2a2a;
}

.about-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-right {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  border-left: 0.5px solid var(--faint);
}

.about-sub-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}

.about-copy {
  font-size: 24px;
  line-height: 1.65;
  color: #555;
  margin-bottom: 14px;
}

.about-gear {
  font-size: 13px;
  color: #aaa;
  line-height: 1.8;
  border-top: 0.5px solid var(--faint);
  padding-top: 20px;
  margin-top: auto;
}

.about-gear-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 8px;
}

/* ── TRUST STRIP ── */
.trust {
  background: var(--cream);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.trust-label {
  display: none;
}

.trust-scroll {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.trust-scroll:hover {
  animation-play-state: paused;
}

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

.trust-brands {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.trust-brand {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  font-weight: 400;
  padding: 0 20px;
  border-right: 0.5px solid #d5d0c8;
  white-space: nowrap;
}

/* ── SERVICES ACCORDION ── */
.services {
  background: var(--dark);
}

.services-header {
  padding: 56px 40px 32px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.services-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #444;
}

.services-label-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #444;
}

.services-count {
  font-family: var(--serif);
  font-size: 15px;
  color: #333;
  font-style: italic;
}

.services-list {
  padding: 0 40px;
}

.svc-item {
  border-top: 0.5px solid #1a1a1a;
}

.svc-item:last-child { border-bottom: 0.5px solid #1a1a1a; }

.svc-head {
  display: flex;
  align-items: center;
  padding: 22px 0;
  gap: 20px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.svc-head:hover { opacity: 0.7; }

.svc-num {
  font-size: 11px;
  color: #333;
  min-width: 44px;
  letter-spacing: 0.5px;
}

.svc-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  flex: 1;
  transition: color 0.2s;
}

.svc-item.open .svc-name { color: var(--amber); }

.svc-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0.5px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #444;
  flex-shrink: 0;
  transition: transform 0.3s ease, border-color 0.2s, color 0.2s;
  line-height: 1;
}

.svc-item.open .svc-toggle {
  transform: rotate(45deg);
  border-color: var(--amber);
  color: var(--amber);
}

.svc-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 0 0 64px;
}

.svc-item.open .svc-body {
  max-height: 260px;
  padding: 0 0 28px 64px;
}

.svc-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-content: flex-start;
}

.svc-tag {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 0.5px solid #252525;
  padding: 5px 10px;
  color: #444;
}

.services-cta {
  padding: 36px 40px 52px;
}

.services-cta-btn {
  display: inline-block;
  background: var(--cream);
  color: var(--text);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  border: none;
  text-decoration: none;
}

.services-cta-btn:hover {
  background: var(--amber);
  color: var(--text);
}

/* ── BRANDS ── */
.brands {
  padding: 44px 40px;
  border-top: 0.5px solid var(--faint);
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.brands-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #bbb;
  white-space: nowrap;
  padding-top: 6px;
}

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-chip {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 0.5px solid var(--faint);
  color: #888;
}

/* ── CTA DARK ── */
.cta-dark {
  background: var(--dark);
  padding: 72px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  border-top: 0.5px solid #111;
}

.cta-dark.single-col { grid-template-columns: 1fr; }

.cta-label {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 18px;
}

.cta-heading {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}

.cta-big {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 64px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 28px;
}

.cta-big em {
  font-style: italic;
  color: var(--amber);
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-amber {
  background: var(--amber);
  color: var(--text);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  font-weight: 500;
  border: none;
  transition: opacity 0.2s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-amber:hover { opacity: 0.85; }

.btn-lg {
  font-size: 12px;
  letter-spacing: 2.5px;
  padding: 18px 48px;
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 0.5px solid #2a2a2a;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ── FOOTER ── */
.foot {
  background: var(--dark);
  border-top: 0.5px solid #111;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.foot-logo {
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
}

.foot-legal {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #2a2a2a;
  margin-top: 4px;
}

.foot-links {
  display: flex;
  gap: 22px;
}

.foot-links a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #444;
  transition: color 0.2s;
}

.foot-links a:hover { color: var(--amber); }
.foot-links a.hl { color: var(--amber); }

/* ════════════════════════════════
   WORK PAGE
════════════════════════════════ */
.work-hero {
  background: var(--white);
  padding: 56px 40px 44px;
  border-bottom: 0.5px solid var(--faint);
}

.work-hero-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.work-count {
  font-size: 11px;
  color: #bbb;
  letter-spacing: 1px;
}

.work-title {
  font-family: var(--serif);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 400;
  color: var(--text);
  line-height: 1;
}

.work-sub {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #bbb;
  margin-top: 10px;
}

.work-year {
  font-size: 11px;
  color: #ccc;
  margin-top: 4px;
}

.proj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 60px;
}

.proj-card {
  cursor: pointer;
  transition: opacity 0.2s;
  overflow: hidden;
}

.proj-card:hover { opacity: 0.85; }

.proj-img {
  background: #0e0e0e;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.proj-img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #111 0%, #181818 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.proj-img-inner span {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #222;
}

.proj-video,
.proj-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: opacity 0.3s ease;
}

.proj-video { z-index: 1; }
.proj-thumb { z-index: 2; }

.proj-year {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  letter-spacing: 1px;
  color: #333;
}

.proj-body { padding: 20px 22px 24px; }

.proj-brand {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}

.proj-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.proj-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.proj-tag {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 0.5px solid var(--faint);
  padding: 3px 9px;
  color: #bbb;
}

/* ════════════════════════════════
   MEDIA KIT PAGE
════════════════════════════════ */
.mk-hero {
  background: var(--dark);
  padding: 64px 40px 56px;
}

.mk-hero-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 20px;
}

.mk-hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.1;
}

.mk-hero p {
  font-size: 15px;
  color: #555;
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.mk-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.mk-section { padding: 48px 40px; }

.mk-section-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 24px;
}

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

.platform-card {
  border: 0.5px solid var(--faint);
  padding: 24px 22px;
}

.platform-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.platform-name {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
}

.platform-handle {
  font-size: 11px;
  color: #ccc;
}

.platform-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pstat-n {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  display: block;
  font-style: italic;
  color: var(--amber);
}

.pstat-l {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #bbb;
  margin-top: 4px;
  display: block;
}

.platform-badge {
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(200,146,42,0.08);
  border-left: 2px solid var(--amber);
  font-size: 12px;
  color: var(--amber);
  line-height: 1.5;
  letter-spacing: 0.3px;
}

.divider { height: 0.5px; background: var(--faint); }

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.demo-block h3 {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 18px;
}

.demo-row { margin-bottom: 14px; }

.demo-row-top {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

.demo-row-top span:last-child { color: var(--amber); font-style: italic; }

.demo-track { height: 2px; background: #efefef; }

.demo-fill {
  height: 2px;
  background: var(--amber);
  transition: width 0.6s ease;
}

.mk-dark {
  background: var(--dark);
  padding: 52px 40px;
}

.mk-dark-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 24px;
}

.aud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.aud-card {
  border: 0.5px solid #1a1a1a;
  padding: 22px 20px;
}

.aud-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 10px;
}

.aud-val {
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 5px;
}

.aud-sub {
  font-size: 10px;
  color: #333;
}

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

.psych-card {
  border: 0.5px solid #1a1a1a;
  padding: 18px 16px;
}

.psych-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
  display: block;
  margin-bottom: 8px;
}

.psych-val {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 0.5px solid var(--faint);
  border-left: 0.5px solid var(--faint);
}

.partner-card {
  border-right: 0.5px solid var(--faint);
  border-bottom: 0.5px solid var(--faint);
  padding: 28px 26px;
}

.partner-card h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}

.partner-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.7;
}

.dl-bar {
  background: var(--cream);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dl-bar h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
}

.dl-bar p {
  font-size: 14px;
  color: #888;
}

/* ── ANIMATIONS ── */

/* Scroll reveal base state */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for child elements */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.4s; }

/* Hero load animation */
.hero-load {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-load-delay-1 { animation-delay: 0.15s; }
.hero-load-delay-2 { animation-delay: 0.3s; }
.hero-load-delay-3 { animation-delay: 0.45s; }

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero image scale-in on load */
.hero-img-load {
  opacity: 0;
  transform: scale(1.05);
  animation: heroImgIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

@keyframes heroImgIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Fade-in variants */
.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade.visible {
  opacity: 1;
}

/* Scale-up reveal for images/cards */
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Nav load */
.nav {
  opacity: 0;
  animation: fadeDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ════════════════════════════════
   CONTACT PAGE
════════════════════════════════ */
.contact-hero {
  background: var(--dark);
  padding: 100px 40px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 55vh;
}

.contact-hero-center {
  text-align: center;
  max-width: 720px;
}

.contact-hero-center .cta-label {
  color: #555;
  margin-bottom: 24px;
}

.contact-big-title {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 24px;
}

.contact-big-title em {
  font-style: italic;
  color: var(--amber);
}

.contact-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 8px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero-center .cta-btns {
  justify-content: center;
  margin-top: 32px;
}

.contact-options {
  background: var(--white);
  padding: 64px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contact-card {
  padding: 36px 32px;
  border: 0.5px solid var(--faint);
  transition: border-color 0.3s;
}

.contact-card:hover {
  border-color: var(--amber);
}

.contact-card-icon {
  font-size: 24px;
  color: var(--amber);
  margin-bottom: 20px;
}

.contact-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 15px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-link {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.7;
}

/* ════════════════════════════════
   CONSULTATION PAGE
════════════════════════════════ */
.consult-hero {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

.consult-info {
  padding: 48px 48px 48px 40px;
  display: flex;
  flex-direction: column;
}

.consult-back {
  margin-bottom: 28px;
}

.consult-back a {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aaa;
  transition: color 0.2s;
}

.consult-back a:hover {
  color: var(--amber);
}

.consult-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 24px;
}

.consult-badge {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--faint);
}

.consult-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 16px;
}

.consult-details {
  margin-top: 8px;
  margin-bottom: 24px;
}

.consult-details h4 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}

.consult-details ul {
  list-style: none;
  padding: 0;
}

.consult-details li {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.consult-details li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--amber);
}

.consult-meta {
  border-top: 0.5px solid var(--faint);
  padding-top: 20px;
  margin-top: auto;
}

.consult-meta-item {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.consult-meta-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  min-width: 100px;
  padding-top: 3px;
  flex-shrink: 0;
}

.consult-img {
  position: relative;
  overflow: hidden;
}

.consult-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consult-booking {
  background: var(--white);
  padding: 48px 40px 64px;
  border-top: 0.5px solid var(--faint);
}

.consult-booking-header {
  margin-bottom: 32px;
}

.consult-booking-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--text);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-fade, .reveal-scale, .reveal-left, .reveal-right,
  .hero-load, .hero-img-load, .nav {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links, .nav > .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  .hero { padding-bottom: 75%; } /* taller on mobile */
  .hero-spacer { padding-bottom: 75%; }
  .hero-img { object-position: center 30%; }
  .hero-bottom { padding: 40px 16px 40px !important; flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-social { display: none; }
  .hero-title { text-align: left; }
  .hero-name { font-size: 16px; line-height: 1.2; }
  .hero-descriptor { font-size: 8px; letter-spacing: 1.5px; margin-bottom: 4px; }
  .hero-social { font-size: 9px; }

  .statement { padding: 48px 20px 40px; }

  .about-split { grid-template-columns: 1fr; }
  .about-img-placeholder { min-height: 260px; }
  .about-right { padding: 32px 20px; border-left: none; border-top: 0.5px solid var(--faint); }

  .trust { padding: 12px 0; }

  .services-header { padding: 40px 20px 24px; }
  .services-list { padding: 0 20px; }
  .svc-name { font-size: 18px; }
  .svc-body { grid-template-columns: 1fr; padding: 0 0 0 44px; }
  .svc-item.open .svc-body { padding: 0 0 20px 44px; }
  .services-cta { padding: 28px 20px 40px; }

  .brands { padding: 32px 20px; flex-direction: column; gap: 16px; }

  .cta-dark { grid-template-columns: 1fr; padding: 48px 20px; gap: 32px; }

  .foot { padding: 20px; flex-direction: column; gap: 16px; align-items: flex-start; }
  .foot-links { flex-wrap: wrap; gap: 16px; }

  .work-hero { padding: 40px 20px 32px; }
  .proj-grid { grid-template-columns: 1fr; padding: 0 20px 40px; }

  .mk-hero { padding: 48px 20px 40px; }
  .mk-section { padding: 36px 20px; }
  .platform-grid { grid-template-columns: 1fr; }
  .demo-grid { grid-template-columns: 1fr; gap: 28px; }
  .aud-grid { grid-template-columns: 1fr; }
  .psych-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .mk-dark { padding: 40px 20px; }
  .dl-bar { padding: 28px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }

  .contact-hero { padding: 60px 20px; min-height: 45vh; }
  .contact-options { grid-template-columns: 1fr; padding: 40px 20px; }

  .consult-hero { grid-template-columns: 1fr; }
  .consult-info { padding: 36px 20px; }
  .consult-img { min-height: 300px; }
  .consult-booking { padding: 36px 20px 48px; }
  .consult-meta-item { flex-direction: column; gap: 4px; }
}

/* ── PRINT STYLES (Media Kit PDF) ── */
@media print {
  *, *::before, *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body { padding-top: 0; font-size: 11pt; }

  .nav, .nav-mobile, .mobile-overlay,
  .mk-btns, .dl-bar, .foot,
  .btn-amber, .btn-ghost,
  .cta-dark {
    display: none !important;
  }

  .mk-hero {
    padding: 40px;
    min-height: auto;
  }

  .mk-hero h1 { font-size: 36pt; }

  .mk-section { padding: 24px 40px; }

  .platform-grid { grid-template-columns: repeat(3, 1fr); }
  .demo-grid { grid-template-columns: repeat(2, 1fr); }
  .aud-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }

  .platform-card, .demo-block, .partner-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .mk-section { break-inside: avoid; }

  .reveal, .reveal-fade, .reveal-scale, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-load, .hero-img-load {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
