/* ---------- Tokens ---------- */
:root {
    --bg: #ffffff;
    --ink: #111111;
    --ink-soft: #2a2a2a;
    --muted: #6e6e6e;
    --rule: #d9d9d9;

    --pad-x: clamp(24px, 4.8vw, 88px);
    --pad-top: clamp(28px, 3.2vw, 52px);

    --serif-display: "Libre Caslon Display", "Libre Caslon Text", "Big Caslon", "Times New Roman", Times, serif;
    --serif: "Libre Caslon Text", "Libre Caslon Display", "Big Caslon", "Times New Roman", Times, serif;
    --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

    --label-tracking: 0.22em;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

p { margin: 0; }

main {
    padding: var(--pad-top) var(--pad-x) clamp(40px, 4vw, 64px);
}

/* ---------- Hero ---------- */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.65fr);
    gap: clamp(24px, 4vw, 64px);
    align-items: start;
    margin-top: clamp(8px, 1vw, 20px);
}

.hero-title {
    min-width: 0;
}

.display-title {
    font-family: var(--serif-display);
    font-weight: 400;
    font-style: normal;
    font-size: clamp(56px, 9.4vw, 180px);
    line-height: 0.95;
    letter-spacing: 0;
    margin: 0;
    color: var(--ink);
    text-transform: uppercase;
}
.display-title .line {
    display: block;
}

.eyebrow {
    font-family: var(--sans);
    text-transform: uppercase;
    letter-spacing: var(--label-tracking);
    font-size: clamp(10px, 0.78vw, 12px);
    font-weight: 500;
    color: var(--ink);
    margin-top: clamp(18px, 1.8vw, 30px);
}

.hero-figure {
    margin: 0;
    padding-top: clamp(110px, 19vw, 340px);
    align-self: start;
}
.hero-figure img {
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.02);
    transition: filter .8s ease, transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.hero-figure:hover img {
    filter: grayscale(100%) contrast(1.05);
    transform: scale(1.012);
}

/* ---------- Intro ---------- */
.intro {
    max-width: 42%;
    min-width: 280px;
    margin-top: clamp(64px, 9vw, 150px);
}
.intro-heading {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.15;
    letter-spacing: -0.005em;
    margin: 0 0 clamp(18px, 1.8vw, 28px);
    color: var(--ink);
}
.intro-body p {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 1em;
    color: var(--ink-soft);
}
.intro-body p:last-child { margin-bottom: 0; }

/* ---------- Tagline (centered editorial block) ---------- */
.tagline {
    max-width: 920px;
    margin: clamp(80px, 12vw, 180px) auto clamp(80px, 12vw, 180px);
    padding: 0 24px;
    text-align: center;
}
.tagline p {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(22px, 2.4vw, 36px);
    line-height: 1.35;
    letter-spacing: -0.005em;
    color: var(--ink);
}

/* ---------- Footer ---------- */
.site-footer {
    border-top: 1px solid var(--rule);
    padding-top: clamp(40px, 4vw, 72px);
    margin-top: clamp(40px, 6vw, 96px);
}
.footer-rows {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 6vw, 96px);
}
.footer-row {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 1.6vw, 28px);
}
.footer-label {
    text-transform: uppercase;
    letter-spacing: var(--label-tracking);
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
}
.footer-value {
    font-family: var(--serif-display);
    font-weight: 400;
    font-size: clamp(15px, 1.2vw, 18px);
    color: var(--ink);
    letter-spacing: 0.01em;
}
.footer-value a {
    position: relative;
    display: inline-block;
}
.footer-value a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.footer-value a:hover::after { transform: scaleX(1); }

.footer-email {
    font-family: var(--serif-display);
    font-style: normal;
    font-weight: 400;
    font-size: clamp(38px, 6.4vw, 96px);
    line-height: 1;
    letter-spacing: -0.005em;
    color: var(--ink);
}
.footer-email a {
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 0 1px;
    transition: background-size .5s cubic-bezier(.2,.7,.2,1);
}
.footer-email a:hover {
    background-size: 100% 1px;
}

.copyright {
    margin-top: clamp(64px, 8vw, 120px);
    text-transform: uppercase;
    letter-spacing: var(--label-tracking);
    font-size: 11px;
    color: var(--muted);
}

/* ---------- Reveal (staggered fade-up on load) ---------- */
.display-title .line,
.eyebrow,
.hero-figure,
.intro-heading,
.intro-body p,
.tagline p,
.site-footer {
    opacity: 0;
    transform: translateY(14px);
    animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.display-title .line-1   { animation-delay: 80ms; }
.display-title .line-2   { animation-delay: 200ms; }
.eyebrow                 { animation-delay: 380ms; }
.hero-figure             { animation-delay: 260ms; transform: translateY(20px); }
.intro-heading           { animation-delay: 520ms; }
.intro-body p:nth-child(1){ animation-delay: 620ms; }
.intro-body p:nth-child(2){ animation-delay: 700ms; }
.tagline p               { animation-delay: 800ms; }
.site-footer             { animation-delay: 880ms; }

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

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-delay: 0ms !important;
        transition-duration: .01ms !important;
    }
    .display-title .line,
    .eyebrow,
    .hero-figure,
    .intro-heading,
    .intro-body p,
    .tagline p,
    .site-footer { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: clamp(28px, 6vw, 48px);
    }
    .hero-figure {
        padding-top: 0;
        max-width: 70%;
    }
    .display-title {
        font-size: clamp(56px, 16vw, 140px);
    }
    .intro {
        max-width: 56ch;
    }
    .tagline {
        margin: clamp(56px, 14vw, 100px) auto;
    }
}

@media (max-width: 600px) {
    main { padding-top: clamp(56px, 12vw, 80px); }
    .display-title { font-size: clamp(54px, 17vw, 110px); }
    .hero-figure { max-width: 88%; }
    .intro { max-width: 100%; }
    .footer-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .footer-email { font-size: clamp(30px, 9vw, 52px); }
}
