:root {
    --black: #0a0a0a;
    --off-white: #f4f1eb;
    --warm-white: #faf8f4;
    --gold: #b8955a;
    --gold-light: #d4af7a;
    --charcoal: #2a2825;
    --mid: #6b6560;
    --rule: #c8bfb0;
}

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

html {
    scroll-behavior: auto;
}

body {
    background: var(--black);
    color: var(--off-white);
    font-family: 'Didact Gothic', sans-serif;
    font-size: 14px;
    letter-spacing: 0.04em;
    overflow-x: hidden;
}

.split {
    display: grid;
    grid-template-columns: 420px 1fr;
    min-height: 100vh;
}

/* ---------- Left: portrait ---------- */

.portrait-col {
    position: relative;
    overflow: hidden;
    background: var(--charcoal);
}

.portrait-col img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    object-position: 30% top;
    filter: grayscale(100%) contrast(1.05);
}

/* Designer placeholder card, reused from landing.blade.php's .designer section */

.portrait-placeholder {
    position: absolute;
    z-index: 2;

    left: 50%;
    top: 65%;
    transform: translate(-50%, -50%);

    padding: 20px;
    border-radius: 10px;
    background: #ffffff17;
    backdrop-filter: blur(5px);
    width: 80%;
    text-align: center;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.5);
}

.portrait-placeholder-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
}

.portrait-placeholder-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--off-white);
    line-height: 1.6;
}

.portrait-placeholder-desc span {
    color: var(--gold);
}

/* ---------- Right: content panel ---------- */

.content-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px;
    animation: fadeUp 1s 0.2s both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-inner {
    max-width: 480px;
    width: 100%;
}

.wordmark {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--off-white);
}

.rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 28px 0 32px;
}

.headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.05;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.body-copy {
    font-family: 'Didact Gothic', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.03em;
    color: var(--off-white);
    opacity: 0.55;
    margin-bottom: 48px;
    max-width: 400px;
}

.contact-block {
    padding-top: 32px;
    border-top: 1px solid rgba(184, 149, 90, 0.2);
}

.contact-label {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.contact-email {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 19px;
    color: var(--off-white);
    text-decoration: none;
    opacity: 0.85;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s, opacity 0.25s;
}

.contact-email:hover {
    opacity: 1;
    border-color: var(--gold);
}

@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
    }

    .portrait-col img {
        min-height: 50vh;
    }

    .content-col {
        padding: 56px 24px 72px;
    }
}

@media (max-width: 767px) {
    .portrait-placeholder {
        top: 65%;
        text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
    }
}
