/* Hey Hoku landing page — Lilia × Hoku */

.hey-hoku-page {
  background: var(--color-cream);
}

.hh-inner {
  width: min(1120px, calc(100% - 2 * var(--site-gutter)));
  margin-inline: auto;
}

.hh-eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.hh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.hh-btn:hover {
  transform: translateY(-1px);
}

.hh-btn-primary {
  background: var(--color-brand);
  color: #fff;
  border: 1.5px solid var(--color-brand);
}

.hh-btn-primary:hover {
  background: #963d2a;
  border-color: #963d2a;
}

.hh-btn-secondary {
  background: transparent;
  color: var(--color-dark);
  border: 1.5px solid rgba(26, 26, 26, 0.28);
}

.hh-btn-secondary:hover {
  border-color: var(--color-dark);
}

.hh-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 14px;
}

.hh-micro,
.hh-support,
.hh-close-tag {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.hh-highlight {
  margin: 20px 0 0;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.35;
  color: var(--color-brand);
}

.hh-step {
  display: inline-block;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-brand);
}

/* Reveal motion */
.hh-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hh-reveal-delay {
  transition-delay: 0.12s;
}

.hh-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Hero ---------- */
.hh-hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(250, 247, 242, 0.96) 0%, rgba(250, 247, 242, 0.88) 38%, rgba(250, 247, 242, 0.18) 62%, transparent 78%),
    #f3ebe0;
}

.hh-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hh-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 2 * var(--site-gutter)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
  padding: calc(var(--header-height) + 48px) 0 64px;
}

.hh-hero-copy {
  max-width: 520px;
}

.hh-hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.1rem, 4.6vw, 3.35rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--color-dark);
}

.hh-lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.hh-hero-visual {
  min-height: 420px;
}

.hh-hero-alt-mobile {
  display: none;
}

/* ---------- Connection ---------- */
.hh-connection {
  padding: 72px 0 64px;
  background: var(--color-cream);
  border-top: 1px solid rgba(26, 26, 26, 0.06);
}

.hh-connection-inner {
  max-width: 720px;
  text-align: center;
}

.hh-logo-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}

.hh-logo-lilia,
.hh-logo-hoku {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.hh-logo-x {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-muted);
}

.hh-connection h2,
.hh-section-head h2,
.hh-shop-copy h2,
.hh-personal h2,
.hh-review h2,
.hh-close h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hh-connection p,
.hh-section-head p,
.hh-feature-copy p,
.hh-feature-card p,
.hh-shop-copy p,
.hh-personal-intro,
.hh-close p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--color-muted);
}

/* ---------- How it works ---------- */
.hh-how {
  padding: 24px 0 80px;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(175, 73, 50, 0.06), transparent 55%),
    var(--color-cream);
}

.hh-section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.hh-feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  align-items: center;
  margin-bottom: 64px;
}

.hh-feature-reverse .hh-feature-copy {
  order: 2;
}

.hh-feature-reverse .hh-phone {
  order: 1;
}

.hh-feature-copy h3,
.hh-feature-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hh-phone {
  width: min(280px, 100%);
  margin-inline: auto;
  padding: 10px;
  border-radius: 28px;
  background: #1a1a1a;
  box-shadow: 0 24px 48px rgba(26, 26, 26, 0.14);
}

.hh-phone img {
  width: 100%;
  border-radius: 20px;
  display: block;
  background: #faf7f2;
}

.hh-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}

.hh-feature-card {
  display: flex;
  flex-direction: column;
}

.hh-feature-card-media {
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(26, 26, 26, 0.04);
  line-height: 0;
}

.hh-feature-card-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ---------- Shop ---------- */
.hh-shop {
  padding: 72px 0;
  background: linear-gradient(180deg, #f3ebe3 0%, var(--color-cream) 100%);
}

.hh-shop-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hh-shop-copy .hh-support {
  margin: 16px 0 28px;
}

/* ---------- Personal ---------- */
.hh-personal {
  padding: 72px 0;
  background: var(--color-cream);
}

.hh-personal-inner {
  max-width: 720px;
}

.hh-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 8px;
  padding: 0;
  list-style: none;
}

.hh-signals li {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(175, 73, 50, 0.28);
  background: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-dark);
}

/* ---------- Review ---------- */
.hh-review {
  padding: 64px 0 72px;
  background:
    linear-gradient(135deg, rgba(175, 73, 50, 0.08), transparent 55%),
    #f6efe6;
}

.hh-review-inner {
  max-width: 760px;
}

.hh-review blockquote {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.hh-review blockquote p {
  margin: 0 0 24px;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.4;
  color: var(--color-dark);
}

.hh-review footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-muted);
}

.hh-review footer strong {
  color: var(--color-dark);
  font-weight: 600;
}

/* ---------- Close ---------- */
.hh-close {
  padding: 88px 0 96px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(175, 73, 50, 0.1), transparent 60%),
    var(--color-cream);
}

.hh-close-inner {
  max-width: 640px;
}

.hh-close .hh-btn {
  margin: 28px 0 16px;
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .hh-hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
    background: var(--color-cream);
  }

  .hh-hero-bg,
  .hh-hero-visual {
    display: none;
  }

  .hh-hero-inner {
    grid-template-columns: 1fr;
    width: 100%;
    padding: calc(var(--header-height) + 20px) 20px 20px;
    gap: 0;
  }

  .hh-hero-copy {
    max-width: none;
  }

  .hh-eyebrow {
    font-size: 0.68rem;
  }

  .hh-hero-copy h1 {
    font-size: clamp(1.7rem, 7.2vw, 2.2rem);
    margin-bottom: 14px;
  }

  .hh-lead {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hh-cta-row {
    flex-direction: column;
    margin: 22px 0 12px;
    gap: 10px;
  }

  .hh-btn {
    width: 100%;
    min-height: 48px;
  }

  .hh-micro {
    font-size: 0.85rem;
  }

  .hh-hero-alt-mobile {
    display: block;
    width: calc(100% - 40px);
    max-width: 520px;
    margin: 8px auto 32px;
    border-radius: 18px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 70% 12%;
    box-shadow: 0 16px 36px rgba(26, 26, 26, 0.1);
  }

  .hh-inner {
    width: calc(100% - 40px);
  }

  .hh-logo-lilia,
  .hh-logo-hoku {
    height: 36px;
  }

  .hh-logo-lockup {
    gap: 12px;
    margin-bottom: 20px;
  }

  .hh-feature-split,
  .hh-feature-grid,
  .hh-shop-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hh-feature-reverse .hh-feature-copy,
  .hh-feature-reverse .hh-phone {
    order: unset;
  }

  .hh-feature-split {
    margin-bottom: 40px;
  }

  .hh-feature-grid {
    margin-bottom: 40px;
    gap: 36px;
  }

  .hh-phone {
    width: min(240px, 72vw);
  }

  .hh-signals {
    justify-content: center;
  }

  .hh-signals li {
    font-size: 0.82rem;
    padding: 8px 12px;
  }

  .hh-connection,
  .hh-shop,
  .hh-personal,
  .hh-review,
  .hh-close {
    padding: 48px 0;
  }

  .hh-how {
    padding: 8px 0 48px;
  }

  .hh-section-head {
    margin-bottom: 32px;
  }
}
