:root {
    --paper: #efefed;
    --ink: #121212;
    --muted: #454545;
    --line: #c9c9c9;
    --line-strong: #9a9a9a;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    color: var(--ink);
    font-family: "Manrope", "Segoe UI", sans-serif;
    background-color: #a2a2a2;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 34px 34px;
}

h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    letter-spacing: -0.01em;
}

.panel {
    border: 1px solid var(--line-strong);
    background: var(--paper);
}

.hero-panel {
    margin-top: 0.5rem;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 420px;
}

.hero-copy {
    padding: 3rem 2.8rem;
    border-right: 1px solid var(--line);
}

.eyebrow {
    margin: 0;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5d5d5d;
    font-weight: 700;
}

.hero-copy h1 {
    margin: 1rem 0 0;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 0.95;
}

.hero-copy h2 {
    margin: 0.65rem 0 1rem;
    font-size: clamp(1.05rem, 2vw, 1.45rem);
    font-weight: 600;
}

.lead {
    max-width: 58ch;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.ink-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #121212;
    padding: 0.58rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
    background: #111111;
}

.ink-btn.ghost {
    color: #111111;
    background: transparent;
}

.hero-sketch {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(to right, transparent 24%, rgba(0, 0, 0, 0.12) 24%, rgba(0, 0, 0, 0.12) 25%, transparent 25%),
        linear-gradient(to bottom, transparent 58%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.18) 59%, transparent 59%),
        repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 1px, transparent 1px, transparent 24px),
        repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 1px, transparent 1px, transparent 24px);
}

.hero-sketch img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.08);
    mix-blend-mode: multiply;
    opacity: 0.92;
}

.hero-sketch::before,
.hero-sketch::after {
    inset: 28% 20% 24% 20%;
}

.hero-sketch::after {
    inset: 28% 20% 24% 20%;
}

.ticker-row {
    margin: 0;
    border-left: 1px solid var(--line-strong);
    border-right: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
    background: var(--paper);
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ticker-row span {
    border-right: 1px solid var(--line);
    text-align: center;
    font-size: 0.78rem;
    padding: 0.8rem 0.5rem;
}

.ticker-row span:last-child {
    border-right: 0;
}

.metric-panel,
.service-panel,
.consult-panel,
.contact-panel {
    margin-top: 1rem;
    padding: 1.4rem;
}

.metric-intro h3,
.service-panel h3,
.consult-panel h3,
.contact-panel h3 {
    margin: 0.6rem 0 0.8rem;
    font-size: clamp(1.45rem, 2.8vw, 2.1rem);
}

.metric-intro p,
.service-panel p,
.contact-panel p {
    color: var(--muted);
    line-height: 1.65;
}

.metric-grid {
    margin-top: 1.1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.data-cell {
    background: transparent;
    border-radius: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: none;
    padding: 1rem;
}

.data-cell p {
    margin: 0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #656565;
}

.data-cell h4 {
    margin: 0.3rem 0 0;
    font-size: 2rem;
}

.service-grid {
    margin-top: 1rem;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid article {
    padding: 1.2rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.service-grid h4 {
    margin: 0;
    font-size: 1.4rem;
}

.service-grid p {
    margin: 0.6rem 0 0;
    color: var(--muted);
}

.consult-grid {
    margin-top: 1rem;
    border-top: 1px solid var(--line);
}

.consult-grid > div {
    display: grid;
    grid-template-columns: 90px 1fr;
    border-bottom: 1px solid var(--line);
}

.consult-grid span {
    padding: 0.9rem;
    border-right: 1px solid var(--line);
    font-weight: 700;
    font-size: 0.8rem;
}

.consult-grid p {
    margin: 0;
    padding: 0.9rem;
    color: var(--muted);
}

.mail-link {
    display: inline-block;
    margin-top: 0.8rem;
    text-decoration: none;
    border-bottom: 1px solid #111;
    color: #111;
    font-weight: 700;
}

.org {
    margin-top: 0.65rem;
}

.rz-card {
    margin-bottom: 0;
}

@media (max-width: 960px) {
    .hero-panel {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 2rem 1.4rem;
    }

    .ticker-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metric-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .consult-grid > div {
        grid-template-columns: 60px 1fr;
    }
}


