/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/*! modern.css v1.0.0 */
:root {
    --navy: #0b2138;
    --navy-deep: #071c2d;
    --gold: #d8a94d;
    --gold-soft: #f4d28b;
    --crimson: #7c1e2d;
    --offwhite: #f6f3ee;
    --ivory: #fffdf9;
    --stone: #dfe4ea;
    --text: #1a1d20;
    --muted: #57606a;
    --shadow: 0 20px 40px rgba(8, 24, 37, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: linear-gradient(180deg, #f5f1eb 0%, #f9f7f3 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease; }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; height: auto; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.6; }

h1, h2, h3 { font-family: 'Merriweather', Georgia, serif; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
p { margin-bottom: 1rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: clamp(4rem, 7vw, 6rem) 0; position: relative; }
section:nth-of-type(even) { background: rgba(255,255,255,0.35); }

.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { left: 1rem; top: 1rem; width: auto; height: auto; color: var(--navy); background: var(--offwhite); padding: 1rem; z-index: 200; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.7rem;
    border-radius: 999px;
    font-weight: 700;
    text-align: center;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 10px 24px rgba(11, 33, 56, 0.12);
}
.btn:focus-visible { outline: 3px solid rgba(216,169,77,0.45); outline-offset: 3px; }
.btn:active { transform: scale(0.98); }
.btn--primary {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    color: var(--navy-deep);
}
.btn--primary:hover { background: linear-gradient(135deg, #f0c873, #d79c34); color: var(--navy-deep); }
.btn--secondary {
    background: rgba(255,255,255,0.06);
    color: var(--navy);
    border-color: rgba(11, 33, 56, 0.25);
    box-shadow: none;
}
.btn--secondary:hover {
    background: var(--navy);
    color: #fff;
}
.btn--disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(7, 28, 45, 0.68), rgba(7, 28, 45, 0.75)),
        radial-gradient(circle at top, rgba(216,169,77,0.18), transparent 35%),
        linear-gradient(150deg, #071c2d 0%, #0b2138 52%, #14314d 100%);
    color: var(--offwhite);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
    pointer-events: none;
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    /* slightly more top padding so the hero title doesn't touch the fixed nav on smaller windows */
    padding-top: 6.4rem;
}
.hero__badge {
    display: inline-block;
    padding: 0.62rem 1.1rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(244, 210, 139, 0.98), rgba(216, 169, 77, 0.9));
    color: var(--navy-deep);
    border-radius: 999px;
    font-size: 0.72rem;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    box-shadow: 0 14px 26px rgba(216,169,77,0.24);
}
.hero__title {
    font-size: clamp(2.6rem, 5.2vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 1.2rem;
    text-shadow: 0 12px 35px rgba(0,0,0,0.16);
    /* allow wrapping so long names don't get cut off; keep visual gradient treatment */
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    background: linear-gradient(180deg, #ffffff 0%, #e9edf1 52%, #cdd8df 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__subtitle {
    max-width: 760px;
    margin: 0 auto 2.4rem;
    font-size: clamp(1.06rem, 2vw, 1.45rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    letter-spacing: -0.015em;
}
.hero__ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2.25rem;
}
.hero__image {
    position: relative;
    z-index: 2;
    width: min(520px, 72vw);
    margin: 0 auto 1.8rem;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
    aspect-ratio: 4 / 5;
}

/* Force secondary hero CTA to white text for contrast */
.hero__ctas .btn--secondary {
    background: rgba(0,0,0,0.36);
    color: #fff !important;
    border-color: transparent;
}
.hero__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 18%;
    transform: scale(1.025);
}
.hero__placeholder-badge {
    position: absolute;
    left: 50%;
    bottom: 1.2rem;
    transform: translateX(-50%);
    background: rgba(124, 30, 45, 0.86);
    color: var(--offwhite);
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: 0 12px 20px rgba(124,30,45,0.25);
}
.hero__scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-soft);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.hero__scroll svg { width: 18px; height: 18px; }

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    /* lighter, cleaner header background for better contrast and visual balance */
    background: linear-gradient(180deg, rgba(11,33,56,0.28), rgba(11,33,56,0.18));
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.nav__logo {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    font-weight: 700;
    color: var(--offwhite);
    letter-spacing: -0.06em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1;
}

/* Nav toggle for mobile */
.nav__toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 0.4rem;
    margin-left: 0.5rem;
    align-items: center;
    justify-content: center;
}
.nav__toggle:focus { outline: 2px solid rgba(216,169,77,0.35); border-radius: 8px; }
.nav__toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--offwhite);
    margin: 3px 0;
    border-radius: 2px;
}

/* Mobile: show nav links always (no hamburger) */
.nav__toggle { display: none; }

@media (max-width: 768px) {
    .nav__links {
        position: static;
        margin: 0.6rem 0 0;
        background: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        transform: none;
        transition: none;
        opacity: 1;
        pointer-events: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 0.45rem 0.6rem;
        justify-content: center;
    }
    .nav__links > li { width: 50%; max-width: 50%; display: flex; justify-content: center; }
    .nav__link { display: inline-block; padding: 0.35rem 0.5rem; font-size: 0.78rem; }
}

.nav__logo:hover {
    color: var(--gold-soft);
    transform: translateY(-1px);
}
.nav__logo-image {
    width: 2.2rem;
    height: 2.2rem;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    padding: 0.15rem;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}
.nav__logo span {
    color: var(--offwhite);
    font-size: clamp(1.4rem, 2vw, 2rem);
    letter-spacing: -0.05em;
    white-space: nowrap;
    display: inline-block;
    background: linear-gradient(90deg, #f7e5b3 0%, #f3d07d 20%, #ffffff 48%, #f3d07d 72%, #f7e5b3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: brandPulse 3s ease-in-out infinite alternate;
}
@keyframes brandPulse {
    0% { opacity: 0.75; text-shadow: 0 0 0 rgba(244, 210, 139, 0); }
    100% { opacity: 1; text-shadow: 0 0 18px rgba(244, 210, 139, 0.38); }
}
.nav__links {
    display: flex;
    gap: clamp(0.55rem, 1.25vw, 1.4rem);
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.nav__link {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.82);
    text-transform: uppercase;
    padding: 0.5rem 0.72rem;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.nav__link:hover,
.nav__link.is-active {
    color: var(--gold-soft);
    background: rgba(255,255,255,0.06);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.nav__link--cta {
    /* neutral by default — no persistent highlight */
    background: transparent;
    border: none;
    border-radius: 999px;
    padding: 0.62rem 1rem;
    color: inherit;
}
.nav__link--cta:hover {
    color: var(--gold-soft);
    background: rgba(216,169,77,0.06);
}
.nav__link--cta.is-active {
    color: var(--gold-soft);
    background: rgba(216,169,77,0.18);
    box-shadow: 0 0 0 1px rgba(216,169,77,0.35);
}

.section__header {
    text-align: center;
    margin-bottom: 2rem;
}

/* Tighter spacing for the contact section to reduce vertical footprint on mobile */
.contact .section__header { margin-bottom: 1.4rem; }
.section__label {
    display: inline-block;
    padding: 0.45rem 0.8rem;
    margin-bottom: 0.85rem;
    background: rgba(216,169,77,0.12);
    color: var(--navy-deep);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(216,169,77,0.3);
}
.section__title {
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    color: var(--navy-deep);
    position: relative;
    display: inline-block;
    text-transform: none;
}
.section__title::after {
    content: "";
    display: block;
    width: 86px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), rgba(216,169,77,0.1), transparent);
    border-radius: 999px;
    margin: 0.8rem auto 0;
}

.about__content { display: grid; gap: 2.5rem; align-items: start; }
.about__narrative { order: 2; }
.about__lead {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.about__story h3 { margin-bottom: 0.8rem; color: var(--navy-deep); }
.about__story p { margin-bottom: 1.4rem; color: var(--muted); }
.about__sidebar { order: 1; display: grid; gap: 1rem; }
.fact-card {
    display: flex;
    gap: 1rem;
    align-items: start;
    padding: 1.1rem 1.2rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(11,33,56,0.07);
    box-shadow: 0 12px 26px rgba(9, 24, 38, 0.04);
}
.fact-card__icon {
    width: 2.6rem;
    height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(216,169,77,0.12);
    border-radius: 12px;
    flex-shrink: 0;
}
.fact-card__content dt {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.2rem;
}
.fact-card__content dd {
    font-weight: 700;
    color: var(--navy-deep);
}

.timeline {
    position: relative;
    padding-left: 1.6rem;
    display: grid;
    gap: 1.6rem;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(15,20,25,0.06);
    border-radius: 2px;
}
.timeline__item {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(11,33,56,0.06);
    border-radius: 14px;
    padding: 1.1rem 1.2rem;
    box-shadow: 0 10px 20px rgba(9,24,38,0.04);
}
.timeline__marker {
    position: absolute;
    left: -1.1rem;
    top: 1.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(216,169,77,0.08);
    border: 2px solid #fff;
}
.timeline__date {
    display: block;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.25rem;
}
.timeline__title { margin-bottom: 0.4rem; color: var(--navy-deep); font-weight: 700; }
.timeline__content p { color: var(--muted); margin-bottom: 0; }
.timeline__media-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-top: 1.1rem;
}
.timeline__media-grid--single {
    max-width: 380px;
}
.timeline__media-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(11, 33, 56, 0.08);
    box-shadow: 0 6px 16px rgba(9, 24, 38, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.timeline__media-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(9, 24, 38, 0.1);
}
.timeline__img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}
.timeline__img--banner {
    height: 230px;
    object-position: center 30%;
}
.timeline__img--promotion {
    height: 240px;
    object-position: center 25%;
}
.timeline__caption {
    padding: 0.5rem 0.75rem;
    font-size: 0.78rem;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.35;
    background: #fff;
}

.timeline__item--highlight {
    border-color: rgba(216,169,77,0.18);
    background: linear-gradient(180deg, rgba(255,250,240,0.6), #fff);
}
.timeline__item--highlight .timeline__date { color: var(--crimson); }

.mission__content { display: grid; gap: 1.5rem; }
.mission__banner {
    background: linear-gradient(135deg, var(--crimson), #9f2946);
    color: #fff;
    padding: 1.2rem 1.5rem;
    text-align: center;
    border-radius: 18px;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow);
}
.mission__primary p { color: var(--muted); }
.mission__title { margin-bottom: 1rem; color: var(--navy-deep); }
.mission__cta {
    margin: 1.5rem auto 0;
    max-width: 820px;
    text-align: center;
    padding: 1.25rem 1.6rem;
    background: linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(216, 169, 77, 0.35);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(9, 24, 38, 0.04);
}
.mission__cta p {
    margin: 0;
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(0.98rem, 1.8vw, 1.18rem);
    font-style: italic;
    color: var(--navy-deep);
    line-height: 1.6;
}

.achievements__list {
    display: grid;
    gap: 2rem;
}
.achievement-card {
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(11, 33, 56, 0.08);
    border-radius: 20px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 12px 26px rgba(9, 24, 38, 0.04);
}
.achievement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 36px rgba(9, 24, 38, 0.08);
}
.achievement-card__header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 0.8rem;
}
.achievement-card__icon {
    width: 3.2rem;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(216, 169, 77, 0.14);
    border-radius: 14px;
    font-size: 1.7rem;
    flex-shrink: 0;
}
.achievement-card__title { margin-bottom: 0.2rem; color: var(--navy-deep); font-size: 1.25rem; }
.achievement-card__date {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 600;
}
.achievement-card__desc { font-size: 0.95rem; color: var(--muted); margin-bottom: 1.2rem; line-height: 1.6; }
.achievement-card--text-only {
    border-left: 4px solid var(--gold);
    background: linear-gradient(135deg, rgba(255, 253, 249, 0.95), rgba(255, 255, 255, 0.95));
}
.achievement-card--text-only .achievement-card__desc {
    margin-bottom: 0;
}

.achievement-card__media {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.achievement-card__media--single {
    max-width: 420px;
}
.achievement-card__fig {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(11, 33, 56, 0.08);
    box-shadow: 0 6px 16px rgba(9, 24, 38, 0.04);
    cursor: pointer;
    transition: transform 0.2s ease;
}
.achievement-card__fig:hover {
    transform: translateY(-3px);
}
.achievement-card__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}
.achievement-card__fig figcaption {
    padding: 0.55rem 0.8rem;
    font-size: 0.78rem;
    color: var(--navy-deep);
    font-weight: 600;
    line-height: 1.35;
    background: #fff;
    text-align: center;
}

.gallery__controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.gallery__filter-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    border: 1px solid rgba(11, 33, 56, 0.15);
    background: rgba(255, 255, 255, 0.85);
    color: var(--navy-deep);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.22s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(9, 24, 38, 0.03);
}
.gallery__filter-btn:hover {
    border-color: var(--gold);
    background: #fff;
    transform: translateY(-1px);
}
.gallery__filter-btn.is-active {
    background: var(--navy-deep);
    color: var(--gold-soft);
    border-color: var(--navy-deep);
    box-shadow: 0 8px 20px rgba(11, 33, 56, 0.2);
}

.gallery__grid {
    columns: 3 280px;
    column-gap: 1.5rem;
}

.gallery__item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(11, 33, 56, 0.08);
    box-shadow: 0 12px 26px rgba(9, 24, 38, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    display: block;
    width: 100%;
}
.gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 36px rgba(9, 24, 38, 0.12);
}
.gallery__item.is-hidden {
    display: none !important;
}

.gallery__img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--navy-deep);
}
.gallery__item--portrait .gallery__img-wrapper {
    height: 360px;
    aspect-ratio: 3 / 4;
}
.gallery__item--landscape .gallery__img-wrapper {
    height: 220px;
    aspect-ratio: 4 / 3;
}
.gallery__item--portrait .gallery__img-wrapper,
.gallery__item--landscape .gallery__img-wrapper {
    height: auto;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.35s ease;
}
.gallery__item:hover .gallery__img {
    transform: scale(1.04);
}

.gallery__badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    background: rgba(11, 33, 56, 0.85);
    color: #fff;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.gallery__badge--gold {
    background: linear-gradient(135deg, rgba(216, 169, 77, 0.95), rgba(180, 130, 40, 0.95));
    color: var(--navy-deep);
}
.gallery__badge--navy {
    background: linear-gradient(135deg, rgba(7, 28, 45, 0.9), rgba(20, 49, 77, 0.9));
    color: var(--gold-soft);
}

.gallery__item figcaption {
    padding: 1rem 1.1rem;
    color: var(--navy-deep);
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.45;
    flex-grow: 1;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(7, 28, 45, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.lightbox-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}
.lightbox-modal__content {
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.lightbox-modal__img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}
.lightbox-modal__caption {
    margin-top: 1rem;
    color: var(--offwhite);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}
.lightbox-modal__close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.gallery__video, .gallery__speech { margin-top: 2rem; }
.gallery__video h3, .gallery__speech h3 { margin-bottom: 1rem; color: var(--navy-deep); }
.video-grid {
    display: grid;
    gap: 1.25rem;
}
.video-grid--single {
    max-width: 440px;
    margin: 0 auto;
}
@media (min-width: 768px) { .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.video-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(11,33,56,0.08);
    box-shadow: 0 16px 30px rgba(9,24,38,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(9,24,38,0.12);
}
.video-card video,
.video-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}
.video-player {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
}
.video-card--portrait,
.video-card--landscape {
    aspect-ratio: 16 / 9;
}
.video-card--portrait {
    aspect-ratio: 9 / 16;
}
.video-card--facebook {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.2), rgba(255,255,255,0.95));
}

.press__featured { margin-bottom: 2rem; }
.press__featured h3, .press__kit h3, .press__speaking h3 { margin-bottom: 1rem; color: var(--navy-deep); }
.press__list { list-style: none; display: grid; gap: 1rem; }
.press__item {
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(11,33,56,0.06);
    border-radius: 18px;
    padding: 1.2rem 1.3rem;
    box-shadow: 0 12px 26px rgba(9,24,38,0.04);
}
.press__link {
    display: block;
    color: var(--navy-deep);
}
.press__outlet { display: inline-block; font-weight: 800; margin-bottom: 0.25rem; }
.press__headline { display: block; color: var(--muted); font-size: 0.92rem; }
.press__kit, .contact__form {
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(11,33,56,0.06);
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 12px 26px rgba(9,24,38,0.04);
}
.press__speaking { text-align: center; }
.press__speaking-note, .form__note { margin-top: 1rem; font-size: 0.9rem; color: var(--muted); }

.contact__content { display: grid; }
.contact__form { max-width: 620px; margin: 0 auto; width: 100%; }
.form__group { margin-bottom: 0.9rem; }
.form__label {
    display: block;
    color: var(--navy-deep);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.form__input, .form__select, .form__textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(11,33,56,0.14);
    border-radius: 12px;
    background: rgba(255,255,255,0.9);
    color: var(--text);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
    outline: none;
    border-color: rgba(216,169,77,0.75);
    box-shadow: 0 0 0 4px rgba(216,169,77,0.12);
}
.form__select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%); background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px); background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.form__textarea { resize: vertical; min-height: 120px; line-height: 1.45; }
.form__submit { width: 100%; margin-top: 0.5rem; }

.footer {
    background: linear-gradient(180deg, var(--navy-deep), var(--navy));
    color: var(--offwhite);
    padding: 2.25rem 0 1.5rem;
}
.footer__content {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-align: center;
}
.footer__name {
    font-family: 'Merriweather', Georgia, serif;
    font-size: clamp(1.2rem, 1.9vw, 1.6rem);
    font-weight: 700;
    margin: 0;
}
.footer__tagline, .footer__copyright, .footer__built {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}
.footer__divider {
    width: 120px;
    height: 1px;
    background: rgba(255,255,255,0.18);
    margin: 0.2rem 0 0.1rem;
}

/* Accessibility helper: aria-hidden elements are skipped by screen readers, not hidden visually unless specified */

@media (max-width: 768px) {
    .nav__container {
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
        flex-direction: column;
    }
    .nav__links {
        display: flex;
        flex-wrap: wrap;
        gap: 0.25rem 0.35rem;
        justify-content: center;
        width: 100%;
    }
    /* place nav items into up to 4 columns so all items fit within two rows on phones */
    .nav__links > li { flex: 0 0 25%; max-width: 25%; display: flex; justify-content: center; }
    .nav__link {
        font-size: 0.64rem;
        padding: 0.28rem 0.4rem;
    }
    .hero__content { padding-top: 8.5rem; padding-left: 1.1rem; padding-right: 1.1rem; } /* horizontal padding so name doesn't touch edge */
    .hero__title {
        white-space: normal;
        font-size: clamp(1.8rem, 7.5vw, 2.4rem);
        line-height: 1.04;
        letter-spacing: -0.01em;
        margin-bottom: 0.6rem;
    }
    .hero__subtitle { margin-bottom: 1rem; line-height: 1.5; }
    .hero__ctas {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem;
        width: min(360px, 86vw);
        margin: 0 auto 1rem;
    }
    .hero__ctas .btn { white-space: nowrap; font-size: 0.86rem; padding: 0.5rem 0.9rem; }
    .hero__ctas .btn--secondary { background: rgba(0,0,0,0.36); color: #fff; border-color: transparent; }
    .hero__image { width: min(420px, 84vw); }
    section { padding: 3rem 0; }
    .contact__form { padding: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
    .btn { transition: none; }
}