/* AMERASAN — coming-soon page
   Split-panel layout: navy brand panel + warm off-white content panel.
   Brand navy + the logo's red, used sparingly. */

@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/Archivo.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../assets/fonts/InterTight.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0f2148;
  --navy-deep: #0b1a3a;
  --red: #e0241f;
  --bg: #f9f8f4;
  --ink: #17223f;
  --soft: #626a80;
  --line: #e3e0d8;
  --on-navy: #f4f6fb;
  --on-navy-soft: #9aa7c4;
  --display: "Archivo", system-ui, sans-serif;
  --body: "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

html, body { height: 100%; }

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

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ---------------------------------------------------------------- layout */
.split {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
}
@media (min-width: 880px) {
  .split { grid-template-columns: minmax(380px, 44%) 1fr; }
}

/* ----------------------------------------------------------- brand panel */
.brand {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--on-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 8vh, 96px) 32px;
  border-top: 4px solid var(--red);
}
@media (min-width: 880px) {
  .brand { border-top: none; border-left: 4px solid var(--red); }
}

/* oversized ghosted shield, bleeding off the corner */
.brand-ghost {
  position: absolute;
  width: 620px;
  max-width: none;
  right: -180px;
  bottom: -200px;
  opacity: 0.08;
  filter: brightness(6) grayscale(1);
  pointer-events: none;
  user-select: none;
}

.brand-inner { position: relative; text-align: center; }

.mark {
  display: block;
  margin: 0 auto;
  width: clamp(76px, 9vw, 96px);
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.35));
}

.word {
  margin: 26px 0 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
}

.fields {
  margin: 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-navy-soft);
}
.fields .sep {
  width: 4px; height: 4px;
  background: var(--red);
  transform: rotate(45deg);   /* small diamond, echoing the logo */
}

/* --------------------------------------------------------- content panel */
.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 10vh, 120px) clamp(28px, 7vw, 96px) 28px;
}

.content-inner { max-width: 560px; margin-block: auto; padding-bottom: 6vh; }

.kicker {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--soft);
}
.kicker .tick { width: 26px; height: 2px; background: var(--red); }

h1 {
  margin: 24px 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-wrap: balance;
}

.mail {
  display: inline-block;
  margin-top: 36px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
  transition: color 0.15s ease;
}
.mail:hover { color: var(--red); }

/* ------------------------------------------------------------------ foot */
.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--soft);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
