/* ============================================
   INDEX.CSS — Coming Soon / Holding Page
   Matches home.css tokens, fonts & patterns
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Mono:wght@300;400;500&family=DM+Sans:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ── Tokens (mirrors home.css :root exactly) ─ */
:root {
  --white:      #ffffff;
  --black:      #111110;
  --accent:     #3ba095;
  --accent-red: #e63946;
  --muted:      #888885;
  --border:     #ddddd8;
  --grid-color: rgba(0, 0, 0, 0.07);

  --font-displays: 'Playfair Display', Georgia, serif;
  --font-display:  "Noto Sans JP", sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --font-monos:    'DM Mono', monospace;
  --font-mono:     "Space Mono", monospace;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}

img {
  width: 100%;
}

/* ── Grid background (mirrors home.css .grid-bg) */
.grid-bg {
  position: relative;
  background-color: var(--white);
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Top corners via .grid-bg pseudo (mirrors home.css) */
.grid-bg::before,
.grid-bg::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--black);
  border-style: solid;
  opacity: 0.25;
  pointer-events: none;
}
.grid-bg::before {
  top: 24px; left: 24px;
  border-width: 2px 0 0 2px;
}
.grid-bg::after {
  top: 24px; right: 24px;
  border-width: 2px 2px 0 0;
}

/* ── Holding hero — full viewport ─────────── */
.holding-hero {
  min-height: 92dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}

/* Bottom corners (mirrors .hero-corners) */
.holding-hero .corner--bl,
.holding-hero .corner--br {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--black);
  border-style: solid;
  opacity: 0.2;
  pointer-events: none;
}
.holding-hero .corner--bl {
  bottom: 24px; left: 24px;
  border-width: 0 0 2px 2px;
}
.holding-hero .corner--br {
  bottom: 24px; right: 24px;
  border-width: 0 2px 2px 0;
}

/* ── Centre lockup ────────────────────────── */
.holding-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ── Logo ─────────────────────────────────── */
.holding-logo {
  display: inline-block;
  margin-bottom: 2rem;
  text-decoration: none;
  animation: fadeSlideDown 0.7s var(--ease-out-expo) 0.1s both;
}

.holding-logo-img {
  height: 140px;    /* matches .nav-logo-img img */
  width: auto;
  display: block;
  transition: opacity 0.2s;
}

.holding-logo:hover .holding-logo-img {
  opacity: 0.7;
}



/* ── Eyebrow ──────────────────────────────── */
.holding-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--muted);
  animation: fadeSlideDown 0.7s var(--ease-out-expo) 0.3s both;
}

/* Accent tag — mirrors .eyebrow-tag */
.holding-eyebrow-tag {
  background: var(--accent);
  color: var(--black);
  font-weight: 600;
  padding: 3px 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* ── Headline ─────────────────────────────── */
.holding-headline {
  font-family: var(--font-display);
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--black);
    animation: slideUp 0.8s var(--ease-out-expo) 0.35s both;
    font-size: 90px;
    margin-top: -20px;
}


/* ── Subtext ──────────────────────────────── */
.holding-sub {
  font-family: var(--font-mono);      /* matches .hero-description */
  font-size: 14px;
  line-height: 1.9;
  color: var(--black);
  max-width: 40ch;
  margin-bottom: 40px;
  animation: fadeSlideDown 0.8s var(--ease-out-expo) 0.5s both;
}

/* ── FOOTER ───────────────────────────────── */
.site-footer {
  background: var(--white);
  /*border-top: 1px solid rgba(255,255,255,0.08);*/
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  bottom: 0;
  z-index: 90;
  margin-top: auto;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--black);
  letter-spacing: 0.06em;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-social {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── Animations (exact copies from home.css) ─ */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 900px) {
  .holding-hero { padding: 60px 24px; }
  .grid-bg { background-size: 32px 32px; }
  .site-footer { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 600px) {
  .holding-headline { font-size: 46px; margin-top: -10px;}

  .holding-input-wrap {
    flex-direction: column;
  }
  .holding-btn {
    border-left: none;
    border-top: 1.5px solid var(--black);
    padding: 14px;
  }
  .holding-hero .corner--bl,
  .holding-hero .corner--br {
    display: none;
  }
}