:root {
    --ink: #14213d;
    --slate: #48546b;
    --slate-light: #7b869c;
    --line: #e3e7ee;
    --paper: #ffffff;
    --panel: #f4f6fa;
    --accent: #c9972c;
    --accent-dark: #a3781f;
    --radius: 14px;
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

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

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

.container {
    width: min(1140px, calc(100% - 3rem));
    margin: 0 auto;
}

.eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin: 0 0 0.6rem;
}

h1, h2, h3 {
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 0.75rem;
}

h1 {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
}

h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

p {
    margin: 0 0 1rem;
    color: var(--slate);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo-mark {
    height: 40px;
    width: auto;
    border-radius: 6px;
}

.logo.small .logo-mark {
    height: 30px;
}

.primary-nav ul {
    list-style: none;
    display: flex;
    gap: 1.75rem;
    margin: 0;
    padding: 0;
}

.primary-nav a {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--slate);
}

.primary-nav a:hover {
    color: var(--ink);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

.btn.primary {
    background: var(--accent);
    color: #fff;
}

.btn.primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.btn.ghost {
    border-color: var(--line);
    color: var(--ink);
    background: transparent;
}

.btn.ghost:hover {
    border-color: var(--slate-light);
}

/* Hero */
.hero {
    padding: 4.5rem 0 3.5rem;
    background: linear-gradient(180deg, var(--panel) 0%, var(--paper) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-visual {
    background: var(--ink);
    border-radius: var(--radius);
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-logo {
    max-width: 280px;
    border-radius: 8px;
}

/* About */
.about {
    padding: 4rem 0;
}

.about-grid {
    max-width: 760px;
}

/* Services */
.services {
    padding: 4rem 0;
    background: var(--panel);
}

.section-heading {
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.service-lines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-line {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
}

.service-line h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-line ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-line li {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    padding: 0.6rem 0.9rem;
    background: var(--panel);
    border-radius: 8px;
}

/* Press / Verification (shared figure pattern) */
.press, .verification {
    padding: 4rem 0;
}

.verification {
    background: var(--panel);
}

.verification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.verification-details {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
}

.press-clip {
    margin: 0;
    max-width: 480px;
}

.verification .press-clip {
    max-width: none;
}

.press-clip img {
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.press-clip figcaption {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--slate-light);
}

/* Contact */
.contact {
    padding: 4.5rem 0;
    background: var(--ink);
    color: #dde3ee;
}

.contact .eyebrow {
    color: var(--accent);
}

.contact h2 {
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
}

.contact-details {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-weight: 600;
}

.contact-form {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    font: inherit;
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.contact-form textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-form .btn.primary {
    align-self: flex-start;
}

/* Footer */
.site-footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--line);
}

.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-flex p {
    margin: 0.3rem 0 0;
    font-size: 0.82rem;
    color: var(--slate-light);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate);
}

/* Responsive */
@media (max-width: 860px) {
    .hero-grid,
    .verification-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: flex;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease;
    }

    .primary-nav.open {
        max-height: 360px;
    }

    .primary-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0;
    }

    .primary-nav li {
        padding: 0.75rem var(--container-pad, 1.5rem);
    }
}
