/* Homepage-only layout — first screen tight, phone-first */

.page-home {
  padding-bottom: 4.5rem;
}

/* —— First screen: no empty void —— */
.page-home .hero-home {
  min-height: auto;
  align-items: end;
  display: grid;
}

.page-home .hero-home .hero-copy {
  padding: 5rem 0 2rem;
  position: relative;
  z-index: 3;
}

.hero-home .hero-kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass, var(--red));
  font-weight: 700;
}

.hero-home h1 {
  max-width: 14ch;
  margin-bottom: 0.7rem;
}

.hero-home .lede {
  max-width: 28rem;
  margin-bottom: 1.25rem;
}

.hero-home .hero-brand {
  margin-bottom: 0.85rem;
  width: min(420px, 88%);
}

@media (min-width: 901px) {
  .page-home .hero-home {
    min-height: min(72vh, 640px);
  }

  .page-home .hero-home .hero-copy {
    padding: 4.5rem 0 2.5rem;
  }
}

.home-section-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.3;
}

.home-section-lede {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  max-width: 32rem;
}

.home-choose {
  padding: 1.75rem 0 2rem;
  background: transparent;
  position: relative;
  z-index: 3;
}

.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.choose-tile {
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem 1.15rem 1.1rem;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold, var(--red));
  min-height: 0;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.choose-tile:hover {
  background: var(--surface-2, #171717);
  color: var(--ink);
  transform: translateY(-2px);
}

.choose-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold, var(--red));
  font-weight: 700;
  line-height: 1;
}

.choose-tile strong {
  font-size: 1.12rem;
  color: var(--gold, #d4af37);
}

.choose-tile span {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.choose-go {
  margin-top: 0.35rem;
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-bright, var(--red-hot));
}

.home-links {
  border-block: 1px solid var(--line);
  background: #050505;
}

.home-links-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.home-links-row a {
  padding: 0.95rem 0.75rem;
  text-align: center;
  text-decoration: none;
  border-inline-start: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 3.1rem;
  display: grid;
  place-items: center;
}

.home-links-row a:first-child {
  border-inline-start: 0;
}

.home-links-row a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-bright, #e8c547);
}

.home-steps {
  padding-top: 2.75rem;
  padding-bottom: 2.75rem;
}

.home-steps-list {
  margin-top: 0.5rem;
}

.home-split {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  padding: 2.75rem 0;
}

.home-split-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.home-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.home-bullets li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  padding-inline-start: 1.1rem;
  position: relative;
}

.home-bullets li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 1.35rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold, var(--red));
  border-radius: 50%;
}

.home-contact {
  padding: 3rem 0 3.5rem;
  background:
    radial-gradient(700px 320px at 100% 0%, rgba(212, 175, 55, 0.16), transparent 65%),
    #050505;
}

.home-contact h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
}

.home-contact > .shell > p {
  margin: 0 0 1.4rem;
  color: var(--ink-soft);
  max-width: 34rem;
}

.mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .page-home {
    padding-bottom: 5.25rem;
  }

  .page-home .hero-home {
    min-height: 0 !important;
    max-height: none !important;
  }

  .page-home .hero-home .hero-copy {
    padding: 4.35rem 0 1.1rem !important;
  }

  .page-home .hero-home .hero-brand {
    width: min(100%, 16.5rem) !important;
    margin-bottom: 0.65rem !important;
  }

  .page-home .hero-home h1 {
    font-size: clamp(1.35rem, 6.5vw, 1.7rem) !important;
    max-width: none !important;
    margin-bottom: 0.55rem !important;
  }

  .page-home .hero-home .lede {
    font-size: 0.95rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.6 !important;
  }

  .page-home .hero-home .hero-kicker {
    margin-bottom: 0.4rem;
  }

  .page-home .hero-home::after {
    height: 28px;
  }

  .page-home .cta-row {
    gap: 0.55rem;
  }

  .page-home .cta-row .btn {
    min-height: 2.95rem;
  }

  .home-choose {
    padding: 0.35rem 0 1.35rem;
  }

  .home-choose .home-section-title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }

  .home-choose .home-section-lede {
    margin-bottom: 0.85rem;
    font-size: 0.92rem;
  }

  .choose-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .choose-tile {
    padding: 1rem 1rem 0.95rem;
    gap: 0.3rem;
  }

  .choose-tile strong {
    font-size: 1.05rem;
  }

  .choose-tile span {
    font-size: 0.88rem;
  }

  .home-links-row {
    grid-template-columns: 1fr 1fr;
  }

  .home-links-row a {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
    font-size: 0.9rem;
    padding: 0.95rem 0.4rem;
    min-height: 2.9rem;
  }

  .home-links-row a:nth-child(1),
  .home-links-row a:nth-child(2) {
    border-top: 0;
  }

  .home-links-row a:nth-child(2),
  .home-links-row a:nth-child(4) {
    border-inline-start: 1px solid var(--line);
  }

  .home-split-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .home-steps,
  .home-split,
  .home-contact {
    padding-block: 2.25rem;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 60;
    padding: 0.55rem 0.85rem calc(0.55rem + env(safe-area-inset-bottom));
    background: rgba(0, 0, 0, 0.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(10px);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    background: var(--red);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
  }

  .mobile-cta a:active {
    background: var(--red-hot);
  }
}
