:root {
    --navy: #071c48;
    --deep-navy: #04122f;
    --gold: #b88a25;
    --ivory: #f6f1e7;
    --paper: #fffdf8;
    --ink: #182238;
    --muted: #657082;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
}

a { color: inherit; }

.site-header {
    min-height: 76px;
    padding: 12px clamp(22px, 6vw, 88px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid #ded8ca;
    background: rgba(255, 253, 248, .97);
}

.gocation-mark {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
}

.gocation-mark img { width: 44px; height: auto; }

.court-link {
    border-bottom: 1px solid var(--gold);
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    padding: 8px 0;
    text-decoration: none;
}

.hero {
    min-height: 650px;
    padding: 88px clamp(24px, 7vw, 112px);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(48px, 7vw, 100px);
    align-items: center;
    overflow: hidden;
    background: var(--navy);
    color: white;
}

.eyebrow {
    margin: 0 0 17px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.hero h1,
.content-section h2,
.privacy-section h2,
.final-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.hero h1 {
    margin: 0;
    font-size: clamp(48px, 5.6vw, 82px);
    letter-spacing: -.04em;
    line-height: .98;
}

.declaration {
    margin: 24px 0;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(24px, 2.6vw, 38px);
    font-style: italic;
}

.lede {
    max-width: 650px;
    color: #dce3f0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.65;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
    padding: 15px 20px;
    background: var(--gold);
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .03em;
    text-decoration: none;
}

.primary-button:hover,
.primary-button:focus-visible { background: #d1a642; }

.primary-button span { font-size: 18px; }

.destination-note {
    margin: 12px 0 0;
    color: #aebbd0;
    font-size: 12px;
}

.courthouse {
    width: 100%;
    max-width: 650px;
    margin: auto;
    filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .3));
}

.roof {
    height: 148px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    clip-path: polygon(50% 0, 100% 84%, 100% 100%, 0 100%, 0 84%);
    border-bottom: 5px solid var(--gold);
    background: var(--ivory);
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .18em;
}

.inscription {
    padding: 15px 20px 8px;
    border-left: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    background: var(--ivory);
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(13px, 1.4vw, 19px);
    font-style: italic;
    letter-spacing: .12em;
    text-align: center;
}

.columns {
    height: 206px;
    padding: 13px 20px 0;
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 7px;
    border-left: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    background: var(--ivory);
}

.columns i {
    position: relative;
    display: block;
    margin: 7px auto 0;
    width: 60%;
    background: linear-gradient(90deg, #d2c9b8 0, var(--ivory) 30%, #fffdf8 50%, var(--ivory) 70%, #d2c9b8 100%);
    border-left: 1px solid #c6bfae;
    border-right: 1px solid #c6bfae;
}

.columns i::before,
.columns i::after {
    content: "";
    position: absolute;
    left: -30%;
    width: 160%;
    height: 8px;
    border: 1px solid #806112;
    background: var(--gold);
}

.columns i::before { top: -7px; }
.columns i::after { bottom: 0; }

.steps {
    border-top: 5px solid var(--gold);
    background: var(--ivory);
}

.steps i {
    display: block;
    height: 12px;
    margin: 0 auto;
    border: 1px solid #c6b584;
    border-top: 0;
    background: var(--ivory);
}

.steps i:nth-child(1) { width: 100%; }
.steps i:nth-child(2) { width: 106%; }
.steps i:nth-child(3) { width: 112%; }

.confidence-band {
    padding: 25px clamp(24px, 7vw, 112px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    background: var(--gold);
    color: var(--navy);
    text-align: center;
}

.confidence-band p { margin: 0; line-height: 1.5; }

.content-section,
.privacy-section,
.final-cta { padding: 100px clamp(24px, 7vw, 112px); }

.section-heading { max-width: 870px; }

.content-section h2,
.privacy-section h2,
.final-cta h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
}

.process-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #d7d0c2;
}

.process-grid article { padding: 34px; background: var(--paper); }

.process-grid article > span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
}

.process-grid h3 {
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 400;
}

.process-grid p { color: var(--muted); line-height: 1.65; }

.privacy-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(50px, 8vw, 120px);
    align-items: center;
    background: var(--ivory);
}

.privacy-card {
    padding: 30px;
    border-left: 5px solid var(--gold);
    background: var(--paper);
    box-shadow: 0 16px 45px rgba(7, 28, 72, .08);
}

.privacy-card p { margin: 8px 0; line-height: 1.55; }

.final-cta {
    background: var(--deep-navy);
    color: white;
    text-align: center;
}

.final-cta h2 { color: white; }
.final-cta > p:not(.eyebrow) { color: #c9d3e2; }

footer {
    padding: 34px clamp(24px, 7vw, 112px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    background: #020b1c;
    color: #bac5d6;
    font-size: 12px;
}

footer a { color: white; font-weight: 800; letter-spacing: .08em; text-decoration: none; }
footer p { text-align: center; }
footer em { color: var(--gold); text-align: right; }

@media (max-width: 900px) {
    .hero,
    .privacy-section { grid-template-columns: 1fr; }
    .confidence-band,
    .process-grid { grid-template-columns: 1fr; }
    .confidence-band { text-align: left; }
    .hero { padding-top: 70px; }
}

@media (max-width: 560px) {
    .site-header { min-height: 66px; }
    .gocation-mark span { font-size: 13px; }
    .hero { min-height: auto; padding: 58px 22px; gap: 54px; }
    .hero h1 { font-size: 46px; }
    .lede { font-size: 17px; }
    .columns { height: 150px; gap: 4px; padding-left: 12px; padding-right: 12px; }
    .roof { height: 110px; }
    .content-section,
    .privacy-section,
    .final-cta { padding: 68px 22px; }
    .process-grid article { padding: 28px; }
    footer { grid-template-columns: 1fr; text-align: center; }
    footer p,
    footer em { text-align: center; }
}
