/* Shared portfolio project landing styles — Red Maya Media */
:root {
  --maya: #e73946;
  --maya-dark: #c42f3b;
  --maya-glow: rgba(231, 57, 70, 0.28);
  --ink: #12141c;
  --ink-soft: #2a2f3d;
  --muted: #6a6470;
  --paper: #f7f4ef;
  --paper-2: #efe9e0;
  --white: #ffffff;
  --line: rgba(18, 20, 28, 0.12);
  --lime: #a3e635;
  --gold: #fbbf24;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: Manrope, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--maya); }
:focus-visible { outline: 2px solid var(--maya); outline-offset: 3px; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--maya);
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  font: 700 14.5px/1 var(--font-body);
  letter-spacing: -0.01em;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--maya);
  color: #fff;
  box-shadow: 0 14px 30px var(--maya-glow);
}
.btn-primary:hover { background: var(--maya-dark); color: #fff; }
.btn-ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(255,255,255,0.55); color: var(--ink); }
.btn-ghost.on-dark {
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.btn-ghost.on-dark:hover { background: rgba(255,255,255,0.08); color: #fff; }

.nav-wrap {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247, 244, 239, 0.9);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.brand img { width: 28px; height: 28px; }
.brand:hover { color: inherit; }
.brand:hover .brand-name { color: var(--maya); }
.nav-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav-links a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--maya);
  color: #fff !important;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 8px 22px var(--maya-glow);
}
.nav-cta:hover { background: var(--maya-dark); }

.hero {
  padding: clamp(56px, 10vh, 96px) 0 clamp(48px, 8vh, 80px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.hero-copy { max-width: 34rem; }
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 12px;
  border-radius: 999px;
  font: 700 10px/1 var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.status-pill.live {
  background: rgba(12, 18, 12, 0.86);
  color: var(--lime);
  border: 1px solid rgba(163, 230, 53, 0.4);
}
.status-pill.live::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
}
.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.hero h1 em {
  font-style: normal;
  color: var(--maya);
}
.hero-lead {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
}
.hero-audience {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.hero-audience strong { color: var(--ink); font-weight: 700; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-shot {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #11151d;
  box-shadow: 0 28px 60px rgba(18, 20, 28, 0.14);
}
.hero-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.section { padding: clamp(64px, 10vh, 100px) 0; }
.section.alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.dark {
  background: #12141c;
  color: #f5f7fa;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.section-head { max-width: 40rem; margin-bottom: 40px; }
.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}
.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.section.dark .section-head p { color: rgba(245,247,250,0.62); }
.section.dark .eyebrow { color: #ff6b7a; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.audience-item {
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--white);
}
.audience-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.audience-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.problem-box {
  max-width: 46rem;
  padding: 28px 28px 30px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}
.problem-box h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
}
.problem-box p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  margin-top: 56px;
}
.feature:first-of-type { margin-top: 0; }
.feature.reverse { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
.feature.reverse .feature-copy { order: 2; }
.feature.reverse .feature-media { order: 1; }
.feature-kicker {
  margin: 0 0 10px;
  color: var(--maya);
  font: 700 11px/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.feature h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.feature p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 36ch;
}
.feature-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #11151d;
  box-shadow: 0 18px 40px rgba(18, 20, 28, 0.1);
}
.feature-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}
.step {
  padding: 24px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 16px;
  color: #ff6b7a;
  font: 700 12px/1 var(--font-body);
  letter-spacing: 0.12em;
}
.step strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.step p {
  margin: 0;
  color: rgba(245,247,250,0.62);
  font-size: 0.95rem;
  line-height: 1.55;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.metric {
  padding: 26px 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.metric .v {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1;
}
.metric .v em { font-style: normal; color: var(--maya); }
.metric .l {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.studio {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: end;
}
.studio p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 42ch;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 60ch;
}

.cta-band {
  padding: clamp(64px, 10vh, 96px) 0;
  text-align: center;
  background: #12141c;
  color: #fff;
}
.cta-band h2 {
  margin: 0 auto;
  max-width: 16ch;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.cta-band p {
  margin: 16px auto 0;
  max-width: 42ch;
  color: rgba(245,247,250,0.65);
  font-size: 1.05rem;
  line-height: 1.55;
}
.cta-band .hero-actions { justify-content: center; }

.foot {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
  color: var(--muted);
  font-size: 0.88rem;
}
.foot a { font-weight: 600; color: var(--ink-soft); }
.foot a:hover { color: var(--maya); }

@media (max-width: 900px) {
  .hero-grid,
  .feature,
  .feature.reverse,
  .studio {
    grid-template-columns: 1fr;
  }
  .feature.reverse .feature-copy,
  .feature.reverse .feature-media { order: initial; }
  .audience-grid,
  .steps,
  .metrics {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .nav-links .hide-sm { display: none; }
  .container { width: min(100% - 28px, 1120px); }
}
