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

:root {
    --bg: #0e0e0d;
    --fg: #c8c2b8;
    --fg-dim: #6b6660;
    --fg-bright: #e8e2d8;
    --accent: #b8af7e;
    --rule: rgba(200, 194, 184, 0.12);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-mono: 'Space Mono', 'Courier New', monospace;
}

html {
    font-size: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: var(--font-display);
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
}

/* Subtle noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    padding-top: 3rem;
    text-align: center;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fg-dim);
}

.header-nav::before,
.header-nav::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rule);
}

.header-nav span {
    flex-shrink: 0;
}

.logo {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    color: var(--fg-bright);
    margin-bottom: 1rem;
}

.header-rule {
    width: 100%;
    height: 1px;
    background: var(--rule);
    margin: 0.8rem 0;
}

.tagline {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fg-dim);
}

.tagline span {
    margin: 0 0.75rem;
}

/* Sections */
section {
    margin-top: 3.5rem;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fg-dim);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--rule);
}

.section-label span {
    margin: 0 0.5rem;
    opacity: 0.4;
}

.body-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--fg);
    margin-bottom: 1.25rem;
}

/* Callout / quote block */
.callout {
    border: 1px solid rgba(200, 194, 184, 0.15);
    padding: 1.1rem 1.5rem;
    margin: 2rem 0;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: var(--accent);
    line-height: 1.6;
}

/* Contact grid */
.contact-grid {
    margin-top: 1.5rem;
}

.contact-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--rule);
    align-items: baseline;
}

.contact-row:first-child {
    border-top: 1px solid var(--rule);
}

.contact-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg-dim);
}

.contact-value {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--fg);
    line-height: 1.6;
}

.contact-value a {
    color: var(--fg-bright);
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 194, 184, 0.2);
    transition: border-color 0.3s ease;
}

.contact-value a:hover {
    border-color: var(--fg);
}

.contact-value .note {
    display: block;
    font-size: 0.7rem;
    color: var(--fg-dim);
    margin-top: 0.2rem;
}

/* Footer */
footer {
    margin-top: 4rem;
    padding: 2rem 0 3rem;
    border-top: 1px solid var(--rule);
}

.footer-content {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--fg-dim);
    line-height: 1.8;
}

.footer-company {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.3rem;
    color: var(--fg);
    font-size: 0.7rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 1.5rem;
}

.footer-copyright {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--fg-dim);
}

.footer-monogram {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--fg-dim);
    opacity: 0.4;
}

/* Staggered fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeIn 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.25s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.55s; }
.fade-in:nth-child(5) { animation-delay: 0.7s; }
.fade-in:nth-child(6) { animation-delay: 0.85s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive — tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .logo {
        font-size: 2rem;
        letter-spacing: 0.3em;
    }

    section {
        margin-top: 2.5rem;
    }

    footer {
        margin-top: 3rem;
    }
}

/* Responsive — mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 1.1rem;
    }

    header {
        padding-top: 2rem;
    }

    .header-nav {
        gap: 0.8rem;
        margin-bottom: 1.8rem;
        font-size: 0.55rem;
        letter-spacing: 0.1em;
    }

    .logo {
        font-size: 1.6rem;
        letter-spacing: 0.2em;
    }

    .tagline {
        font-size: 0.6rem;
        letter-spacing: 0.12em;
    }

    .tagline span {
        margin: 0 0.4rem;
    }

    section {
        margin-top: 2rem;
    }

    .section-label {
        font-size: 0.6rem;
        margin-bottom: 1rem;
    }

    .body-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .callout {
        padding: 0.9rem 1rem;
        font-size: 0.72rem;
    }

    .contact-row {
        grid-template-columns: 1fr;
        gap: 0.2rem;
        padding: 0.7rem 0;
    }

    .contact-label {
        font-size: 0.6rem;
    }

    .contact-value {
        font-size: 0.75rem;
    }

    .contact-value .note {
        font-size: 0.65rem;
    }

    footer {
        margin-top: 2.5rem;
        padding: 1.5rem 0 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .footer-monogram {
        align-self: flex-end;
    }
}
