:root {
    --black: #0d0c0a;
    --ink: #17140f;
    --cream: #f3ead9;
    --sand: #e8d8b9;
    --gold: #d49b25;
    --gold-dark: #a87519;
    --red: #ad452e;
    --white: #fff;
    --border: rgba(164, 116, 28, 0.45);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Arial, Helvetica, sans-serif;
    --header-height: 84px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.5;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0, 0, 0, 0);
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* Sticky header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: var(--black);
    color: var(--white);
    border-bottom: 1px solid rgba(212, 155, 37, 0.3);
}

.nav-container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
    margin-left: 32px;
    padding-left:0;
}

.brand-mark {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
}

.brand-copy strong {
    color: #d6aa4b;
    font-family: var(--serif);
    font-size: 0.9rem;
    line-height: 1.05;
    letter-spacing: 0.06em;
}

.brand-copy small {
    margin-top: 3px;
    color: #e7e0d3;
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.primary-navigation {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 42px);
}

.nav-link {
    position: relative;
    padding: 30px 0;
    color: #f2eee6;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: 23px;
    left: 0;
    height: 2px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
}

/* Hero */

.hero {
    position: relative;
    min-height: 660px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #4d4b47;
    background-image: url("../images/hero-street.jpg");
    background-position: center;
    background-size: cover;
    color: var(--white);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 7, 7, 0.93) 0%,
            rgba(10, 10, 10, 0.72) 31%,
            rgba(10, 10, 10, 0.22) 67%,
            rgba(10, 10, 10, 0.05) 100%
        ),
        linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 35%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 180px));
    margin: 0 auto;
    padding: 70px 0;
}

.hero h1 {
    max-width: 520px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(4rem, 6.2vw, 6.6rem);
    font-weight: 400;
    line-height: 0.83;
    letter-spacing: -0.055em;
}

.hero h1 span {
    color: var(--gold);
}

.hero-description {
    max-width: 390px;
    margin: 28px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border: 1px solid transparent;
    font-size: 0.67rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition:
        background-color 180ms ease,
        color 180ms ease,
        border-color 180ms ease;
}

.button-gold {
    background: var(--gold);
    color: var(--black);
}

.button-gold:hover,
.button-gold:focus-visible {
    background: #e6b243;
}

.button-outline {
    border-color: rgba(255, 255, 255, 0.75);
    color: var(--white);
}

.button-outline:hover,
.button-outline:focus-visible {
    background: var(--white);
    color: var(--black);
}

.timeline {
    position: absolute;
    z-index: 3;
    top: 150px;
    bottom: 45px;
    left: 38px;
    width: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--gold);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.timeline-line {
    position: absolute;
    top: 23px;
    bottom: 21px;
    left: 0;
    width: 1px;
    background: rgba(212, 155, 37, 0.75);
}

.timeline-line i {
    position: absolute;
    left: -4px;
    width: 9px;
    height: 9px;
    background: var(--gold);
    border-radius: 50%;
}

.timeline-line i:first-child {
    top: 26%;
}

.timeline-line i:last-child {
    top: 72%;
}

.photo-credit {
    position: absolute;
    z-index: 2;
    right: 34px;
    bottom: 28px;
    margin: 0;
    font-family: var(--serif);
    font-size: 0.72rem;
    font-style: italic;
}

/* Quick links */

.quick-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.15fr;
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.quick-card,
.visit-card {
    min-height: 245px;
    padding: 36px clamp(28px, 4vw, 62px);
}

.quick-card {
    border-right: 1px solid var(--border);
}

.card-icon {
    color: var(--gold-dark);
    font-size: 1.1rem;
}

.quick-card h2 {
    margin: 13px 0;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 2.4vw, 2.6rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.035em;
}

.quick-card p {
    max-width: 240px;
    margin: 0 0 24px;
    font-size: 0.79rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-dark);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.text-link span {
    font-size: 1rem;
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.visit-card dl,
.visit-card dd {
    margin: 0;
}

.visit-card dl > div {
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
}

.visit-card dt {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.visit-card dd {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Archive feature */

.feature {
    display: grid;
    min-height: 540px;
    grid-template-columns: 41% 59%;
    background: #f4ebdb;
}

.feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px max(45px, 8vw);
}

.feature-copy h2 {
    margin: 0 0 16px;
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -0.05em;
}

.feature-copy h2 span {
    color: var(--gold);
}

.feature-copy h3 {
    margin: 0 0 15px;
    font-size: 0.79rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.feature-copy > p:not(.eyebrow) {
    max-width: 350px;
    margin: 0 0 25px;
    font-size: 0.9rem;
}

.feature-image {
    position: relative;
    min-height: 540px;
    margin: 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, #827765, #d4c39f);
}

.feature-image img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    filter: sepia(0.45) contrast(0.92);
}

.feature-image figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 11px 16px;
    background: rgba(0, 0, 0, 0.82);
    color: var(--white);
    font-family: var(--serif);
    font-size: 0.72rem;
    font-style: italic;
}

/* Statistics */

.statistics {
    display: grid;
    min-height: 310px;
    padding: 70px max(45px, 5vw);
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 60px;
    background: var(--sand);
    border-top: 1px solid var(--border);
}

.statistics-heading h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4.2vw, 4.8rem);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: -0.045em;
}

.statistics-heading h2 span {
    color: var(--gold);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.statistics-grid > div {
    padding: 0 22px;
    border-left: 1px solid var(--border);
}

.statistics-grid strong {
    display: block;
    color: var(--red);
    font-family: var(--serif);
    font-size: clamp(2.6rem, 4vw, 4.6rem);
    font-weight: 400;
    line-height: 1;
}

.statistics-grid span {
    display: block;
    margin-top: 8px;
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-transform: uppercase;
}

/* Membership */

.membership {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    background-color: #4d4d48;
    background-image: url("../images/membership-station.jpg");
    background-position: center;
    background-size: cover;
    color: var(--white);
}

.membership-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15, 15, 15, 0.88),
        rgba(15, 15, 15, 0.45)
    );
}

.membership-content {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 96px));
    margin: 0;
    margin-left: max(45px, 5vw);
}


.membership-content h2 {
    max-width: 710px;
    margin: 0 0 30px;
    font-family: var(--serif);
    font-size: clamp(3rem, 5.2vw, 5.7rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.045em;
}


.membership-content .button {
    margin-left: 0;
}


/* Footer */

.site-footer {
    padding: 58px max(45px, 5vw) 24px;
    background: var(--black);
    color: #e9e3da;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 0.75fr);
    gap: 60px;
}

.footer-intro h2 {
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 400;
    line-height: 1;
}

.footer-grid h3 {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-grid a,
.footer-grid address,
.footer-grid p:not(.eyebrow) {
    display: block;
    margin: 0 0 8px;
    color: #dfdbd2;
    font-size: 0.76rem;
    font-style: normal;
}

.footer-intro > a {
    color: var(--gold-dark);
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.footer-grid a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 55px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    font-size: 0.65rem;
}

/* Responsive */

@media (max-width: 1050px) {
    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .primary-navigation {
        position: absolute;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: none;
        padding: 20px 24px 28px;
        background: var(--black);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
    }

    .primary-navigation.is-open {
        display: grid;
    }

    .nav-link {
        padding: 12px 0;
    }

    .nav-link::after {
        bottom: 7px;
    }

    .quick-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-card,
    .visit-card {
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .statistics {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 74px;
    }

@media (max-width: 760px) {
.nav-container {
        width: 100%;
        height: 100%;
        padding: 0 18px;
    }

    .brand {
        margin-left: 12px;
        padding-left: 0;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .brand-copy strong {
        font-size: 0.76rem;
    }

    .brand-copy small {
        font-size: 0.46rem;
    }
}

    .hero {
        min-height: 650px;
        background-position: 62% center;
    }

    .hero-shade {
        background: rgba(5, 5, 5, 0.69);
    }


:root {
    --black: #0c0c0b;
    --cream: #f1e8d8;
    --gold: #b48a2b;
    --light-gold: #ddcba9;
    --white: #fffdf8;
    --text: #20201e;
    --max-width: 1640px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

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

.site-header {
    height: 88px;
    padding: 0 4.5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--black);
    color: var(--white);
    border-bottom: 1px solid rgba(221, 203, 169, 0.25);
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 18px;
}

.brand-name {
    color: var(--white);
    font-family: Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1.4px;
    line-height: 1.05;
}

.brand-location {
    margin-top: 3px;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.main-nav {
    display: flex;
    gap: clamp(24px, 3vw, 54px);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav a:hover,
.footer-links a:hover {
    color: var(--gold);
}

.hero {
    min-height: 414px;
    padding: 56px 7.6vw;
    display: flex;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88),
            rgba(0, 0, 0, 0.55)
        ),
        url("image.png") center center / cover no-repeat;
}

.hero-content {
    max-width: 650px;
}

.breadcrumbs {
    margin-bottom: 44px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

h1,
h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
}

h1 {
    max-width: 500px;
    color: var(--white);
    font-size: clamp(58px, 6vw, 86px);
    line-height: 0.88;
    letter-spacing: -3px;
}

.hero-description {
    max-width: 530px;
    margin: 24px 0 0;
    font-size: 16px;
    line-height: 1.55;
}

.content-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 98px 8.4vw 125px;
}

.research-grid {
    display: grid;
    grid-template-columns: minmax(180px, 27%) 1fr;
    gap: 7.5vw;
}

.contact-card {
    padding-top: 15px;
    border-top: 2px solid var(--light-gold);
    font-size: 14px;
}

.contact-title {
    margin-bottom: 14px;
    color: #90702d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-card p {
    margin: 0 0 18px;
}

.phone {
    color: #997529;
    font-weight: 700;
}

.records h2,
.assistance h2 {
    font-size: clamp(42px, 4vw, 55px);
    line-height: 1;
    letter-spacing: -2px;
}

.record-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    margin-top: 18px;
}

.record-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.record-list li {
    padding: 13px 0;
    border-top: 1px solid var(--light-gold);
    font-size: 14px;
    line-height: 1.45;
}

.assistance {
    max-width: 740px;
    margin: 48px 0 0 auto;
    padding-top: 26px;
    border-top: 1px solid var(--light-gold);
}

.assistance p {
    margin: 18px 0 0;
    font-size: 15px;
}

.site-footer {
    padding: 62px 4.5vw 25px;
    background: var(--black);
    color: var(--white);
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-eyebrow {
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.footer-heading {
    margin: 0 0 18px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1;
    font-weight: 500;
}

.footer-contact {
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.footer-column h3 {
    margin: 0 0 15px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 8px;
    color: #eee9df;
    font-size: 14px;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 58px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: #e9e3d9;
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 850px) {
    .site-header {
        height: auto;
        min-height: 88px;
        padding: 20px 6vw;
        align-items: flex-start;
        gap: 20px;
    }

    .main-nav {
        display: none;
    }

    .hero {
        min-height: 450px;
        padding: 52px 7vw;
    }

    .research-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .assistance {
        margin-left: 0;
    }

    .content-section {
        padding: 70px 7vw 85px;
    }
}

@media (max-width: 560px) {
    .brand-name {
        font-size: 14px;
    }

    .brand-location {
        font-size: 8px;
    }

    h1 {
        font-size: 54px;
        letter-spacing: -2px;
    }

    .record-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .site-footer {
        padding: 50px 7vw 24px;
    }
}
