/* ============================================================
   LIU-CISSÉ HOLDINGS — STYLESHEET
   ============================================================ */

/* ------------------------------------------------------------
   1. CUSTOM PROPERTIES
   ------------------------------------------------------------ */
:root {
    /* Palette — warm parchment editorial */
    --black: #071f18;
    --charcoal: #12372c;
    --navy: #162f4b;
    --burgundy: #4a1e1e;
    --burgundy-mid: #6c2c2b;
    --forest: #071f18;
    --forest-mid: #1d4b3a;
    --ivory: #fbf5ea;
    --ivory-dim: #e7dcc6;
    --gold: #b88a35;
    --gold-dim: #a07828;
    --gold-pale: #ead9a6;
    --copper: #a15b35;
    --white: #fbf5ea;
    --teal:#2e6f66;
    --gold-gradient: linear-gradient(
        105deg,
        #7a5c1e 0%,
        #b8860b 18%,
        #e8c84a 32%,
        #fdf0a0 42%,
        #f5d769 50%,
        #c8960c 62%,
        #a87020 75%,
        #d4a832 88%,
        #8a6318 100%
    );

    /* Typography */
    --serif: 'Cormorant Garamond', 'Georgia', serif;
    --sans: 'Libre Franklin', -apple-system, 'Helvetica Neue', sans-serif;

    

    /* Spacing scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 9rem;

    /* Section padding */
    --section-pad: 6rem 0;

    /* Nav height */
    --nav-h: 70px;

    /* Max content width */
    --max-w: 1200px;
    --max-w-text: 760px;
}

/* ------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--forest);
    background: #f3eadc;
    line-height: 1.75;
    overflow-x: hidden;
}

/* Subtle parchment ambient glow */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 8% 0%, rgba(184, 138, 53, .18), transparent 42%),
        radial-gradient(ellipse at 88% 10%, rgba(46, 111, 102, .12), transparent 36%),
        radial-gradient(ellipse at 8% 92%, rgba(108, 44, 43, .10), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, .16), transparent 32%);
}

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

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

ul {
    list-style: none;
}

.text-center {
    text-align: center;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mt-1 {
    margin-top: 1rem;
}

/* ------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------ */
.t-eyebrow {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.t-display {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: var(--forest);
}

.t-display-sm {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--forest);
}

.t-heading {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--forest);
}

.t-body {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #6d6254;
}

.t-quote {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.45;
    color: var(--forest);
}

/* ------------------------------------------------------------
   4. LAYOUT UTILITIES
   ------------------------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.container--text {
    max-width: var(--max-w-text);
}

.section {
    padding: var(--section-pad);
}

.section--charcoal {
    background: #f3eadc;
}

.section--navy {
    background: var(--navy);
}

.section--burgundy {
    background: var(--burgundy);
}

.section--forest {
    background: var(--forest);
}

.section--ivory {
    background: var(--ivory);
    color: var(--forest);
}

.divider-gold {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 1.5rem 0;
}

.divider-gold--center {
    margin: 1.5rem auto;
}

/* ------------------------------------------------------------
   5. NAV
   ------------------------------------------------------------ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background 0.4s ease, border-bottom 0.4s ease;
    background: rgba(243, 234, 220, .92);
    border-bottom: 1px solid rgba(184, 138, 53, .25);
}

.nav.scrolled {
    background: rgba(243, 234, 220, .97);
    border-bottom: 1px solid rgba(184, 138, 53, .34);
    backdrop-filter: blur(12px);
}

.nav__inner {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__wordmark {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav__wordmark-text {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--forest);
    text-transform: uppercase;
}

.nav__wordmark svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.nav-logo {
    width: 30px;
    height: 30px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav__links a {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--charcoal);
    transition: color 0.2s;
}

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

.nav__cta {
    font-family: var(--sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest) !important;
    background: var(--ivory);
    padding: 0.6rem 1.4rem;
    transition: background 0.5s, color 0.5s !important;
    border: 1px solid var(--gold);
}

.nav__cta:hover {
    background: var(--forest) !important;
    color: var(--ivory) !important;
    border: 1px solid var(--forest);
}

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--forest);
    transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.nav__drawer {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(243, 234, 220, .99);
    border-bottom: 1px solid rgba(184, 138, 53, .25);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 999;
}

.nav__drawer.open {
    display: flex;
}

.nav__drawer a {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--charcoal);
    transition: color 0.2s;
}

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

.nav__drawer .nav__cta {
    align-self: flex-start;
}

/* ------------------------------------------------------------
   6. HERO
   ------------------------------------------------------------ */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--ivory), #efe4d3);
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
}

/* Video add */
/* .hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
}

.hero__video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
} */
/* To here */

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.hero__inner {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-md);
    padding-right: 2rem;
    padding-left: 2rem;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
}

/* and hero inner below */
/* .hero__inner {
    position: relative;
    z-index: 1;
    padding-top: var(--space-xl);
    padding-bottom: var(--space-md);
    padding-right: 2rem;
    padding-left: 2rem;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
} */

.headline_font_typograph {
    font-style: italic;
    color: var(--teal)
}

.hero .t-display {
    color: var(--forest);
}

.hero__eyebrow {
    margin-top: -3rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.hero__headline {
    max-width: 820px;
    margin: 0 auto 1.75rem;
}

.hero__subhead {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: var(--gold);
    font-weight: 400;
    line-height: 1.75;
    opacity: 0.75;
}

.hero__subhead-highlight {
    font-weight: 800;
}

.hero__scroll-hint {
    display: inline-flex;
    align-items: center;
    margin-left: -.15em;
    height: 0.75em;
    vertical-align: middle;
}

.hero__scroll-hint span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--forest);
}

.hero__scroll-line {
    display: block;
    width: 1px;
    height: 100%;
    background: var(--gold-dim);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(0.6);
    }
}

/* ------------------------------------------------------------
   7. VALUES BAR
   ------------------------------------------------------------ */
.values {
    background: var(--forest);
    /* border: solid 1px var(--gold); */
    padding: var(--space-md) 0;
    /* margin: var(--space-xs); */
}

.values .t-eyebrow {
    margin-top: -0.5rem;
    /* margin-bottom: 0.5rem; */
    letter-spacing: 0.3rem;
    opacity: 0.9;
    color: var(--gold);
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto 1fr;
    gap: 0;
    align-items: stretch;
}

.values__square-title {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1rem;
}


.values__item {
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    justify-items: center;
    gap: 0;
}

.values__item+.values__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(184,138,53,.35);
}

.values__item .services__card-title {
    font-family: var(--serif);
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    font-weight: 500;
    color: var(--ivory);
    letter-spacing: 0.02em;
    line-height: 1.3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding-bottom: 1.75rem;
    align-self: end;
}

.values__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    color: var(--gold);
    stroke-width: 1.25;
    align-self: start;
}

.values__label {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.values__desc {
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(251,245,234,.65);
    line-height: 1.8;
    max-width: 220px;
    margin: 0 auto;
    align-self: end;
}

/* ------------------------------------------------------------
   8. THE WORK (SYSTEMS THESIS)
   ------------------------------------------------------------ */
.work {
    background: #f3eadc;
    
}

.work__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.work__left {
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
}

.work__right p+p {
    margin-top: 1.25rem;
}

.work__thesis {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-style: italic;
    color: var(--forest);
    margin-top: 2rem;
    line-height: 1.6;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
}

.work__sovereignty {
    margin-top: 2rem;
    border: 1px solid rgba(184,138,53,.34);
    background: rgba(251,245,234,.56);
    padding: 2rem;
    box-shadow: 0 24px 70px rgba(7,31,24,.06);
}

.work__sovereignty h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.75rem;
}

.work__sovereignty p {
    font-size: 0.9rem;
    color: #6d6254;
    line-height: 1.75;
}



/* ------------------------------------------------------------
   10. GLOBAL MAP
   ------------------------------------------------------------ */
.map-section {
    background: var(--navy);
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.map-header {
    color: var(--gold)
}

.map-section__subtitle {
    font-size: 0.9rem;
    color: var(--ivory-dim);
    margin-top: 0.1rem;
    letter-spacing: 0.05em;
}

.map-wrap {
    max-width: 860px;
    margin: 0 auto;
}

/* ------------------------------------------------------------
   11. FOUNDER
   ------------------------------------------------------------ */
.founder {
    background: var(--ivory);
}

.founder.section--charcoal {
    background: var(--ivory);
}

.founder__inner {
    max-width: var(--max-w-text);
    margin: 0 auto;
}

.founder .t-eyebrow {
    color: var(--gold-dim);
}

.founder .divider-gold {
    background: var(--gold-dim);
}

.founder__name {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.founder__title {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: var(--copper);
    text-transform: uppercase;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.founder__bio p+p {
    margin-top: 1.25rem;
}

.founder__bio .t-body {
    font-size: 0.8rem;
    line-height: 1.75;
    color: rgba(7, 31, 24, .8);
}

.founder__credentials {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 138, 53, .35);
    font-size: 0.85rem;
    color: var(--forest);
    line-height: 2;
}

.founder__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.founder__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--copper);
    border-bottom: 1px solid rgba(184, 138, 53, .35);
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
}

.founder__link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.founder__link svg {
    width: 16px;
    height: 16px;
}

/* ------------------------------------------------------------
   12. QUOTE BLOCK
   ------------------------------------------------------------ */
.quote-block {
    background: var(--forest);
    padding: 3rem 0;
}

.quote-block__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.quote-block__img {
    width: auto;
    margin: 0 auto;
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    object-position: center top;
    filter: brightness(0.88) contrast(1.05);
}

.t-quote {
    font-family: var(--serif);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 400;
    font-style: italic;
    color: var(--ivory);
}

.quote-block__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quote-block__mark {
    font-family: var(--serif);
    font-size: 3rem;
    line-height: 0.3;
    color: var(--gold);
    opacity: 0.4;
}

.quote-block__mark-end {
    font-family: var(--serif);
    font-size: 3rem;
    line-height: 0.3;
    color: var(--gold);
    opacity: 0.4;
    padding-top: 1rem;
}

.quote-block__sig {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold);
}

.quote-block__mark__end {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold);
}


/* ------------------------------------------------------------
   14b. PRIMER
   ------------------------------------------------------------ */
.primer {
    background: #e7dcc6;
}

.primer-card {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 54px;
    align-items: center;
    border: 1px solid rgba(184,138,53,.34);
    background: rgba(251,245,234,.55);
    padding: 48px;
    box-shadow: 0 30px 90px rgba(7,31,24,.08);
}

.doc-cover {
    height: 440px;
    background: linear-gradient(145deg, #071f18, #162f4b 56%, #6c2c2b);
    color: #fbf5ea;
    padding: 38px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 32px 80px rgba(7,31,24,.18);
}

.doc-cover::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(213,181,101,.46);
    pointer-events: none;
}

.doc-cover > * {
    position: relative;
    z-index: 1;
}

.doc-small {
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-pale);
    font-weight: 600;
    margin-bottom: 24px;
}

.doc-title {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: #fbf5ea;
}

.doc-bottom {
    font-size: 0.9rem;
    color: rgba(251,245,234,.76);
    line-height: 1.6;
}

.primer-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
}

@media (max-width: 900px) {
    .primer-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .doc-cover {
        height: 360px;
        order: 2;
    }
    .primer-text {
        order: 1;
    }
}
/* ------------------------------------------------------------
   15. CTA SECTION
   ------------------------------------------------------------ */
.cta-section {
    background: var(--ivory-dim);
    text-align: center;
    padding: var(--space-xl) 0;
}

.cta-section__inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-section__headline {
    margin-bottom: 1.25rem;
    color: var(--forest);
}

.cta-section__sub {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    color: #6d6254;
    margin-bottom: 2.5rem;
}

.cta-btn {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--forest);
    background: var(--ivory);
    padding: 1.1rem 3rem;
    border: 1px solid var(--forest);
    transition: background 0.25s;
}

.cta-btn:hover {
    background: var(--forest);
    color: var(--ivory);
}

.cta-btn-2nd {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--forest-mid);
    padding: 1.1rem 3rem;
    border: 1px solid var(--forest);
    transition: background 0.25s;

}

.cta-btn-2nd:hover {
    background: var(--teal);
    color: var(--ivory);
    border: 1px solid var(--teal);
}

.cta-btn-cta-section {
    display: inline-block;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ivory);
    background: var(--forest);
    padding: 1.1rem 3rem;
    border: 1px solid var(--forest);
    transition: background 0.25s;
}

.cta-btn-cta-section:hover {
    background: var(--teal);
    color: var(--ivory);
    border: 1px solid var(--teal);
}

.hero__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-top: 2rem;
}

/* ------------------------------------------------------------
   16. FOOTER
   ------------------------------------------------------------ */
.footer {
    background: var(--forest);
    padding: 3rem 0;
    border-top: 1px solid rgba(184, 138, 53, .3);
}

.footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer__wordmark {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer__wordmark svg {
    width: 28px;
    height: 28px;
}

.footer__wordmark-text {
    font-family: var(--serif);
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-pale);
}

.footer__copy {
    font-size: 0.75rem;
    color: rgba(251, 245, 234, .52);
    letter-spacing: 0.05em;
}

.footer__email {
    font-size: 0.75rem;
    color: rgba(251, 245, 234, .74);
    letter-spacing: 0.06em;
    transition: color 0.2s;
}

.footer__legal {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(251, 245, 234, .52);
}

.footer__legal a,
.footer__legal span {
    color: rgba(251, 245, 234, .52);
    transition: color 0.2s;
}

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

.footer__email:hover {
    color: var(--gold);
}

/* ------------------------------------------------------------
   17. MODAL
   ------------------------------------------------------------ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 31, 24, .75);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.open {
    display: flex;
}

.modal__box {
    background: var(--ivory);
    border: 1px solid rgba(184, 138, 53, .2);
    max-width: 600px;
    width: 100%;
    padding: 3rem;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: #6d6254;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.modal__close:hover {
    color: var(--gold);
}

.modal__title {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 1.5rem;
}

.modal__body p {
    font-size: 0.9rem;
    color: #6d6254;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.modal__body a {
    color: var(--gold);
}

/* ------------------------------------------------------------
   18. RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 900px) {
    .nav__links {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

    .nav__drawer {
        display: none;
    }

    .nav__drawer.open {
        display: flex;
    }

    .work__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .work__left {
        position: static;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .quote-block__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .quote-block__content .divider-gold {
        margin-left: auto;
    }

    .quote-block__content {
        text-align: right;
    }

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

    .newsletter__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .newsletter__divider {
        display: none;
    }

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

    .values__item+.values__item::before {
        display: none;
    }

    .values__item:nth-child(odd)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: rgba(184, 138, 53, .25);
    }
}

@media (max-width: 600px) {
    :root {
        --section-pad: 4rem 0;
    }

    .hero__actions {
        flex-direction: column;
        align-items: start;
        
    }

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

    .values__item:nth-child(odd)::after {
        display: none;
    }

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

    .newsletter__form {
        flex-direction: column;
    }

    .newsletter__input {
        border-right: 1px solid rgba(184, 138, 53, .25);
        border-bottom: none;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }
}