/* Dixie Graphix — Coming soon (v2)
   Full-bleed editorial gate. Not the CC card layout. */

:root {
  --ink: #0A0F1A;
  --ink-2: #0E1624;
  --bone: #F4EFE6;
  --bone-dim: #B8B0A4;
  --ember: #E89B2D;
  --ember-soft: rgba(232, 155, 45, 0.18);
  --mute: #7A8494;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --font-script: "Great Vibes", cursive;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html, body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--bone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ember); color: var(--ink); }

/* —— Shell —— */
.gate {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  isolation: isolate;
  overflow: hidden;
}

.gate__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gate__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 48%;
  transform: scale(1.06);
  filter: saturate(0.92) brightness(0.72);
  animation: drift 28s var(--ease) infinite alternate;
}

@keyframes drift {
  from { transform: scale(1.06) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.5%, -0.8%); }
}

.gate__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(10, 15, 26, 0.94) 0%, rgba(10, 15, 26, 0.82) 38%, rgba(10, 15, 26, 0.45) 62%, rgba(10, 15, 26, 0.55) 100%),
    linear-gradient(180deg, rgba(10, 15, 26, 0.35) 0%, transparent 28%, transparent 70%, rgba(10, 15, 26, 0.75) 100%);
  pointer-events: none;
}

/* Registration corners */
.gate::before,
.gate::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.55;
  border-color: var(--ember);
  border-style: solid;
}
.gate::before {
  top: 1.1rem;
  left: 1.1rem;
  border-width: 1.5px 0 0 1.5px;
}
.gate::after {
  bottom: 1.1rem;
  right: 1.1rem;
  border-width: 0 1.5px 1.5px 0;
}

/* —— Top —— */
.gate__top {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.08rem;
  transition: opacity 0.2s;
}
.mark:hover { opacity: 0.85; }

.mark__script {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--bone);
}

.mark__block {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember);
  padding-left: 0.15rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-dim);
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(244, 239, 230, 0.14);
  border-radius: 999px;
  background: rgba(10, 15, 26, 0.35);
  backdrop-filter: blur(10px);
}

.status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 var(--ember-soft);
  animation: pulse 2.2s ease infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--ember-soft); }
  70% { box-shadow: 0 0 0 10px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

/* —— Main —— */
.gate__main {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: min(34rem, 100%);
  padding: clamp(2rem, 8vh, 4.5rem) 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.25rem;
}

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7.5vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 1.35rem;
}

.h1-line { display: block; }

.h1-line--accent {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ember);
  margin-top: 0.15em;
}

.deck {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.55;
  color: var(--bone-dim);
  max-width: 34ch;
  margin-bottom: 2rem;
}

.actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: var(--ember);
  padding: 1rem 1.5rem;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), background 0.2s, box-shadow 0.3s var(--ease);
}

.cta:hover {
  background: #d48a22;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(232, 155, 45, 0.3);
}

.cta__arrow {
  font-size: 0.95em;
  opacity: 0.85;
  transition: transform 0.25s var(--ease);
}

.cta:hover .cta__arrow {
  transform: translate(2px, -2px);
}

.actions__hint {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  padding-left: 0.1rem;
}

.actions__soon {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mute);
  padding-left: 0.1rem;
  opacity: 0.85;
}

/* —— Vertical format rail —— */
.gate__side {
  position: absolute;
  z-index: 4;
  right: clamp(0.75rem, 2vw, 1.5rem);
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  display: flex;
  gap: 1.75rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.35);
  pointer-events: none;
  user-select: none;
}

/* —— Foot —— */
.gate__foot {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

.gate__foot a {
  color: var(--bone-dim);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.gate__foot a:hover {
  color: var(--ember);
  border-bottom-color: rgba(232, 155, 45, 0.5);
}

.gate__foot-sep { opacity: 0.4; }

/* —— Mobile —— */
@media (max-width: 720px) {
  .gate {
    padding: 1.1rem 1.15rem 1.25rem;
  }

  .gate__veil {
    background:
      linear-gradient(180deg, rgba(10, 15, 26, 0.75) 0%, rgba(10, 15, 26, 0.55) 35%, rgba(10, 15, 26, 0.88) 100%),
      linear-gradient(90deg, rgba(10, 15, 26, 0.7) 0%, transparent 70%);
  }

  .gate__media img {
    object-position: 60% 40%;
    filter: saturate(0.9) brightness(0.55);
  }

  .gate__side { display: none; }

  .gate__main {
    padding: 2.5rem 0 2rem;
    max-width: none;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .deck {
    max-width: none;
    font-size: 1.05rem;
  }

  .cta {
    width: 100%;
    justify-content: center;
  }

  .status {
    font-size: 0.6rem;
    padding: 0.4rem 0.65rem;
  }

  .gate::before,
  .gate::after {
    width: 12px;
    height: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gate__media img { animation: none; }
  .status__dot { animation: none; }
  .cta:hover { transform: none; }
}
