 :root {
    --ink: #1B2A4A;
    --indigo: #2E3F6B;
    --gold: #C9932E;
    --gold-deep: #A87423;
    --mist: #EEF1F0;
    --paper: #FBFAF7;
    --charcoal: #22262B;
    --line: rgba(27, 42, 74, 0.14);
    --serif: 'IBM Plex Serif', Georgia, serif;
    --sans: 'IBM Plex Sans', -apple-system, sans-serif;
    --mono: 'IBM Plex Mono', monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--sans);
    color: var(--charcoal);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    margin: 0;
    color: var(--ink);
}

p {
    margin: 0;
}

section {
    padding: 96px 24px;
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
}

.eyebrow {
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-deep);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--gold-deep);
    display: inline-block;
}

:focus-visible {
    outline: 2.5px solid var(--gold-deep);
    outline-offset: 3px;
}

/* ---------- HEADER ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 250, 247, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.nav {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    flex-shrink: 0;
}

.brand-name {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 19px;
    color: var(--ink);
    letter-spacing: .01em;
}

.brand-tag {
    display: block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .1em;
    color: var(--indigo);
    text-transform: uppercase;
    margin-top: 1px;
}

nav.links {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav.links a {
    font-size: 14.5px;
    text-decoration: none;
    color: var(--charcoal);
    position: relative;
    padding: 4px 0;
}

nav.links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background: var(--gold-deep);
    transition: width .25s ease;
}

nav.links a:hover::after {
    width: 100%;
}

.btn {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 14.5px;
    padding: 11px 22px;
    border-radius: 3px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-primary {
    background: var(--ink);
    color: #fff;
}

.btn-primary:hover {
    background: var(--indigo);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(27, 42, 74, 0.25);
}

.btn-gold {
    background: var(--gold);
    color: var(--ink);
}

.btn-gold:hover {
    background: var(--gold-deep);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(201, 147, 46, 0.35);
}

.btn-ghost {
    border-color: var(--ink);
    color: var(--ink);
    background: transparent;
}

.btn-ghost:hover {
    background: var(--ink);
    color: #fff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
}

/* ---------- HERO ---------- */
.hero {
    padding: 76px 24px 60px;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(34px, 4.4vw, 54px);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -.01em;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-deep);
}

.hero p.lede {
    font-size: 17.5px;
    color: var(--indigo);
    margin-top: 22px;
    max-width: 46ch;
}

.hero .actions {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

/* stamp signature */
.stamp-wrap {
    display: flex;
    justify-content: center;
}

.stamp {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: scale(0.4) rotate(-18deg);
    opacity: 0;
    animation: stampIn .7s cubic-bezier(.2, .8, .3, 1.1) .3s forwards;
}

.stamp::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px dashed var(--gold-deep);
    border-radius: 50%;
}

.stamp-text {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink);
    text-align: center;
    line-height: 2.1;
}

.stamp-check {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--gold-deep);
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

@keyframes stampIn {
    0% {
        transform: scale(0.4) rotate(-18deg);
        opacity: 0;
    }

    70% {
        transform: scale(1.06) rotate(-2deg);
        opacity: 1;
    }

    100% {
        transform: scale(1) rotate(-4deg);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .stamp {
        animation: none;
        opacity: 1;
        transform: scale(1) rotate(-4deg);
    }
}

/* ---------- TRUST BAR ---------- */
.trust {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--mist);
}

.trust .wrap {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 28px 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--indigo);
}

.trust-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-deep);
    flex-shrink: 0;
}

/* ---------- SERVICES ---------- */
.section-head {
    max-width: 640px;
    margin-bottom: 52px;
}

.section-head h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 600;
}

.section-head p {
    color: var(--indigo);
    margin-top: 14px;
    font-size: 16px;
}

.dossier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.dossier {
    background: var(--paper);
    padding: 34px 32px;
    position: relative;
    transition: background .2s ease;
}

.dossier:hover {
    background: #fff;
}

.dossier-num {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .1em;
    color: var(--gold-deep);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dossier-badge {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.3px solid var(--gold-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--gold-deep);
    opacity: 0;
    transform: scale(.6);
    transition: all .25s ease;
}

.dossier:hover .dossier-badge {
    opacity: 1;
    transform: scale(1);
}

.dossier h3 {
    font-size: 20px;
    margin-top: 16px;
    font-weight: 600;
}

.dossier p {
    margin-top: 10px;
    font-size: 14.5px;
    color: #454B54;
}

/* ---------- PROCESS ---------- */
.process-alt {
    background: var(--ink);
    color: #fff;
}

.process-alt .section-head h2 {
    color: #fff;
}

.process-alt .section-head p {
    color: #C7D0E4;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    counter-reset: step;
}

.step {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 20px;
}

.step .num {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--gold);
    letter-spacing: .08em;
}

.step h3 {
    color: #fff;
    font-size: 17.5px;
    margin-top: 12px;
    font-weight: 600;
}

.step p {
    color: #C7D0E4;
    font-size: 14px;
    margin-top: 8px;
}

/* ---------- ABOUT ---------- */
.about {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 56px;
    align-items: center;
}

.about-portrait {
    aspect-ratio: 4/5;
    border-radius: 4px;
    background: linear-gradient(160deg, var(--mist), #fff);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    color: var(--indigo);
    font-size: 15px;
    text-align: center;
    padding: 20px;
    overflow: hidden;
}

.about-portrait.has-photo {
    padding: 0;
}

.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--ink);
}

.about-sign {
    margin-top: 22px;
    font-family: var(--mono);
    font-size: 12.5px;
    color: var(--gold-deep);
    letter-spacing: .06em;
}

/* ---------- FAQ ---------- */
.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--serif);
    font-size: 18px;
    color: var(--ink);
    font-weight: 500;
    gap: 20px;
}

.faq-q .icon {
    font-family: var(--mono);
    font-size: 18px;
    color: var(--gold-deep);
    flex-shrink: 0;
    transition: transform .2s ease;
}

.faq-item[open] .faq-q .icon {
    transform: rotate(45deg);
}

.faq-a {
    margin-top: 14px;
    font-size: 15px;
    color: #454B54;
    max-width: 70ch;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary {
    list-style: none;
}

/* ---------- CONTACT ---------- */
.contact {
    background: var(--mist);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    text-decoration: none;
    color: var(--charcoal);
    transition: border-color .2s ease, transform .2s ease;
}

.contact-method:hover {
    border-color: var(--gold-deep);
    transform: translateX(4px);
}

.contact-method .m-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 13px;
    flex-shrink: 0;
}

.contact-method .m-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--indigo);
    font-family: var(--mono);
}

.contact-method .m-value {
    font-weight: 600;
    font-size: 15px;
    margin-top: 2px;
}

.form-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 36px;
    border-radius: 4px;
}

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-size: 12.5px;
    font-family: var(--mono);
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--indigo);
    margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--sans);
    font-size: 14.5px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: var(--paper);
    color: var(--charcoal);
}

.field textarea {
    resize: vertical;
    min-height: 90px;
}

.form-note {
    font-size: 13px;
    color: #6B7280;
    margin-top: 16px;
}

/* ---------- FOOTER ---------- */
footer {
    padding: 48px 24px 32px;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.legal {
    font-size: 12.5px;
    color: #6B7280;
    max-width: 60ch;
    line-height: 1.7;
}

.legal a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal a:hover {
    color: var(--gold-deep);
}

.footer-brand {
    font-family: var(--serif);
    font-weight: 600;
    color: var(--ink);
    font-size: 16px;
}

@media (max-width:1000px) {
    .dossier-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:860px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 40px;
    }

    .stamp-wrap {
        order: -1;
    }

    .stamp {
        width: 170px;
        height: 170px;
    }

    nav.links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--paper);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        border-bottom: 1px solid var(--line);
    }

    nav.links.open {
        display: flex;
    }

    nav.links a {
        width: 100%;
        padding: 16px 24px;
        border-top: 1px solid var(--line);
    }

    nav.links a.btn {
        margin: 16px 24px;
        width: calc(100% - 48px);
        text-align: center;
    }

    .menu-toggle {
        display: block;
    }

    .dossier-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 64px 20px;
    }
}

