/*
 Theme Name:   GeneratePress Child — 100 Men of Honor
 Theme URI:    https://100menofhonor.org
 Description:  Child theme for 100 Men of Honor. Built on GeneratePress.
 Author:       100 Men of Honor
 Author URI:   https://100menofhonor.org
 Template:     generatepress
 Version:      0.1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  generatepress-child
*/

/* =============================================================================
   SCALING ANCHOR
   All em values on this site are relative to this 10px base.
   1em = 10px at root; body bumps to 1.6rem = 16px.
   ============================================================================= */

:root {
    font-size: 10px;

    /* -------------------------------------------------------------------------
       BRAND COLORS
       ------------------------------------------------------------------------- */
    --color-gold-light:  #F3DE47;
    --color-gold:        #E4B616;
    --color-gold-mid:    #DDBA2C;
    --color-gold-dark:   #B98A0E;
    --color-black:       #0D0D0D;
    --color-black-alt:   #111111;
    --color-text:        #FFF;
    --color-text-muted:  #AAAAAA;

    /* -------------------------------------------------------------------------
       BRAND FONTS
       ------------------------------------------------------------------------- */
    --font-heading: 'Cinzel', serif;
    --font-body:    'Open Sans', sans-serif;

    /* -------------------------------------------------------------------------
       LAYOUTS
       ------------------------------------------------------------------------- */
    --content-width:     1100px;
    --section-padding:   8em;       /* desktop: 8 × 10px = 80px */
    --section-padding-m: 4.8em;     /* mobile:  4.8 × 10px = 48px */

    /* -------------------------------------------------------------------------
       BUTTONS
       ------------------------------------------------------------------------- */
    --btn-padding-v:   0.8em;
    --btn-padding-h:   2em;
    --btn-border:      2px solid var(--color-gold);
    --btn-font-size:   1.5rem;
    --btn-font-weight: 600;
    --btn-letter-sp:   0.08em;
    --btn-radius:      3px;
    --btn-transition:  background-color 0.2s ease, color 0.2s ease;

    /* -------------------------------------------------------------------------
       TRANSITIONS
       ------------------------------------------------------------------------- */
    --smooth-transition: all 0.3s cubic-bezier(.22,.61,.36,1);

}


/* =============================================================================
   BASE / RESET
   ============================================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.6rem;     /* 16px — all em descendants scale from here */
    line-height: 1.7;
    background-color: var(--color-black-alt);
    color: var(--color-text);
    margin: 0;
    padding: 0;
}


/* =============================================================================
   TYPOGRAPHY
   ============================================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-gold);
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0.5em;
}

h1 { font-size: 4rem; }
h2 { font-size: 3.2rem; }
h3 { font-size: 2.4rem; }
h4 { font-size: 2rem; }
h5 { font-size: 1.8rem; }
h6 { font-size: 1.6rem; }

p {
    margin-top: 0;
    margin-bottom: 1em;
}

blockquote {
    border-left: 4px solid var(--color-gold);
    margin: 2em 0;
    padding: 1em 1.5em;
    font-style: italic;
    color: var(--color-text-muted);
}


/* =============================================================================
   LINKS
   ============================================================================= */

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: var(--color-gold-light);
    text-decoration: underline;
}


/* =============================================================================
   LAYOUT
   ============================================================================= */

.container,
.wp-block-group__inner-container,
.entry-content,
.site-header-inner,
.site-footer-inner {
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Section padding is controlled per-section/per-page, not globally. */


/* =============================================================================
   BUTTONS
   ============================================================================= */

.btn,
.wp-block-button__link,
input[type="submit"],
button[type="submit"] {
    display: inline-block;
    padding: var(--btn-padding-v) var(--btn-padding-h);
    background-color: var(--color-black);
    color: var(--color-gold);
    border: var(--btn-border);
    border-radius: var(--btn-radius);
    font-family: var(--font-heading);
    font-size: var(--btn-font-size);
    font-weight: var(--btn-font-weight);
    letter-spacing: var(--btn-letter-sp);
    text-decoration: none;
    cursor: pointer;
    transition: var(--btn-transition);
    line-height: 1.4;
}

.btn:hover,
.btn:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
button[type="submit"]:hover,
button[type="submit"]:focus {
    background-color: var(--color-gold);
    color: var(--color-black);
    text-decoration: none;
}

.btn--outline {
    background-color: transparent;
    color: var(--color-gold);
    border: var(--btn-border);
}

.btn--outline:hover,
.btn--outline:focus {
    background-color: var(--color-gold);
    color: var(--color-black);
}


/* =============================================================================
   HEADER
   ============================================================================= */

.site-header {
    background-color: var(--color-black);
    border-bottom: 0.1em solid var(--color-gold-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: .75em 1.5em;
}

.site-header .inside-header {
        padding: 0;
    }

.site-header .site-logo {
        line-height: 1;
    }

.site-header .site-logo a {
            display: inline-block;
            width: 10em;
        }

.site-header .header-image {
        width: 10em;
        height: auto;
        display: flex;
        transition: var(--smooth-transition);
        transform-origin: 0 0;
        filter: drop-shadow(0 .25em .25em black);
        max-width: 100%;
        object-fit: contain;
    }

@media (min-height: 800px) and (min-width: 1040px) {

.site-header .header-image {
            max-height: 10dvh
    }
        }

@media (min-width: 1040px) and (max-width: 1140px) {

.site-header .header-image {
            width: 10vw
    }
        }

@media (max-width: 577px) {

.site-header .header-image {
            width: 30vw
    }
        }
/* Admin Bar is absolute at 600px and below */
@media (min-width: 601px) {
        body.admin-bar .site-header {
            top: var(--wp-admin--admin-bar--height);
        }
}

.inside-header {
    display: flex;
    align-items: center;
    gap: 0 2em;
}

html.mobile-menu-open .header-image.header-image,
.header-image {
    transform: scale(1.15);
}

body:not(.scrolled-past-header) .header-image {
    transform: scale(2);
}

.header-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0.75em 2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2em;
}


/* =============================================================================
   NAVIGATION — PRIMARY (desktop)
   ============================================================================= */

.nav-primary {
    display: flex;
    align-items: center;
}

/* Reset GeneratePress ul defaults */
.nav-primary ul,
.nav-primary ul li {
    margin: 0;
    padding: 0;
    list-style: none;
    background: none;
    box-shadow: none;
}

.nav-primary > ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25em;
}

.nav-primary > ul > li {
    position: relative;
}

/* All nav links */
.nav-primary a {
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 0.875em;        /* 0.875 × 16px body = 14px */
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.6em 1em;
    display: block;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}

/* Gold underline reveal on hover / active */
.nav-primary a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1em;
    right: 1em;
    height: 0.15em;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
}

.nav-primary a:hover,
.nav-primary .current-menu-item > a,
.nav-primary .current-page-ancestor > a {
    color: var(--color-gold-light);
    text-decoration: none;
}

.nav-primary a:hover::after,
.nav-primary .current-menu-item > a::after,
.nav-primary .current-page-ancestor > a::after {
    transform: scaleX(1);
}

/* Dropdown sub-menus */
.nav-primary .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 14em;
    background-color: var(--color-black);
    border: 1px solid var(--color-gold-dark);
    border-top: 0.2em solid var(--color-gold);
    list-style: none;
    margin: 0;
    padding: 0.5em 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.4em);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
    z-index: 200;
}

.nav-primary li:hover > .sub-menu,
.nav-primary li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
}

.nav-primary .sub-menu a {
    font-size: 0.8em;          /* 0.8 × 16px inherited = 12.8px ≈ 13px */
    padding: 0.6em 1.4em;
    border-bottom: 1px solid rgba(228, 182, 22, 0.1);
}

.nav-primary .sub-menu li:last-child > a {
    border-bottom: none;
}

.nav-primary .sub-menu a:hover {
    background-color: rgba(228, 182, 22, 0.08);
}

.nav-primary .sub-menu a::after {
    display: none;             /* no underline effect in dropdowns */
}

/* Mobile hamburger button — hidden on desktop */
.menu-toggle {
    display: none;
    color: var(--color-gold);
    background: transparent;
    border: 0.1em solid var(--color-gold);
    border-radius: 0.3em;
    padding: 0.45em 0.6em;
    cursor: pointer;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.menu-toggle:hover,
.menu-toggle:focus {
    background-color: var(--color-gold);
    color: var(--color-black);
    outline: none;
}

.hamburger-icon {
    display: block;
    color: inherit;
}


/* =============================================================================
   NAVIGATION — MOBILE
   ============================================================================= */

@media (max-width: 1040px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 3;              /* sits right of logo */
    }

    .nav-primary {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-black);
        border-top: 0.2em solid var(--color-gold);
        border-bottom: 0.1em solid var(--color-gold-dark);
        z-index: 999;
        order: 4;
    }

    .nav-primary.is-open {
        display: block;
    }

    /* Stack nav items vertically */
    .nav-primary > ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5em 0;
    }

    .nav-primary a {
        padding: 0.85em 1.8em;
        font-size: 0.9em;       /* 0.9 × 16px = 14.4px */
        border-bottom: 1px solid rgba(228, 182, 22, 0.08);
    }

    .nav-primary a::after {
        display: none;          /* no underline indicator in stacked mobile nav */
    }

    /* Mobile sub-menus: show inline, indented */
    .nav-primary .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        border-top: 1px solid rgba(228, 182, 22, 0.15);
        padding: 0;
        min-width: auto;
        background-color: rgba(255, 255, 255, 0.03);
    }

    .nav-primary .sub-menu a {
        padding-left: 3em;
        font-size: 0.85em;       /* 0.85 × 16px = 13.6px */
    }

    /* Position header-inner for absolute mobile dropdown */
    .header-inner {
        position: relative;
        flex-wrap: wrap;
    }
}


/* =============================================================================
   FOOTER
   ============================================================================= */

.site-footer {
    background-color: var(--color-black);
    color: var(--color-text-muted);
    border-top: 0.2em solid var(--color-gold);
    padding-top: 4em;
    padding-bottom: 2.5em;
    font-size: 0.875em;         /* 0.875 × 16px body = 14px context for footer */
}

.footer-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding-left: 2em;
    padding-right: 2em;
}

/* Row shared styles */
.footer-row {
    margin-bottom: 2em;
}

.footer-row:last-child {
    margin-bottom: 0;
}

/* Row 1 — logo + nav links */
.footer-row--brand {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2em;
    padding-bottom: 2em;
    border-bottom: 1px solid rgba(228, 182, 22, 0.12);
}

.footer-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 1;
}

.footer-logo:hover {
    text-decoration: none;
}

.footer-logo__img {
    max-height: 10em;            /* 5 × 14px footer context = 70px */
    width: auto;
    display: block;
    opacity: 0.85;
    transition: opacity 0.2s ease;
    filter: grayscale(1) brightness(1.5);
}

.footer-logo:hover .footer-logo__img {
    opacity: 1;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3em 0;
    align-items: center;
}

.footer-nav a {
    color: var(--color-text-muted);
    font-size: 0.929em;         /* 0.929 × 14px = 13px */
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    padding: 0.3em 1em;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--color-gold);
    text-decoration: none;
}

/* Row 2 — contact */
.footer-row--contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5em 1em;
    font-size: 0.929em;         /* 13px at footer context */
}

.footer-row--contact a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-row--contact a:hover {
    color: var(--color-gold);
}

.footer-divider {
    color: var(--color-gold-dark);
    opacity: 0.6;
}

/* Row 3 — social icons */
.footer-row--social {
    display: flex;
    align-items: center;
    gap: 1.2em;
}

.footer-social__link {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social__link:hover {
    color: var(--color-gold);
    text-decoration: none;
}

.footer-social__icon {
    display: block;
}

/* Row 4 — copyright */
.footer-row--copyright {
    border-top: 1px solid rgba(228, 182, 22, 0.08);
    padding-top: 1.5em;
    margin-top: 1em;
    margin-bottom: 0;
}

.footer-copyright {
    margin: 0;
    font-size: 0.857em;         /* 0.857 × 14px = 12px */
    opacity: 0.6;
    letter-spacing: 0.03em;
}

/* Footer mobile */
@media (max-width: 768px) {
    .footer-row--brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5em;
    }

    .footer-nav {
        gap: 0.2em 0;
    }

    .footer-nav a {
        padding-left: 0;
        padding-right: 1.5em;
    }
}


/* =============================================================================
   FORMS (CF7 + general)
   ============================================================================= */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
select,
textarea {
    background-color: var(--color-black);
    color: var(--color-text);
    border: 1px solid var(--color-gold-dark);
    border-radius: 3px;
    padding: 0.75em 1em;
    font-family: var(--font-body);
    font-size: 1.5rem;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(228, 182, 22, 0.25);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23E4B616' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1em center;
    padding-right: 2.5em;
}

textarea {
    min-height: 12em;
    resize: vertical;
}

label {
    display: block;
    font-size: 1.4rem;
    color: var(--color-text-muted);
    margin-bottom: 0.4em;
    letter-spacing: 0.03em;
}

.wpcf7-form p {
    margin-bottom: 1.6em;
}

.wpcf7-not-valid-tip {
    color: #e05a5a;
    font-size: 1.2rem;
    margin-top: 0.3em;
}

.wpcf7-response-output {
    border: 1px solid var(--color-gold-dark);
    padding: 0.8em 1.2em;
    margin-top: 1.6em;
    font-size: 1.4rem;
    border-radius: 3px;
}


/* =============================================================================
   UTILITY CLASSES
   ============================================================================= */

.text-gold    { color: var(--color-gold); }
.text-muted   { color: var(--color-text-muted); }
.text-center  { text-align: center; }
.text-upper   { text-transform: uppercase; letter-spacing: 0.08em; }

.gold-rule {
    border: 0;
    border-top: 2px solid var(--color-gold-dark);
    margin: 3em 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* =============================================================================
   RESPONSIVE — GLOBAL
   ============================================================================= */

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.4rem; }
    h3 { font-size: 2rem; }

}


/* =============================================================================
   HOME PAGE — SHARED
   ============================================================================= */

/* Strip GeneratePress's inner container padding on the home page */
.home-page.site-main {
    padding: 0;
    margin: 0;
}

.home-page .inside-article,
.home-page .entry-content {
    padding: 0;
    margin: 0;
    max-width: none;
}

.home-section__inner {
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 2em;
    padding-right: 2em;
}


/* =============================================================================
   HOME — HERO
   ============================================================================= */

.home-hero {
    min-height: 100vh;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5em 2em;
}

.home-hero__inner {
    max-width: 68em;         /* 68 × 16px ≈ 1088px — just under content-width */
    width: 100%;
}

.home-hero__flyer-wrap {
    margin-bottom: 2.5em;
    display: flex;
    justify-content: center;
}

.home-hero__flyer {
    max-height: 28em;        /* 28 × 16px = 448px */
    max-width: 100%;
    width: auto;
    display: block;
    border-radius: 0.3em;
    box-shadow: 0 0.5em 3em rgba(0, 0, 0, 0.6),
                0 0 0 0.06em rgba(228, 182, 22, 0.2);
}

.home-hero__heading {
    font-size: 3.5em;        /* 3.5 × 16px = 56px */
    color: var(--color-gold);
    line-height: 1.15;
    margin-bottom: 0.4em;
    text-shadow: 0 0.05em 0.4em rgba(0, 0, 0, 0.8);
}

.home-hero__subhead {
    font-size: 1.2em;        /* 1.2 × 16px = 19.2px */
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 2.5em;
    line-height: 1.5;
}

.home-hero__ctas {
    display: flex;
    gap: 1em;
    justify-content: center;
    flex-wrap: wrap;
}


/* =============================================================================
   HOME — ABOUT SNIPPET
   ============================================================================= */

.home-about {
    background-color: var(--color-black-alt);
    padding: 5em 0;
}

.home-about__inner {
    display: block;          /* Single column — no visual image available yet */
    max-width: 72em;
}

.home-about__text h2 {
    margin-bottom: 0.6em;
}

.home-about__text p {
    margin-bottom: 1.5em;
    line-height: 1.8;
}

.home-about__visual {
    flex-shrink: 0;
}

.home-about__logo-mark {
    max-width: 20em;         /* 20 × 16px = 320px */
    width: 100%;
    opacity: 0.75;
    display: block;
}


/* =============================================================================
   HOME — MISSION PULLQUOTE
   ============================================================================= */

.home-mission {
    background-color: var(--color-black);
    padding: 5em 0;
}

.home-mission__inner {
    display: flex;
    justify-content: center;
}

.home-mission__card {
    max-width: 52em;         /* 52 × 16px = 832px */
    width: 100%;
    border: 0.06em solid var(--color-gold-dark);
    border-left: 0.35em solid var(--color-gold);
    border-radius: 0.4em;
    padding: 3em 3.5em;
    background-color: rgba(228, 182, 22, 0.03);
}

.home-mission__quote {
    margin: 0;
    padding: 0;
    border: none;            /* reset blockquote default from global styles */
    font-style: normal;
    text-align: center;
    color: inherit;
}

.home-mission__quote p {
    font-family: var(--font-heading);
    font-size: 1.25em;       /* 1.25 × 16px = 20px */
    color: var(--color-text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.2em;
}

.home-mission__attribution {
    display: block;
    color: var(--color-gold);
    font-family: var(--font-heading);
    font-size: 0.9em;        /* 0.9 × 16px = 14.4px */
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
}


/* =============================================================================
   HOME — SAVE THE DATE
   ============================================================================= */

.home-save-date {
    background-color: var(--color-black-alt);
    border-top: 0.25em solid var(--color-gold-dark);
    border-bottom: 0.25em solid var(--color-gold-dark);
    padding: 5em 0;
}

.home-save-date__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4em;
    align-items: center;
}

.home-save-date__text h2 {
    margin-bottom: 0.4em;
}

.home-save-date__date-display {
    font-family: var(--font-heading);
    font-size: 4em;          /* 4 × 16px = 64px */
    color: var(--color-gold);
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin: 0.2em 0 0.4em;
}

.home-save-date__sub {
    color: var(--color-text-muted);
    font-size: 1.05em;
    margin-bottom: 2em;
    line-height: 1.6;
}

.home-save-date__visual {
    flex-shrink: 0;
}

.home-save-date__flyer {
    max-width: 22em;         /* 22 × 16px = 352px */
    width: 100%;
    display: block;
    border: 0.1em solid var(--color-gold-dark);
    border-radius: 0.4em;
}


/* =============================================================================
   HOME — GET INVOLVED STRIP
   ============================================================================= */

.home-involved {
    background-color: var(--color-black);
    padding: 5em 0;
}

.home-involved__inner h2 {
    text-align: center;
    margin-bottom: 1.5em;
}

.home-involved__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5em;
}

.home-involved__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    padding: 2.5em 1.5em;
    background-color: var(--color-black-alt);
    border: 0.06em solid rgba(228, 182, 22, 0.18);
    border-radius: 0.4em;
    text-decoration: none;
    color: var(--color-text);
    transition: border-color 0.2s ease,
                background-color 0.2s ease,
                transform 0.2s ease;
}

.home-involved__card:hover,
.home-involved__card:focus {
    border-color: var(--color-gold);
    background-color: rgba(228, 182, 22, 0.05);
    transform: translateY(-0.2em);
    text-decoration: none;
    color: var(--color-text);
    outline-offset: 0.2em;
}

.home-involved__card-icon {
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-involved__card-title {
    font-family: var(--font-heading);
    font-size: 0.9em;        /* 0.9 × 16px = 14.4px */
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--color-gold);
    text-align: center;
}


/* =============================================================================
   HOME — FOOTER CTA
   ============================================================================= */

.home-footer-cta {
    background-color: var(--color-black-alt);
    border-top: 0.06em solid rgba(228, 182, 22, 0.1);
    padding: 5em 0;
    text-align: center;
}

.home-footer-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2em;
}

.home-footer-cta__text {
    font-family: var(--font-heading);
    font-size: 1.75em;       /* 1.75 × 16px = 28px */
    color: var(--color-text);
    margin: 0;
    line-height: 1.3;
}


/* =============================================================================
   HOME PAGE — RESPONSIVE
   ============================================================================= */

/* Tablet — 2-col cards, single-col 2-col sections */
@media (max-width: 900px) {
    .home-about__inner,
    .home-save-date__inner {
        grid-template-columns: 1fr;
    }

    /* Logo mark is decorative — hide on small screens */
    .home-about__visual {
        display: none;
    }

    .home-save-date__visual {
        margin-top: 0;
    }

    .home-save-date__flyer {
        max-width: 100%;
    }

    .home-involved__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .home-hero {
        padding: 4em 1.5em;
    }

    .home-hero__logo-img {
        max-height: 12em;    /* 12 × 16px = 192px */
    }

    .home-hero__heading {
        font-size: 2.4em;    /* 2.4 × 16px = 38.4px */
    }

    .home-hero__subhead {
        font-size: 1em;
    }

    .home-about,
    .home-mission,
    .home-save-date,
    .home-involved,
    .home-footer-cta {
        padding: 3.5em 0;
    }

    .home-mission__card {
        padding: 2em 1.8em;
    }

    .home-save-date__date-display {
        font-size: 2.8em;    /* 2.8 × 16px = 44.8px */
    }

    .home-involved__grid {
        grid-template-columns: 1fr;
    }

    .home-footer-cta__text {
        font-size: 1.4em;
    }
}


/* =============================================================================
   INTERIOR PAGES — SHARED
   ============================================================================= */

/* Page hero — Cover block with class .page-hero */
.wp-block-cover.page-hero {
    background-color: var(--color-black) !important;
    border-bottom: 1px solid rgba(228, 182, 22, 0.15);
    padding-top: 6em;
    padding-bottom: 5em;
    text-align: center;
}

.wp-block-cover.page-hero .wp-block-cover__inner-container {
    max-width: 80rem;
    width: 100%;
    padding-left: 2em;
    padding-right: 2em;
}

.wp-block-cover.page-hero .wp-block-heading {
    line-height: 1.15;
}

/* Separator used as decorative gold bar below hero title */
.wp-block-separator.page-hero__bar {
    width: 4em !important;
    max-width: 4em !important;
    border: none !important;
    height: 0.3em !important;
    border-radius: 0.15em;
    margin: 0.8em auto 0 !important;
    background-color: var(--color-gold) !important;
    color: var(--color-gold) !important;
    opacity: 1 !important;
}

/* Hero subhead */
.wp-block-cover.page-hero .page-hero__sub {
    font-size: 1.1em;
    color: var(--color-text-muted);
    margin: 0.4em 0 0;
}

/* Page section wrapper */
.page-section {
    padding: 6em 2em;
}

.page-section__inner {
    max-width: 110rem;
    margin: 0 auto;
}

.page-section__heading {
    font-family: var(--font-heading);
    font-size: 2.2em;
    color: var(--color-gold);
    margin: 0 0 0.6em;
}

.page-section__body {
    font-size: 1em;
    color: var(--color-text-muted);
    line-height: 1.8;
    max-width: 75rem;
}

.page-section__body + .btn,
.page-section__body + .page-cta {
    margin-top: 2.4em;
}

/* Pullquote / gold-border card */
.pullquote-card {
    border: 1px solid var(--color-gold);
    border-radius: 0.6em;
    padding: 3.2em;
    max-width: 80rem;
    margin: 0 auto;
}

.pullquote-card__quote {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--color-text);
    font-style: italic;
    margin: 0 0 1em;
}

.pullquote-card__attribution {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1em;
    font-style: normal;
}

/* Generic icon card grid */
.icon-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22em, 1fr));
    gap: 2em;
    margin-top: 3em;
}

.icon-card {
    background: var(--color-black);
    border: 1px solid rgba(228, 182, 22, 0.2);
    border-radius: 0.6em;
    padding: 2.4em;
    text-align: center;
}

.icon-card__icon {
    width: 3em;
    height: 3em;
    color: var(--color-gold);
    margin: 0 auto 1em;
    display: block;
}

.icon-card__title {
    font-family: var(--font-heading);
    font-size: 1.25em;
    color: var(--color-gold);
    margin: 0 0 0.6em;
}

.icon-card__body {
    font-size: 0.95em;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Contact block (name / email / phone) */
.contact-block {
    margin-top: 3em;
    padding-top: 2.4em;
    border-top: 1px solid rgba(228, 182, 22, 0.15);
}

.contact-block__name {
    font-family: var(--font-heading);
    font-size: 1.1em;
    color: var(--color-text);
    margin: 0 0 0.2em;
}

.contact-block__line {
    color: var(--color-text-muted);
    font-size: 0.95em;
    margin: 0.2em 0;
}

.contact-block__line a {
    color: var(--color-gold);
    text-decoration: none;
}

.contact-block__line a:hover {
    text-decoration: underline;
}


/* =============================================================================
   ABOUT PAGE
   ============================================================================= */

.about-page .page-section--mission {
    background: var(--color-black);
}


/* =============================================================================
   OUR FOUNDER PAGE
   ============================================================================= */

.founder-photo-placeholder {
    width: 30rem;
    height: 30rem;
    border: 2px dashed var(--color-gold-dark);
    border-radius: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 1.1em;
    margin: 0 auto 3em;
}

.founder-bio {
    max-width: 75rem;
    margin: 0 auto;
    text-align: center;
}

.founder-bio__quote {
    margin-top: 4em;
}

.founder-contact {
    margin-top: 2.4em;
    font-size: 0.95em;
    color: var(--color-text-muted);
    text-align: center;
}

.founder-contact a {
    color: var(--color-gold);
    text-decoration: none;
}

.founder-contact a:hover {
    text-decoration: underline;
}


/* =============================================================================
   2026 CEREMONY PAGE
   ============================================================================= */

.event-details-card {
    border: 1px solid var(--color-gold);
    border-radius: 0.6em;
    padding: 3em;
    max-width: 60rem;
    margin: 0 auto 4em;
}

.event-details-card__row {
    display: flex;
    gap: 1.2em;
    padding: 0.9em 0;
    border-bottom: 1px solid rgba(228, 182, 22, 0.12);
    align-items: baseline;
}

.event-details-card__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event-details-card__label {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 0.9em;
    min-width: 8em;
    flex-shrink: 0;
    letter-spacing: 0.04em;
}

.event-details-card__value {
    color: var(--color-text);
    font-size: 1em;
}

.what-to-expect {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22em, 1fr));
    gap: 1.6em;
    margin-top: 2.4em;
}

.what-to-expect__item {
    display: flex;
    gap: 1.2em;
    align-items: flex-start;
}

.what-to-expect__icon {
    width: 2em;
    height: 2em;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.1em;
}

.what-to-expect__text {
    color: var(--color-text-muted);
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
}

.ceremony-flyer {
    text-align: center;
    margin: 4em 0 0;
}

.ceremony-flyer__img {
    max-width: 36rem;
    width: 100%;
    border: 1px solid rgba(228, 182, 22, 0.2);
    border-radius: 0.4em;
}

.ceremony-cta-strip {
    display: flex;
    gap: 1.6em;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4em;
}


/* =============================================================================
   PAST EVENTS PAGE
   ============================================================================= */

.moh-gallery__heading {
    font-family: var(--font-heading);
    color: var(--color-gold);
    margin-top: 2em;
}

.moh-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6em;
    margin-top: 2em;
}

.moh-gallery__item {
    margin: 0;
    overflow: hidden;
    border-radius: 0.4em;
    border: 2px solid rgba(228, 182, 22, 0.2);
    transition: border-color 0.3s ease;
}

.moh-gallery__item:hover {
        border-color: var(--color-gold);
    }

.moh-gallery__item a {
        display: block;
        line-height: 0;
    }

.moh-gallery__item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 4 / 3;
        transition: transform 0.3s ease;
    }

.moh-gallery__item:hover img {
        transform: scale(1.05);
    }


/* =============================================================================
   NOMINATIONS PAGE
   ============================================================================= */

.nomination-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(26em, 1fr));
    gap: 2em;
    margin: 3em 0;
}

.nomination-step {
    background: var(--color-black);
    border: 1px solid rgba(228, 182, 22, 0.25);
    border-radius: 0.6em;
    padding: 2.4em;
    display: flex;
    gap: 1.6em;
    align-items: flex-start;
}

.nomination-step__number {
    font-family: var(--font-heading);
    font-size: 3em;
    color: var(--color-gold);
    line-height: 1;
    flex-shrink: 0;
}

.nomination-step__title {
    font-family: var(--font-heading);
    font-size: 1.15em;
    color: var(--color-text);
    margin: 0 0 0.4em;
}

.nomination-step__body {
    color: var(--color-text-muted);
    font-size: 0.95em;
    line-height: 1.65;
    margin: 0;
}

.nomination-note {
    color: var(--color-text-muted);
    font-size: 0.95em;
    font-style: italic;
    margin: 0 0 2.4em;
}

.nomination-flyer {
    text-align: center;
    margin: 4em 0;
}

.nomination-flyer__img {
    max-width: 36rem;
    width: 100%;
    border: 1px solid rgba(228, 182, 22, 0.2);
    border-radius: 0.4em;
}

.btn--full-mobile {
    display: inline-block;
}


/* =============================================================================
   SPONSORSHIP PAGE
   ============================================================================= */

.sponsorship-callout {
    border: 1px solid var(--color-gold);
    border-radius: 0.6em;
    padding: 3.2em;
    text-align: center;
    max-width: 72rem;
    margin: 4em auto 0;
}

.sponsorship-callout__title {
    font-family: var(--font-heading);
    font-size: 1.5em;
    color: var(--color-gold);
    margin: 0 0 0.6em;
}

.sponsorship-callout__body {
    color: var(--color-text-muted);
    font-size: 1em;
    line-height: 1.7;
    margin: 0 0 2em;
}

.sponsorship-callout__downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2em;
}


/* =============================================================================
   PDF DOWNLOAD BUTTONS
   ============================================================================= */

.pdf-download {
    margin: 2em 0;
    text-align: center;
}

.btn--download {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}


/* =============================================================================
   GET INVOLVED PAGE
   ============================================================================= */

.get-involved-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24em, 1fr));
    gap: 2em;
}

.get-involved-card {
    background: var(--color-black);
    border: 1px solid rgba(228, 182, 22, 0.2);
    border-radius: 0.6em;
    padding: 2.8em 2.4em;
    display: flex;
    flex-direction: column;
}

.get-involved-card__icon {
    width: 3em;
    height: 3em;
    color: var(--color-gold);
    margin-bottom: 1.2em;
}

.get-involved-card__title {
    font-family: var(--font-heading);
    font-size: 1.35em;
    color: var(--color-gold);
    margin: 0 0 0.5em;
}

.get-involved-card__body {
    color: var(--color-text-muted);
    font-size: 0.95em;
    line-height: 1.65;
    margin: 0 0 1.6em;
    flex: 1;
}

.get-involved-card__cta {
    margin-top: auto;
}

.giving-callout {
    margin-top: 4em;
    padding: 3em;
    border: 1px solid rgba(228, 182, 22, 0.25);
    border-radius: 0.6em;
    text-align: center;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.giving-callout__heading {
    font-family: var(--font-heading);
    font-size: 1.5em;
    color: var(--color-gold);
    margin: 0 0 0.6em;
}

.giving-callout__body {
    color: var(--color-text-muted);
    font-size: 1em;
    line-height: 1.7;
    margin: 0;
}


/* =============================================================================
   VOLUNTEER PAGE
   ============================================================================= */

.volunteer-page .page-section--contact-cta {
    text-align: center;
}

.volunteer-page .page-section--contact-cta .page-section__heading {
    margin-bottom: 0.8em;
}


/* =============================================================================
   CONTACT PAGE
   ============================================================================= */

.contact-page .page-section {
    padding-bottom: 8em;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5em;
    align-items: start;
    max-width: 100rem;
    margin: 0 auto;
}

.contact-info__heading {
    font-family: var(--font-heading);
    font-size: 1.6em;
    color: var(--color-gold);
    margin: 0 0 1.6em;
}

.contact-info__name {
    font-family: var(--font-heading);
    font-size: 1.2em;
    color: var(--color-text);
    margin: 0 0 0.2em;
}

.contact-info__role {
    color: var(--color-text-muted);
    font-size: 0.9em;
    margin: 0 0 1.6em;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 0.8em;
    margin-bottom: 0.9em;
    font-size: 0.95em;
    color: var(--color-text-muted);
}

.contact-info__item svg {
    width: 1.4em;
    height: 1.4em;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 0.1em;
}

.contact-info__item a {
    color: var(--color-gold);
    text-decoration: none;
}

.contact-info__item a:hover {
    text-decoration: underline;
}

.contact-form__heading {
    font-family: var(--font-heading);
    font-size: 1.6em;
    color: var(--color-gold);
    margin: 0 0 1.6em;
}

/* CF7 overrides */
.wpcf7-form p {
    margin: 0 0 1.4em;
}

.wpcf7-form label {
    display: block;
    color: var(--color-text);
    font-size: 0.9em;
    margin-bottom: 0.4em;
    font-weight: 600;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    background: #1a1a1a;
    border: 1px solid var(--color-gold-dark);
    color: var(--color-text);
    border-radius: 0.4em;
    padding: 0.8em 1em;
    width: 100%;
    font-family: var(--font-body);
    font-size: 1em;
    transition: border-color 0.2s, outline 0.2s;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: 2px solid var(--color-gold-light);
    outline-offset: 2px;
    border-color: var(--color-gold);
}

.wpcf7-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23E4B616' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1em center;
    padding-right: 3em;
    cursor: pointer;
}

.wpcf7-form select option {
    background: #1a1a1a;
    color: var(--color-text);
}

.wpcf7-form textarea {
    min-height: 12em;
    resize: vertical;
}

.wpcf7-form input[type="submit"],
.wpcf7-form .wpcf7-submit {
    background: var(--color-black);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    cursor: pointer;
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    padding: 0.9em 3.2em;
    font-size: 1em;
    border-radius: 0.3em;
    transition: background 0.2s, color 0.2s;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-form .wpcf7-submit:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.wpcf7-not-valid-tip {
    color: #ff6b6b;
    font-size: 0.85em;
    margin-top: 0.3em;
}

.wpcf7-response-output {
    border: 1px solid var(--color-gold-dark);
    border-radius: 0.4em;
    padding: 1em 1.4em;
    margin-top: 1em;
    font-size: 0.9em;
    color: var(--color-text-muted);
}


/* =============================================================================
   NOMINATE PAGE
   ============================================================================= */

.nominate-page .page-section {
    padding-bottom: 8em;
}

.nominate-form-wrap {
    max-width: 72rem;
    margin: 0 auto;
}

.nominate-form__note {
    font-size: 1.05em;
    color: var(--color-gold);
    font-style: italic;
    margin-bottom: 2.4em;
    text-align: center;
}

.nominate-form__committee-note {
    font-size: 0.9em;
    color: var(--color-text-muted);
    margin-top: 2.4em;
    text-align: center;
    line-height: 1.6;
}


/* =============================================================================
   INTERIOR PAGE RESPONSIVE
   ============================================================================= */

@media (max-width: 900px) {

    .page-hero__title {
        font-size: 2.8em;
    }

    .moh-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.2em;
    }

    .what-to-expect {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .page-hero {
        padding: 4.5em 1.6em 4em;
    }

    .page-hero__title {
        font-size: 2.4em;
    }

    .page-section {
        padding: 4.5em 1.6em;
    }

    .pullquote-card {
        padding: 2.2em 1.6em;
    }

    .event-details-card {
        padding: 2em 1.6em;
    }

    .moh-gallery {
        grid-template-columns: 1fr;
    }

    .nomination-step {
        flex-direction: column;
        gap: 0.6em;
    }

    .nomination-step__number {
        font-size: 2.4em;
    }

    .btn--full-mobile {
        display: block;
        text-align: center;
    }

    .ceremony-cta-strip {
        flex-direction: column;
        align-items: center;
    }

    .sponsorship-callout {
        padding: 2.2em 1.6em;
    }

    .get-involved-cards {
        grid-template-columns: 1fr;
    }

    .icon-cards {
        grid-template-columns: 1fr;
    }
}
