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

:root {
    --orange: #FF6600;
    --black: #000000;
    --white: #FFFFFF;
    --gray-dark: #111111;
    --gray-mid: #1a1a1a;
    --gray-text: #888888;
}

html, body {
    height: 100%;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Arial Narrow', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* ── Logo ─────────────────────────────────────────────── */
.logo-wrap {
    margin-bottom: 3rem;
    text-align: center;
}

/*
  PLACEHOLDER LOGO
  Replace the entire .logo-placeholder block (and the SVG inside it)
  with an <img> tag pointing to your actual logo file.
  Example:
    <img src="/path/to/logo.svg" alt="The Unscripted Workshop" class="logo-img">

  Add this rule to style the real logo:
    .logo-img { width: 340px; max-width: 100%; }
*/
.logo-placeholder {
    width: 340px;
    max-width: 100%;
}

.logo-placeholder svg {
    width: 100%;
    max-width: 100%;
    height: auto;
}


/* SVG placeholder renders the wordmark using brand colors */
.logo-placeholder svg {
    width: 100%;
    height: auto;
}

/* ── Divider bar ───────────────────────────────────────── */
.brand-bar {
    width: 48px;
    height: 4px;
    background-color: var(--orange);
    margin: 0 auto 2.5rem;
}

/* ── Heading ──────────────────────────────────────────── */
h1 {
    font-family: 'Arial Narrow', Arial, sans-serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

h1 span {
    color: var(--orange);
}

/* ── Tagline ──────────────────────────────────────────── */
.tagline {
    font-size: clamp(0.875rem, 2vw, 1.0625rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-text);
    text-align: center;
    margin-bottom: 3rem;
}

/* ── Email capture ────────────────────────────────────── */
.notify-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 420px;
    margin-bottom: 3.5rem;
}

.notify-label {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-text);
}

.notify-row {
    display: flex;
    width: 100%;
    border: 1px solid #333;
    background: var(--gray-mid);
}

.notify-row input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.75rem 1rem;
    color: var(--white);
    font-size: 0.9375rem;
    font-family: inherit;
}

.notify-row input[type="email"]::placeholder {
    color: #555;
}

.notify-row button {
    background: var(--orange);
    color: var(--black);
    border: none;
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.15s ease;
}

.notify-row button:hover {
    background: #e65c00;
}

.notify-note {
    font-size: 0.75rem;
    color: #444;
    letter-spacing: 0.04em;
}

/* ── Social links ─────────────────────────────────────── */
.social {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.social a {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-text);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.15s, border-color 0.15s;
    padding-bottom: 2px;
}

.social a:hover {
    color: var(--orange);
    border-color: var(--orange);
}

/* ── Footer ───────────────────────────────────────────── */
footer {
    font-size: 0.6875rem;
    color: #333;
    letter-spacing: 0.06em;
    text-align: center;
}

@media (max-width: 480px) {
    .notify-row {
        flex-direction: column;
    }

    .notify-row input[type="email"] {
        border-bottom: 1px solid #333;
    }

    .notify-row button {
        width: 100%;
        padding: 0.75rem;
    }
}