/* =============================================================================
   PAGE — Intro / Gateway  ("/")
   A calm, editorial threshold into the site. Not a loading screen.
   ============================================================================= */

.gateway {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    radial-gradient(140% 90% at 85% 0%, #fbf8f1 0%, var(--ivory) 45%, var(--ivory-deep) 100%);
  overflow: hidden;
}

.gateway__header {
  position: relative;
  z-index: 2;
}

.gateway__header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.gateway__main {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: var(--space-2xl);
  padding-block: var(--space-2xl);
}

@media (min-width: 940px) {
  .gateway__main {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.gateway__welcome {
  font-size: var(--step-eyebrow);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.gateway__title {
  font-size: clamp(3rem, 1.6rem + 7vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.gateway__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 1rem + 1.4vw, 1.75rem);
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.gateway__lede {
  max-width: 40ch;
  color: var(--fg-muted);
  font-size: var(--step-body-lg);
  line-height: 1.5;
  margin-bottom: var(--space-xl);
}

.gateway__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
}

.gateway__visual {
  position: relative;
  display: grid;
  gap: var(--space-lg);
  justify-items: center;
}

.gateway__monogram {
  width: min(360px, 80%);
}

/* Real-image gateway visual */
.gateway__figure {
  position: relative;
  width: min(440px, 92%);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.gateway__figure .ig-figure { position: absolute; inset: 0; height: 100%; border-radius: inherit; }
.gateway__figure .ig-figure img { width: 100%; height: 100%; object-fit: cover; }

.gateway__figure-tag {
  position: absolute;
  left: 0;
  bottom: 1rem;
  z-index: 2;
  padding: 0.4rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--line-gold);
  border-left: 0;
  font-size: var(--step-eyebrow);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--gold);
}

.gateway__signature {
  margin-top: var(--space-md);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--fg-muted);
}
.gateway__signature span { color: var(--gold); }

/* Shared Instagram figure base (gateway loads its own sheets) */
.ig-figure { position: relative; display: block; overflow: hidden; background: var(--ivory-deep); }
.ig-figure img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
a.ig-figure:hover img { transform: scale(1.04); }
.ig-figure__view, .ig-figure__album, .ig-figure__caption { display: none; }

/* Crafted-across-cultures band under the fold */
.gateway__cultures {
  position: relative;
  z-index: 2;
  padding-block: var(--space-2xl) var(--space-3xl);
  display: grid;
  gap: var(--space-lg);
  max-width: 46rem;
}

.gateway__cultures h2 {
  font-size: var(--step-h2);
}

.gateway__cultures p {
  color: var(--fg-muted);
  max-width: 52ch;
}

.gateway__cultures .accent {
  color: var(--fg);
  font-style: italic;
  font-family: var(--font-display);
}

.gateway__footer {
  position: relative;
  z-index: 2;
  padding-block: var(--space-lg);
  border-top: 1px solid var(--line-gold);
  text-align: center;
  font-size: var(--step-eyebrow);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--fg-soft);
}
