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

:root {
    --bg:        #020202;
    --red:       #d71023;
    --red-dim:   rgba(215, 16, 35, 0.12);
    --white:     #f0ede8;
    --gray:      #6a6560;
    --gray-mid:  #3a3530;
    --border:    rgba(240, 237, 232, 0.08);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans:  'Barlow', sans-serif;
}

html, body { height: 100%; }

body {
    background-color: var(--bg);
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 300;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 250px 250px;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 48px;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease both;
}
.header-line { flex: 1; height: 1px; background: var(--border); }
.header-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gray);
    white-space: nowrap;
}

/* Main */
.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px 40px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Logo col */
.logo-col {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 64px;
    position: relative;
    animation: fadeUp 1s ease 0.2s both;
}
.logo {
    width: 280px;
    max-width: 38vw;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}
.logo-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(215,16,35,0.07) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* Divider */
.divider-v {
    width: 1px;
    height: 340px;
    background: linear-gradient(to bottom, transparent, var(--border) 25%, var(--border) 75%, transparent);
    flex-shrink: 0;
    animation: growV 1.2s ease 0.5s both;
}
@keyframes growV {
    from { transform: scaleY(0); transform-origin: top; opacity: 0; }
    to   { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* Content col */
.content-col {
    flex: 1;
    padding-left: 64px;
    animation: fadeUp 1s ease 0.4s both;
}
.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 10px;
}
.headline {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5.5vw, 5rem);
    font-weight: 300;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}
.headline em {
    font-style: italic;
    font-weight: 300;
    color: var(--red);
}
.red-rule {
    width: 40px;
    height: 2px;
    background: var(--red);
    margin-bottom: 24px;
}
.body-text {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 44px;
    letter-spacing: 0.02em;
}

/* Contact */
.contact-stack { display: flex; flex-direction: column; gap: 2px; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--white);
    transition: background 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}
.contact-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 2px;
    background: var(--red);
    transform: scaleY(0);
    transition: transform 0.25s ease;
    transform-origin: bottom;
}
.contact-item:hover { background: rgba(240,237,232,0.03); border-color: rgba(240,237,232,0.15); }
.contact-item:hover::before { transform: scaleY(1); }

.contact-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; }

.contact-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.contact-label { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); }
.contact-value { font-size: 0.88rem; font-weight: 400; color: var(--white); letter-spacing: 0.03em; }

.contact-arrow { font-size: 1rem; color: var(--gray); opacity: 0; transform: translateX(-6px); transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease; }
.contact-item:hover .contact-arrow { opacity: 1; transform: translateX(0); color: var(--red); }

/* Footer */
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px 48px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease 0.8s both;
}
.footer-copy, .footer-tag {
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}
.footer-dots { display: flex; gap: 6px; align-items: center; }
.footer-dots span { display: block; width: 3px; height: 3px; border-radius: 50%; background: var(--gray-mid); }
.footer-dots span:nth-child(2) { background: var(--red); opacity: 0.6; }

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Responsive */
@media (max-width: 820px) {
    .header { padding: 22px 28px; }
    .main { flex-direction: column; padding: 24px 28px 40px; gap: 36px; }
    .logo-col { padding-right: 0; }
    .logo { width: 200px; max-width: 60vw; }
    .divider-v { width: 280px; max-width: 70vw; height: 1px; background: linear-gradient(to right, transparent, var(--border) 25%, var(--border) 75%, transparent); }
    .content-col { padding-left: 0; text-align: center; width: 100%; }
    .red-rule { margin: 0 auto 24px; }
    .contact-item { text-align: left; }
    .footer { padding: 20px 28px; flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .headline { font-size: 2.6rem; }
    .contact-value { font-size: 0.82rem; }
}
