/* ══════════════════════════════════════════════════════
   MARCUS BRIGGS PRESS OFFICE — MASTER STYLESHEET
   marcus-briggs.org
══════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════
   GLOBAL RESET & BASE
══════════════════════════════════════════════════════ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #5a2024;
    color: #f0e8d8;
    min-height: 100vh;
}

a, a:visited {
    color: #C9A84C;
    text-decoration: none;
}

a:hover {
    opacity: 0.75;
}


/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-bar {
    background: #0a0a0a;
    border-radius: 0 0 40px 40px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;
}

.top-bar-nav {
    display: flex;
    gap: 36px;
    list-style: none;
}

.top-bar-nav a {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f0e8d8;
    text-decoration: none;
    opacity: 0.85;
}

.top-bar-nav a:hover {
    color: #C9A84C;
    opacity: 1;
}

/* ══════════════════════════════════════════════════════
   HOMEPAGE — PRESS ROOM INDEX
══════════════════════════════════════════════════════ */

/* HERO
   ---------------------------------------------------------- */
.hero {
    width: 100%;
    height: 450px;
    background: url('press-release-hero.webp') center/cover no-repeat;
    position: relative;
    overflow: hidden;
    border-top: 2px solid #C9A84C;
    border-bottom: 2px solid #C9A84C;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent, #5a2024);
}
.hero-home h1 {
    position: absolute;
    top: 18%;
    left: 5%;
    font-size: 44px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,1), 0 0 30px rgba(0,0,0,0.9), 2px 2px 0px rgba(0,0,0,0.8);
    z-index: 2;
    font-family: 'Franklin Gothic Heavy', 'Franklin Gothic Medium', Arial Black, sans-serif;
    white-space: nowrap;
}

/* FLOATING PRESS TEXT OVERLAY
   ---------------------------------------------------------- */
.f {
    position: absolute;
    pointer-events: none;
    line-height: 1.6;
    white-space: nowrap;
}

/* SECTION HEADER
   ---------------------------------------------------------- */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.section-header h2 {
    font-size: 2rem;
    font-weight: 300;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px 20px;
}

/* FILTER TABS
   ---------------------------------------------------------- */
.tabs {
    background-color: #000;
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 0.9rem;
    margin-bottom: 2px;
}
.tabs span {
    cursor: pointer;
    opacity: 0.8;
    font-family: 'Trebuchet MS', sans-serif;
}
.tabs .active { opacity: 1; }

.tabs span.active { cursor: default; }

.tabs a, .tabs a:visited { color: inherit; text-decoration: none; }
.tabs a:hover span { color: #C9A84C; }

/* SUB-BAR
   ---------------------------------------------------------- */
.sub-bar {
    background-color: #888;
    text-align: center;
    padding: 8px;
    font-size: 0.8rem;
    margin-bottom: 30px;
    font-family: 'Trebuchet MS', sans-serif;
    letter-spacing: 0.1em;
}
.sub-bar a { color: inherit; text-decoration: none; }
.sub-bar a:hover { color: #C9A84C; }

/* PRESS RELEASE CARD GRID
   ---------------------------------------------------------- */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 50px;
}
.card {
    background-color: #7a464a;
    height: 140px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}
.card:hover { background-color: #8a5659; }
.card-country {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C9A84C;
    padding: 6px 14px;
}
.card-body {
    padding: 12px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-title {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.4;
    color: #fff;
    font-family: Georgia, serif;
}
.card-date {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}

/* DIVIDER ABOVE PULL QUOTE
   ---------------------------------------------------------- */
.footer-line {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 10px 0 30px;
}

/* PULL QUOTE
   ---------------------------------------------------------- */
.pull-quote {
    text-align: center;
    padding: 40px 60px 0px;
}
.pull-quote-bar {
    width: 40px;
    height: 3px;
    background: #C9A84C;
    margin: 0 auto 28px;
}
.pull-quote blockquote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.35rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    margin: 0 0 22px;
}
.pull-quote-attr {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
}
.pull-quote-attr span {
    color: rgba(255,255,255,0.35);
    display: block;
    margin-top: 4px;
    letter-spacing: 0.15em;
}




/* ══════════════════════════════════════════════════════
   SITE FOOTER (TEMPLATE ALL PAGES)
══════════════════════════════════════════════════════ */

.site-footer {
    background: #0a0a0a;
    border-radius: 40px 40px 0 0;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 52px 60px 32px;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-title {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 12px;
}

.footer-divider {
    border: none;
    border-top: 1px solid #222;
    margin-bottom: 18px;
}

.footer-blurb {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 12px;
    line-height: 1.7;
    color: #f0e8d8;
    opacity: 0.45;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: #f0e8d8;
    text-decoration: none;
    opacity: 0.55;
    transition: opacity 0.15s, color 0.15s;
}

.footer-links a:hover {
    color: #C9A84C;
    opacity: 1;
}

.footer-links--contact {
    margin-top: 14px;
}

.footer-bottom-divider {
    border: none;
    border-top: 1px solid #1a1a1a;
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand,
.footer-copy {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f0e8d8;
    opacity: 0.25;
}




/* ══════════════════════════════════════════════════════
   COUNTRY PAGE (TEMPLATE 1)
══════════════════════════════════════════════════════ */

.hero {
    position: relative;
    height: 450px;
    border-top: 2px solid #C9A84C;
    border-bottom: 2px solid #C9A84C;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #5a2024);
}

.hero-title {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    font-family: 'Franklin Gothic Heavy', 'Franklin Gothic Medium', 'Arial Black', sans-serif;
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    white-space: nowrap;
    text-shadow: 0 2px 8px rgba(0,0,0,1), 0 0 30px rgba(0,0,0,0.9), 2px 2px 0px rgba(0,0,0,0.8);
}

.page-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.article-body p {
    font-size: 17px;
    line-height: 1.8;
    color: #f0e8d8;
    margin-bottom: 24px;
}

.article-body p:first-child::first-letter {
    font-family: 'Franklin Gothic Heavy', 'Franklin Gothic Medium', 'Arial Black', sans-serif;
    font-size: 64px;
    line-height: 0.8;
    float: left;
    margin: 6px 10px 0 0;
    color: #C9A84C;
}

.article-body blockquote {
    border-left: 3px solid #C9A84C;
    margin: 36px 0;
    padding: 16px 28px;
    background: rgba(201,168,76,0.06);
}

.article-body blockquote p {
    font-family: 'Franklin Gothic Heavy', 'Franklin Gothic Medium', 'Arial Black', sans-serif;
    font-size: 19px;
    line-height: 1.5;
    color: #C9A84C;
    font-style: normal;
    margin: 0;
}

.article-body blockquote p::first-letter {
    font-size: inherit;
    line-height: inherit;
    float: none;
    margin: 0;
    color: #C9A84C;
}

.article-body blockquote cite {
    display: block;
    margin-top: 10px;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f0e8d8;
    opacity: 0.6;
    font-style: normal;
}

.read-more-wrap {
    margin-top: 52px;
    border-top: 1px solid rgba(201,168,76,0.3);
    padding-top: 36px;
    text-align: center;
}

.read-more-wrap a {
    font-family: 'Franklin Gothic Heavy', 'Franklin Gothic Medium', 'Arial Black', sans-serif;
    font-size: 16px;
    color: #C9A84C;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.read-more-wrap a:hover { opacity: 0.7; }
.read-more-wrap a::after { content: ' →'; }


/* ══════════════════════════════════════════════════════
   PRESS RELEASE INDEX PAGE (TEMPLATE 2)
══════════════════════════════════════════════════════ */

.index-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.index-country-heading {
    font-family: 'Franklin Gothic Heavy', 'Franklin Gothic Medium', 'Arial Black', sans-serif;
    font-size: 64px;
    line-height: 1;
    color: #C9A84C;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
}

.index-gold-rule {
    border: none;
    border-top: 2px solid #C9A84C;
    margin-bottom: 48px;
    opacity: 0.5;
}

.index-intro {
    font-size: 16px;
    line-height: 1.75;
    color: #d8c8b0;
    margin-bottom: 48px;
    max-width: 720px;
}

.index-intro p {
    margin-bottom: 18px;
}

.index-pr-list {
    display: flex;
    flex-direction: column;
}

.index-pr-item {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: start;
    gap: 0 20px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(201,168,76,0.18);
    text-decoration: none;
    color: #f0e8d8;
    transition: background 0.18s;
}

.index-pr-item:first-child {
    border-top: 1px solid rgba(201,168,76,0.18);
}

.index-pr-item:hover {
    background: rgba(255,255,255,0.03);
}

.index-pr-item:hover .index-pr-arrow {
    color: #C9A84C;
    transform: translateX(4px);
}

.index-pr-number {
    font-family: 'Franklin Gothic Heavy', 'Franklin Gothic Medium', 'Arial Black', sans-serif;
    font-size: 36px;
    color: #C9A84C;
    opacity: 0.35;
    line-height: 1;
    padding-top: 4px;
    text-align: right;
}

.index-pr-date {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #C9A84C;
    opacity: 0.8;
    margin-bottom: 7px;
}

.index-pr-headline {
    font-family: 'Franklin Gothic Heavy', 'Franklin Gothic Medium', 'Arial Black', sans-serif;
    font-size: 19px;
    line-height: 1.3;
    color: #f0e8d8;
    margin-bottom: 9px;
}

.index-pr-excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: #d8c8b0;
    max-width: 680px;
}

.index-pr-source {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 7px;
}

.index-pr-arrow {
    font-size: 22px;
    color: #C9A84C;
    opacity: 0.6;
    align-self: center;
    transition: transform 0.18s, color 0.18s;
    padding-left: 8px;
}


/* ══════════════════════════════════════════════════════
   INDIVIDUAL PRESS RELEASE PAGE (TEMPLATE 3)
══════════════════════════════════════════════════════ */

.pr-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

.pr-title-block {
    text-align: center;
    padding: 50px 20px 40px;
    border-bottom: 1px solid rgba(201,168,76,0.35);
    margin-bottom: 50px;
}

.pr-country {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 18px;
}

h1.pr-headline {
    font-family: 'Franklin Gothic Heavy', 'Franklin Gothic Medium', 'Arial Black', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #f0e8d8;
    line-height: 1.25;
    margin-bottom: 20px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.pr-date {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.pr-container {
    display: flex;
    justify-content: center;
}

.pr-body {
    width: 100%;
    max-width: 720px;
    border: 1px solid #C9A84C;
    border-radius: 6px;
    padding: 48px 52px;
    background-color: #6b3237;
}

.pr-standfirst {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 28px;
}

.pr-body p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
    margin-bottom: 20px;
}

.pr-quote {
    border-left: 3px solid #C9A84C;
    padding: 12px 24px;
    margin: 30px 0;
    font-style: italic;
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.pr-quote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201,168,76,0.7);
}

.pr-ends {
    text-align: center;
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.4);
    margin-top: 36px;
    margin-bottom: 36px;
}

.pr-boilerplate {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 18px;
    margin-top: 18px;
}

.pr-boilerplate strong {
    color: rgba(255,255,255,0.75);
    display: block;
    margin-bottom: 4px;
}


/* ══════════════════════════════════════════════════════
   NEWS / INTRO STYLES
══════════════════════════════════════════════════════ */

.intro {
    font-size: 16px;
    line-height: 1.75;
    color: #d8c8b0;
    margin-bottom: 48px;
}

.intro p {
    margin-bottom: 18px;
}

.index-pr-source {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #C9A84C;
    opacity: 0.8;
    margin-top: 6px;
}

/* ============================================
   CONTACT PAGE — contact.php
   ============================================ */

.page-title { padding: 40px 0 20px; }
.page-title h1 { font-size: 2.2rem; font-weight: 300; margin-bottom: 16px; }

.contact-intro { max-width: 720px; margin: 30px 0 50px; }
.contact-intro p { font-family: 'Trebuchet MS', sans-serif; font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.65); margin-bottom: 18px; }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }

.contact-offices { display: flex; flex-direction: row; gap: 60px; margin-bottom: 50px; }

.contact-block { padding: 0; }
.contact-block-title { font-family: 'Trebuchet MS', sans-serif; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: #C9A84C; margin-bottom: 12px; }
.contact-divider { border: none; border-top: 1px solid #222; margin-bottom: 18px; }

.contact-email { font-family: 'Trebuchet MS', sans-serif; font-size: 13px; color: rgba(255,255,255,0.75); text-decoration: none; letter-spacing: 0.04em; }
.contact-email:hover { color: #C9A84C; }

.contact-address { font-family: 'Trebuchet MS', sans-serif; font-size: 12px; line-height: 1.9; color: rgba(255,255,255,0.55); font-style: normal; }

.contact-social-section { margin-bottom: 60px; }
.social-links { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 4px; }
.social-link { font-family: 'Trebuchet MS', sans-serif; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); text-decoration: none; }
.social-link:hover { color: #C9A84C; }

.contact-maps-section { margin-bottom: 60px; }
.maps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 4px; }
.map-block { display: flex; flex-direction: column; gap: 8px; }
.map-label { font-family: 'Trebuchet MS', sans-serif; font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.maps-grid iframe { border-radius: 4px; opacity: 0.75; }
.maps-grid iframe:hover { opacity: 1; }








/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .top-bar {
        padding: 16px 20px;
        border-radius: 0 0 24px 24px;
        min-height: auto;
    }

    .top-bar-nav {
        gap: 16px;
    }

    .index-country-heading {
        font-size: 40px;
    }

    .index-page {
        padding: 40px 20px 60px;
    }

    .pr-page {
        padding: 40px 20px 60px;
    }

    h1.pr-headline {
        font-size: 28px;
    }

    .pr-body {
        padding: 32px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .site-footer {
        padding: 40px 20px 28px;
        border-radius: 24px 24px 0 0;
    }
}

@media (max-width: 480px) {
    .top-bar-nav {
        display: none;
    }

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