:root {
    --brand-primary: #071725;
    --brand-secondary: #c99a38;
    --ink: #151b22;
    --muted: #6f756f;
    --line: #e7dfd2;
    --surface: #fffdf8;
    --ivory: #f7f1e6;
    --sand: #eadcc6;
    --navy: #071725;
    --navy-soft: #0d2437;
    --gold: #c99a38;
    --hero-image: none;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--surface);
}

::selection {
    color: #fff;
    background: var(--brand-secondary);
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(230px, 1fr) auto auto;
    align-items: center;
    gap: 24px;
    padding: 14px clamp(18px, 5vw, 74px);
    color: #fff;
    background: rgba(7, 23, 37, .94);
    border-bottom: 1px solid rgba(201, 154, 56, .22);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    text-decoration: none;
}

.brand-logo {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    object-fit: contain;
    border: 1px solid rgba(201, 154, 56, .38);
    border-radius: 6px;
    padding: 5px;
    background: #fff;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.05;
}

.brand small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
}

.site-nav {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.public-actions {
    display: inline-flex;
    align-items: center;
}

.site-nav a {
    position: relative;
    padding: 11px 12px;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    font-weight: 700;
}

.site-nav a::after {
    position: absolute;
    right: 12px;
    bottom: 5px;
    left: 12px;
    height: 1px;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    background: var(--brand-secondary);
    transition: transform .2s ease;
}

.site-nav a:hover {
    color: #fff;
}

.site-nav a:hover::after {
    transform: scaleX(1);
}

.header-action,
.primary-action,
.secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
}

.header-action,
.primary-action {
    color: #111720;
    background: linear-gradient(135deg, #f1d08b, var(--brand-secondary));
}

.secondary-action {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .08);
}

.hero {
    min-height: min(760px, calc(100svh - 72px));
    display: grid;
    align-items: end;
    padding: 112px clamp(20px, 6vw, 92px) 76px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(7, 23, 37, .96), rgba(7, 23, 37, .72) 44%, rgba(7, 23, 37, .24)),
        linear-gradient(0deg, rgba(7, 23, 37, .42), rgba(7, 23, 37, .1)),
        var(--hero-image) center / cover no-repeat;
}

.hero-copy {
    max-width: 820px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-secondary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 1px;
    content: "";
    background: currentColor;
}

.hero h1 {
    margin: 16px 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 9vw, 118px);
    line-height: .92;
    letter-spacing: 0;
}

.hero-slogan {
    margin: 0;
    color: #f6d99d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.2;
}

.hero-text {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.signature-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
}

.signature-band div {
    min-height: 150px;
    padding: 28px clamp(18px, 4vw, 54px);
    border-right: 1px solid var(--line);
}

.signature-band div:last-child {
    border-right: 0;
}

.signature-band span {
    display: block;
    color: var(--brand-secondary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.signature-band strong {
    display: block;
    margin-top: 12px;
    color: var(--navy);
    font-size: 18px;
}

.signature-band small {
    display: block;
    max-width: 330px;
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.section,
.editorial-section,
.dark-section {
    padding: 86px clamp(20px, 6vw, 92px);
}

.editorial-section {
    display: grid;
    grid-template-columns: minmax(310px, .82fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
    background: #fff;
}

.section-media {
    min-height: 520px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(7, 23, 37, .04), rgba(7, 23, 37, .36)),
        var(--hero-image) 68% center / cover no-repeat;
    box-shadow: 0 24px 70px rgba(7, 23, 37, .14);
}

.section-copy {
    max-width: 680px;
}

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

.section-heading h2,
.section-copy h2,
.dark-section h2,
.contact-copy h2 {
    margin: 14px 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: 0;
}

.section-heading p,
.section-copy p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.mini-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.mini-list div {
    display: grid;
    grid-template-columns: 138px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.mini-list strong {
    color: var(--navy);
}

.mini-list span {
    color: var(--muted);
    line-height: 1.55;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 38px;
}

.service-card {
    min-height: 294px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(7, 23, 37, .07);
}

.service-index {
    color: var(--brand-secondary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    line-height: 1;
}

.service-card h3 {
    margin: auto 0 10px;
    color: var(--navy);
    font-size: 23px;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.dark-section {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 64px);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(7, 23, 37, .98), rgba(13, 36, 55, .96)),
        var(--hero-image) center / cover no-repeat;
}

.dark-section h2 {
    max-width: 620px;
}

.dark-grid {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .16);
}

.dark-grid article {
    padding: 24px;
    background: rgba(255, 255, 255, .07);
}

.dark-grid strong {
    display: block;
    color: #f6d99d;
    font-size: 18px;
}

.dark-grid p {
    margin: 9px 0 0;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
}

.site-footer {
    color: #fff;
    background: #050f19;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(360px, .72fr);
    gap: clamp(28px, 5vw, 70px);
    padding: 86px clamp(20px, 6vw, 92px);
}

.footer-logo {
    width: min(260px, 70vw);
    height: auto;
    margin-bottom: 26px;
    border-radius: 6px;
    background: #fff;
    padding: 12px;
}

.contact-copy p {
    max-width: 560px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.7;
}

address {
    margin-top: 28px;
    font-style: normal;
}

address strong,
address span {
    display: block;
}

address span {
    margin-top: 6px;
    color: rgba(255, 255, 255, .72);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-self: start;
    padding: 24px;
    border: 1px solid rgba(201, 154, 56, .24);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: rgba(255, 255, 255, .82);
    font-weight: 800;
}

.contact-form .field-wide,
.public-flash {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px;
    padding: 13px;
    color: #fff;
    font: inherit;
    background: rgba(255, 255, 255, .08);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(201, 154, 56, .2);
    border-color: var(--brand-secondary);
}

.contact-form button {
    grid-column: 1 / -1;
    min-height: 48px;
    border: 0;
    border-radius: 6px;
    color: #101820;
    background: linear-gradient(135deg, #f1d08b, var(--brand-secondary));
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.public-flash {
    padding: 12px;
    border-radius: 6px;
    color: #102017;
    background: #f6e4b9;
    font-weight: 800;
}

@media (max-width: 1040px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .site-nav {
        grid-column: 1 / -1;
        flex-wrap: wrap;
    }

    .signature-band,
    .editorial-section,
    .service-grid,
    .dark-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .section-media {
        min-height: 380px;
    }
}

@media (max-width: 680px) {
    .site-header {
        grid-template-columns: 1fr;
    }

    .brand-logo {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .site-nav,
    .public-actions,
    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .site-nav a,
    .header-action,
    .primary-action,
    .secondary-action {
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding-top: 82px;
        padding-bottom: 58px;
    }

    .signature-band div {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .mini-list div,
    .contact-form {
        grid-template-columns: 1fr;
    }
}
