/* Prince Visuals — Coming Soon
   Cinematic editorial dark theme for a photography portfolio. */

:root {
    --ink:      #0a0a0b;
    --ink-2:    #111113;
    --paper:    #f4f1ea;
    --muted:    #a6a29a;
    --line:     rgba(244, 241, 234, 0.12);
    --accent:   #c9a35e;      /* warm gilt */
    --accent-2: #e7cf9a;
    --serif:    "Cormorant Garamond", Georgia, serif;
    --sans:     "Inter", system-ui, -apple-system, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
    min-height: 100dvh;
    background:
        radial-gradient(120% 80% at 50% -10%, #17161a 0%, var(--ink) 55%) fixed,
        var(--ink);
    color: var(--paper);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* ---- cinematic backdrop (stands in until a hero photo is added) ---- */
.backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
/* warm key light from upper-right */
.backdrop::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(90% 62% at 74% -8%, rgba(201, 163, 94, 0.12), transparent 60%);
}
/* vignette to seat the type */
.backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(125% 95% at 50% 42%, transparent 52%, rgba(0, 0, 0, 0.6) 100%);
}
.backdrop-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3) contrast(1.05) brightness(0.6);
    transform: scale(1.05);
    animation: slowzoom 22s ease-out forwards;
}
@keyframes slowzoom { to { transform: scale(1); } }
.scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10, 10, 11, 0.55) 0%,
        rgba(10, 10, 11, 0.22) 38%,
        rgba(10, 10, 11, 0.78) 100%);
}
.has-hero .scrim {
    background: linear-gradient(180deg,
        rgba(10, 10, 11, 0.62) 0%,
        rgba(10, 10, 11, 0.34) 42%,
        rgba(10, 10, 11, 0.85) 100%);
}

/* subtle film grain */
.grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- header ---- */
.site-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1.4rem, 4vw, 2.6rem) clamp(1.4rem, 5vw, 4rem);
}
.mark {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
    font-weight: 600;
    letter-spacing: 0.06em;
}
.soon {
    font-size: 0.62rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent-2);
    border: 1px solid var(--line);
    padding: 0.5rem 0.9rem;
    border-radius: 100px;
}

/* ---- stage ---- */
.stage {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(2rem, 6vw, 4rem) clamp(1.4rem, 5vw, 4rem) 3rem;
    max-width: 860px;
    margin: 0 auto;
}

.eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.6rem;
}

.display {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(2.9rem, 9vw, 6.4rem);
    line-height: 0.98;
    letter-spacing: -0.01em;
}
.display .accent {
    font-style: italic;
    background: linear-gradient(100deg, var(--accent) 10%, var(--accent-2) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lede {
    max-width: 40ch;
    margin: 1.8rem auto 0;
    color: var(--muted);
    font-size: clamp(0.98rem, 2.1vw, 1.12rem);
}
.lede strong { color: var(--paper); font-weight: 500; }

/* ---- countdown ---- */
.countdown {
    display: flex;
    gap: clamp(0.8rem, 3vw, 2.2rem);
    margin: 2.6rem 0 2.4rem;
}
.unit { display: flex; flex-direction: column; align-items: center; }
.num {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.lab {
    margin-top: 0.5rem;
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ---- form ---- */
.notify { width: min(440px, 100%); }
.field {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 0.4rem 0.4rem 0.4rem 1.3rem;
    transition: border-color 0.3s, background 0.3s;
}
.field:focus-within {
    border-color: rgba(201, 163, 94, 0.55);
    background: rgba(255, 255, 255, 0.06);
}
.field input[type="email"] {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--paper);
    font-family: var(--sans);
    font-size: 0.95rem;
    min-width: 0;
}
.field input::placeholder { color: #6f6b64; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.field button {
    flex-shrink: 0;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--ink);
    background: linear-gradient(100deg, var(--accent) 0%, var(--accent-2) 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    transition: transform 0.2s, box-shadow 0.3s, opacity 0.2s;
}
.field button:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201, 163, 94, 0.28); }
.field button:disabled { opacity: 0.6; cursor: default; transform: none; box-shadow: none; }

.form-msg {
    min-height: 1.2rem;
    margin-top: 0.9rem;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    transition: color 0.3s;
}
.form-msg.ok  { color: var(--accent-2); }
.form-msg.err { color: #e08a7a; }

/* ---- socials ---- */
.socials {
    margin-top: 2.4rem;
    display: flex;
    gap: 0.8rem;
    align-items: center;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}
.socials a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s;
}
.socials a:hover { color: var(--accent-2); }

/* ---- footer ---- */
.site-foot {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.4rem;
    justify-content: space-between;
    padding: 1.6rem clamp(1.4rem, 5vw, 4rem);
    border-top: 1px solid var(--line);
    font-size: 0.72rem;
    color: var(--muted);
    letter-spacing: 0.03em;
}
.credit a { color: var(--accent-2); text-decoration: none; }
.credit a:hover { text-decoration: underline; }

/* ---- reveal animation ---- */
[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    animation: reveal 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
[data-reveal]:nth-child(1) { animation-delay: 0.05s; }
[data-reveal]:nth-child(2) { animation-delay: 0.15s; }
[data-reveal]:nth-child(3) { animation-delay: 0.28s; }
[data-reveal]:nth-child(4) { animation-delay: 0.42s; }
[data-reveal]:nth-child(5) { animation-delay: 0.55s; }
[data-reveal]:nth-child(6) { animation-delay: 0.68s; }

@keyframes reveal {
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] { animation: none; opacity: 1; transform: none; }
    .backdrop-img { animation: none; transform: none; }
}

@media (max-width: 560px) {
    .field { flex-direction: column; border-radius: 22px; padding: 0.6rem; }
    .field input[type="email"] { padding: 0.6rem 0.8rem; text-align: center; }
    .field button { width: 100%; padding: 0.85rem; }
}
