/* ============================================================
   ICON — Coming Soon
   Custom properties
   ============================================================ */
:root {
  /* Colour */
  --color-dark: #1A1A1A;
  --color-gold: #FFB800;
  --color-white: #FFFFFF;
  --color-grey: #9C9A96;   /* muted / tertiary */

  /* Type */
  --font-head: 'Archivo', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --step-headline: clamp(2.25rem, 9vw, 5.5rem);
  --step-descriptor: clamp(0.6875rem, 1.6vw, 0.8125rem);
  --step-contact: clamp(0.75rem, 1.4vw, 0.875rem);

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;

  /* Layout */
  --edge: clamp(1.25rem, 5vw, 3rem);
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}
body {
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
h1, p { margin: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover, a:focus-visible { color: var(--color-gold); }
a:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 3px; }

/* ============================================================
   Motion
   ============================================================ */
@keyframes rise-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
}

/* ============================================================
   Screen — single no-scroll viewport
   ============================================================ */
.screen {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--edge);
  overflow: hidden;
}

/* faint gold chevron accent, anchored top-right */
.screen::before {
  content: "";
  position: absolute;
  top: -12%;
  right: -10%;
  width: 46vmax;
  height: 46vmax;
  background: var(--color-gold);
  opacity: 0.045;
  clip-path: polygon(0% 0%, 55% 0%, 100% 50%, 55% 100%, 0% 100%, 45% 50%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   Logo
   ============================================================ */
.screen__logo {
  z-index: 1;
  align-self: flex-start;
}
.screen__logo img {
  height: clamp(24px, 3.2vw, 34px);
  width: auto;
}

/* ============================================================
   Main — headline + descriptor, vertically centred
   ============================================================ */
.screen__main {
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 0;
  animation: rise-in 0.8s ease-out 0.1s both;
}

.headline {
  max-width: calc(100vw - 2 * var(--edge));
  min-width: 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--step-headline);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.descriptor {
  margin-top: var(--space-3);
  max-width: min(calc(100vw - 2 * var(--edge)), 60ch);
  min-width: 0;
  font-family: var(--font-head);
  font-size: var(--step-descriptor);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-grey);
}

/* ============================================================
   Contact — single quiet line
   ============================================================ */
.screen__contact {
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 2 * var(--edge));
  gap: var(--space-1) var(--space-2);
  font-size: var(--step-contact);
  letter-spacing: 0.02em;
  color: var(--color-grey);
}
.screen__contact a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.screen__contact a:hover,
.screen__contact a:focus-visible {
  border-color: var(--color-gold);
}
.screen__contact .divider {
  width: 1px;
  height: 0.85em;
  background: var(--color-gold);
}
