/* ===== Design tokens ===== */
:root {
  --bg: #0a0a0b;
  --bg-alt: #121214;
  --bg-raise: #18181b;
  --line: #2a2a2e;
  --text: #f4f3ef;
  --text-dim: #b8b6b0;
  --text-mute: #7d7b76;
  --accent: #b8935a;
  --accent-dim: #8a6f47;

  --font-head: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --gap: clamp(1.5rem, 4vw, 3rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  text-transform: uppercase;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section {
  padding: clamp(4rem, 10vw, 7.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.section--alt { background: var(--bg-alt); }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
}

.section-head p {
  margin-top: 1.1rem;
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 620px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--text);
  color: var(--bg);
}
.btn--primary:hover { background: var(--accent); color: var(--bg); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--text); }

.btn--ghost {
  background: transparent;
  color: var(--text-dim);
  padding: 0.5rem 0;
}
.btn--ghost:hover { color: var(--text); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(10px);
  border-color: var(--line);
  padding: 0.55rem 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { flex-shrink: 0; }
.brand img { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a { color: var(--text-dim); transition: color 0.2s ease; }
.nav-links a:hover { color: var(--text); }

.nav-cta { display: flex; align-items: center; gap: 1.25rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
}

.hero-copy .eyebrow { color: var(--accent); }

.hero-copy h1 {
  font-size: clamp(2.2rem, 5.2vw, 3.6rem);
  margin-bottom: 1.5rem;
}

.hero-copy p {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2.25rem;
}

.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}

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

.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0) 55%, rgba(10,10,11,0.55) 100%);
}

/* ===== Problem section ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(2.5rem, 6vw, 5rem);
  row-gap: clamp(2.5rem, 5vw, 3.5rem);
}

.problem-item {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(244, 243, 239, 0.12);
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.35;
}

.problem-item span {
  display: block;
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  margin-bottom: 0.85rem;
}

/* ===== Solution section ===== */
.solution-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.solution-text p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
}

.solution-text p strong { color: var(--text); font-weight: 700; }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0;
}

.pill {
  border: 1px solid var(--line);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ===== About section ===== */
.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.about-media { position: relative; }

.about-media img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.about-media .about-media-tag {
  position: absolute;
  bottom: -1px; left: -1px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
}

.about-copy p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 1.3rem;
}

.stat-table {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
}

.stat-cell {
  display: block;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--text-dim);
}

.stat-cell.stat-last { border-bottom: none; }

.stat-cell.stat-head {
  padding: 0.9rem 0;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.stat-cell b {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--text);
  font-size: 1rem;
  margin-right: 0.3rem;
}

/* Desktop table grid placement */
.p-r1-c1 { grid-row: 1; grid-column: 1; }
.p-r1-c2 { grid-row: 1; grid-column: 2; }
.p-r1-c3 { grid-row: 1; grid-column: 3; }
.p-r2-c1 { grid-row: 2; grid-column: 1; }
.p-r2-c2 { grid-row: 2; grid-column: 2; }
.p-r2-c3 { grid-row: 2; grid-column: 3; }
.p-r3-c1 { grid-row: 3; grid-column: 1; }
.p-r3-c2 { grid-row: 3; grid-column: 2; }
.p-r3-c3 { grid-row: 3; grid-column: 3; }
.p-r4-c1 { grid-row: 4; grid-column: 1; }
.p-r4-c2 { grid-row: 4; grid-column: 2; }
.p-r4-c3 { grid-row: 4; grid-column: 3; }

.about-strip {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.about-strip img {
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 3px;
  filter: grayscale(0.15);
}

/* ===== Testimonials ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-card:first-child,
.testimonial-card:nth-child(2) {
  grid-column: span 1;
}

.t-person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.t-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-alt);
}

.t-name { font-family: var(--font-head); font-weight: 800; font-size: 0.95rem; text-transform: uppercase; }
.t-role { font-size: 0.82rem; color: var(--text-mute); margin-top: 0.15rem; }

.t-pull {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.35;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
}

.t-pull::before { content: "\201C"; color: var(--accent); }
.t-pull::after { content: "\201D"; color: var(--accent); }

.t-more {
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.65;
  padding-top: 0.25rem;
  border-top: 1px solid var(--line);
}

.t-more[hidden] { display: none; }

.t-toggle {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  cursor: pointer;
  transition: color 0.2s ease;
}

.t-toggle:hover { color: var(--accent); }

/* ===== Instagram / social proof ===== */
.section--band {
  padding: clamp(2rem, 4vw, 2.75rem) 0;
}

.social-inline {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.social-inline .eyebrow { margin-bottom: 0; }

.social-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  transition: color 0.2s ease;
}

.social-handle svg { width: 22px; height: 22px; flex-shrink: 0; }
.social-handle:hover { color: var(--text); }

/* ===== How it works ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-num {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 800;
  color: rgba(184, 147, 90, 0.16);
  -webkit-text-stroke: 1.25px rgba(184, 147, 90, 0.6);
  margin-bottom: 1.25rem;
  line-height: 1;
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.step p { color: var(--text-dim); font-size: 0.95rem; }

/* ===== Contact ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.contact-info h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.contact-info p {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  max-width: 460px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 2rem;
  max-width: 320px;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.field { display: grid; gap: 0.5rem; }

.field label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.field input,
.field textarea {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  border-radius: 2px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-mute);
  margin-top: 0.25rem;
}

/* ===== Footer ===== */
.site-footer {
  padding: 3rem 0;
}

.site-footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand img { height: 26px; }

.footer-links {
  display: flex;
  gap: 1.75rem;
  font-size: 0.85rem;
  color: var(--text-mute);
}
.footer-links a:hover { color: var(--text); }

.footer-meta {
  font-size: 0.8rem;
  color: var(--text-mute);
}

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .brand img { height: 34px; }

  .hero .wrap { grid-template-columns: 1fr; }
  .hero-media { order: -1; aspect-ratio: 16/11; }
  .hero { padding-top: 7rem; padding-bottom: 3rem; min-height: auto; }

  .problem-grid { grid-template-columns: 1fr; }
  .solution-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-table { grid-template-columns: 1fr; }
  .stat-cell { grid-row: auto; grid-column: auto; border-bottom: 1px solid var(--line); }
  .stat-cell.stat-head { border-bottom: none; padding-bottom: 0.4rem; }
  .stat-cell.stat-last { border-bottom: 1px solid var(--line); }
  .stat-cell:empty { display: none; padding: 0; border: none; }

  .o-1 { order: 1; } .o-2 { order: 2; } .o-3 { order: 3; } .o-4 { order: 4; }
  .o-5 { order: 5; } .o-6 { order: 6; } .o-7 { order: 7; } .o-8 { order: 8; }
  .o-9 { order: 9; border-bottom: none; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr 1fr; }

  .contact-layout { grid-template-columns: 1fr; }

  .site-footer .wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .about-strip { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
}

/* ===== Mobile nav drawer ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 101;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

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

.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-nav-close {
  position: absolute;
  top: 1.25rem; right: clamp(1.25rem, 4vw, 2.5rem);
  background: none; border: none; color: var(--text);
  padding: 0.4rem; cursor: pointer;
}
.mobile-nav-close svg { width: 26px; height: 26px; }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
