/* Alpha Ravo – Launch version: hero + contact only */

:root {
  --bg: #0a0a0a;
  --bg-soft: #111;
  --text: #E8E3D7;
  --text-muted: #a39e92;
  --accent: #c9b896;
  --border: rgba(232, 227, 215, 0.12);
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --display-font: 'Antonio', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
  position: sticky;
  top: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.logo {
  height: 128px;
  width: auto;
}

.logo-wordmark {
  font-family: var(--display-font);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-cta {
  padding: 0.5rem 1rem;
  border: 1px solid var(--text-muted);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-cta:hover,
.nav-ig:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.nav-ig {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--text-muted);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-ig-icon {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: var(--text-muted);
  stroke-width: 1.4;
}

.nav-ig:hover .nav-ig-icon {
  stroke: var(--accent);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero */
.hero {
  text-align: center;
  padding: 5rem 1.5rem 6rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto 3rem;
}

.hero-gate {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: radial-gradient(circle at top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.95));
  z-index: 2;
}

.hero-gate-logo {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
}

.hero-gate-btn {
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-gate-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  max-width: min(96vw, 50rem);
  padding: 0 1rem;
}

/* Two-line hero headline: line 2 keeps “RE-CODED MEN” unbroken */
.hero-headline-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.2em;
}

.hero-headline-stack .hero-headline-line1,
.hero-headline-stack .hero-headline-line2 {
  display: block;
  line-height: 1.12;
}

.hero-headline-stack .hero-headline-line2 {
  white-space: nowrap;
}

.hero-gate-headline {
  margin: 0;
  font-size: clamp(1.35rem, 5.5vw, 2.65rem);
  letter-spacing: 0.1em;
  line-height: 1.18;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.hero-gate-subheadline {
  margin: 0;
  font-size: clamp(0.95rem, 3.4vw, 1.65rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-logo-wrap {
  display: block;
  perspective: 1200px;
  margin-bottom: 0.5rem;
}

.hero-logo-img {
  display: block;
  max-width: min(96vw, 900px);
  height: auto;
  margin: 0 auto;
  opacity: 0;
  transform: rotateY(-90deg);
  transform-origin: center center;
  transition: none;
}

.hero-logo-wrap.is-rolling-in .hero-logo-img {
  opacity: 1;
  transform: rotateY(0);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.5s ease-out;
}

.hero-tagline-reveal {
  opacity: 0;
  transition: opacity 0.5s ease-out 0.4s;
}

.hero-wordmark.is-revealed .hero-tagline-reveal {
  opacity: 1;
}

.hero-wordmark-primary {
  font-family: var(--display-font);
  font-size: clamp(3.4rem, 9vw, 5.4rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.9);
  position: relative;
}

.hero-wordmark-tagline {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-subtagline {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: none;
  margin-top: 0.4rem;
}

.hero-subtagline {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: lowercase;
  margin-top: 0.35rem;
}

.hero-headlines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  max-width: min(96vw, 50rem);
  margin-top: 0.8rem;
}

.hero-strap {
  font-size: clamp(1.35rem, 5.5vw, 2.65rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  line-height: 1.12;
  text-transform: uppercase;
  margin-top: 0;
}

.hero-strap-sub {
  font-size: clamp(0.95rem, 3.4vw, 1.65rem);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-headline {
  font-size: clamp(2.4rem, 5.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 18ch;
  margin: 0.5rem auto 1.75rem;
  letter-spacing: -0.02em;
}

.hero-taglines {
  max-width: 560px;
  margin: 1.25rem auto 0;
}

.hero-tagline {
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 0.5rem;
}

.hero-tagline-last {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  font-weight: 600;
  color: var(--accent);
  margin: 1.75rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
}

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

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

/* Contact */
.contact.section {
  max-width: 480px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.contact-inline {
  max-width: 520px;
  margin: 3rem auto 4rem;
  text-align: left;
  padding: 2.25rem 2rem 2.5rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top left, rgba(201, 184, 150, 0.12), transparent 55%),
    rgba(8, 8, 8, 0.9);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.85);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--text);
}

.section-text {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-align: left;
}

.contact-form label {
  font-size: 0.9rem;
}

.contact-form input {
  padding: 0.9rem 1.1rem;
  font-family: var(--font);
  font-size: 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.contact-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: #131313;
  box-shadow: 0 0 0 1px rgba(201, 184, 150, 0.4), 0 18px 45px rgba(0, 0, 0, 0.85);
}

.contact-form button {
  width: fit-content;
  align-self: flex-start;
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .contact-form {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .contact-form input {
    flex: 1;
    margin: 0;
  }

  .contact-form button {
    margin-top: 0;
  }
}

/* Founder photo */
.founder-photo.section {
  padding: 0 1.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.founder-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(0, 0, 0, 0.8);
  transform: perspective(1200px) rotateY(10deg) rotateX(4deg);
  transform-origin: center center;
  transition:
    transform 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.founder-img:hover {
  transform: perspective(1200px) rotateY(3deg) rotateX(1deg) translateY(-6px);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(201, 184, 150, 0.55);
}

.founder-bio {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
  padding: 2.25rem 0 0;
  border-top: 1px solid var(--border);
}

@media (min-width: 880px) {
  .founder-photo.section {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }

  .founder-img {
    max-width: 380px;
    margin: 0;
  }

  .founder-bio {
    margin: 0 0 0 3rem;
    padding-top: 0.5rem;
    border-top: none;
  }
}

.founder-bio-heading {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

.founder-name {
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--text);
}

.founder-title {
  font-size: 0.95rem;
  color: var(--accent);
  margin: 0 0 0.2rem;
}

.founder-cred {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1.1rem;
}

.founder-text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0 0 1.1rem;
  text-align: left;
}

.founder-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0.5rem 0 0;
}

/* Book coming soon */
.biohook.section {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.biohook-layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.biohook-photo-wrap {
  display: flex;
  justify-content: center;
}

.biohook-photo {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.92),
    0 0 0 1px rgba(0, 0, 0, 0.75);
}

.biohook-copy {
  width: 100%;
}

/* Tight centered column: gold lines sized to text so centering isn’t skewed by letter-spacing */
.biohook.section .biohook-warroom,
.biohook.section .biohook-warroom-sub,
.biohook.section .biohook-access,
.biohook.section .biohook-label {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-sizing: border-box;
}

.biohook .section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.2rem);
}

.biohook-warroom,
.biohook-access {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.biohook-warroom {
  margin: 0.5rem 0 0.2rem;
}

.biohook-warroom-sub {
  margin: 0 0 0.85rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.biohook-masculine {
  margin: 0 0 0.85rem;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-muted);
}

.biohook-access {
  margin: 2rem 0 0.35rem;
  /* Letter-spacing adds space after each glyph; nudge so “ACCESS” reads visually centered */
  transform: translateX(-0.07em);
}

.biohook .section-text {
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  margin-left: auto;
  margin-right: auto;
  max-width: 36ch;
  text-align: center;
  text-wrap: balance;
}

.biohook-masculine + .section-text,
.biohook .section-text + .section-text {
  margin-top: 0;
  margin-bottom: 0.85rem;
}

.biohook-label {
  margin: 0.5rem 0 0.15rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.biohook-label-note {
  margin-left: 0.5rem;
}

.biohook-detail {
  margin: 0 auto;
  max-width: 42ch;
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  text-wrap: balance;
}

.biohook-dm-link {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.biohook-dm-link:hover {
  color: var(--text);
}

@media (min-width: 900px) {
  .biohook.section {
    max-width: 1020px;
  }

  .biohook-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
    gap: 2.25rem;
    align-items: start;
  }

  .biohook-photo {
    max-width: 360px;
  }

  .biohook-photo-wrap {
    justify-content: flex-start;
  }

  .biohook-copy {
    text-align: left;
  }

  .biohook.section .biohook-warroom,
  .biohook.section .biohook-warroom-sub,
  .biohook.section .biohook-masculine,
  .biohook.section .biohook-access,
  .biohook.section .biohook-label {
    width: auto;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .biohook-access {
    transform: none;
  }

  .biohook .section-text {
    margin-left: 0;
    margin-right: 0;
    max-width: 32ch;
    text-align: left;
    text-wrap: pretty;
  }

  .biohook-detail {
    margin-left: 0;
    margin-right: 0;
    max-width: 36ch;
    text-align: left;
  }
}

.book-coming.section {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 1.5rem 3.25rem;
  text-align: left;
}

.book-coming .section-title {
  color: var(--accent);
  text-align: center;
}

.book-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 1.75rem;
  align-items: center;
  margin-top: 1.75rem;
}

.book-graphic {
  display: flex;
  justify-content: center;
}

.book-cover {
  position: relative;
  width: 180px;
  height: 260px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, #0f0f0f, #181818),
    radial-gradient(circle at top left, rgba(201, 184, 150, 0.24), transparent 55%);
  border: 1px solid rgba(232, 227, 215, 0.18);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(0, 0, 0, 0.8);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.book-cover::before {
  content: "";
  position: absolute;
  inset: 0.35rem 0.25rem 0.35rem auto;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(201, 184, 150, 0.4), rgba(201, 184, 150, 0.05));
  opacity: 0.9;
}

.book-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 227, 215, 0.4);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.book-title {
  font-family: var(--display-font);
  font-size: 1.15rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.book-brand {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  align-self: flex-start;
  margin-bottom: 0.25rem;
}

.book-subtitle {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 12rem;
}

@media (max-width: 720px) {
  .book-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .book-graphic {
    justify-content: flex-start;
  }
}

/* Testimonials */
.testimonials.section {
  padding: 3.5rem 1.5rem 2.5rem;
  max-width: 960px;
  margin: 0 auto 1rem;
}

.testimonials-heading {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.testimonials-heading::before,
.testimonials-heading::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, rgba(232, 227, 215, 0.25));
}

.testimonials-heading::after {
  background: linear-gradient(to left, transparent, rgba(232, 227, 215, 0.25));
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  margin: 0;
  padding: 1.5rem 1.5rem 1.25rem;
  background:
    radial-gradient(circle at top left, rgba(201, 184, 150, 0.08), transparent 55%),
    var(--bg-soft);
  border: 1px solid rgba(232, 227, 215, 0.16);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0;
  font-style: normal;
  margin-top: auto;
  text-align: right;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-logo {
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-wordmark {
  font-family: var(--display-font);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.9;
}

.footer-tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  padding-bottom: 1.5rem;
}

.footer-social {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.footer-social a {
  color: var(--accent);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.footer-social a:hover {
  color: var(--text);
}

.footer-ig-icon {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.8;
  margin: 0;
}
