:root {
    --black: #0d0d0d;
    --charcoal: #1f1c18;
    --gold: #d4af37;
    --bronze: #8c6a2b;
    --ivory: #f7f2e8;
    --ivory-dark: #ebe1cf;
    --white: #ffffff;
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-royal: Georgia, 'Times New Roman', serif;
    --shadow-soft: 0 22px 70px rgba(31, 28, 24, 0.1);
    --shadow-gold: 0 18px 50px rgba(212, 175, 55, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: var(--font-sans);
}

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

button,
input,
select,
textarea {
    font: inherit;
}

p,
h1,
h2,
h3,
figure {
    margin: 0;
}

::selection {
    background: rgba(212, 175, 55, 0.32);
    color: var(--black);
}

.site-nav {
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.76), rgba(13, 13, 13, 0));
    transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, backdrop-filter 240ms ease;
}

.site-nav.is-scrolled,
.site-nav.is-open {
    border-bottom: 1px solid rgba(212, 175, 55, 0.16);
    background: rgba(13, 13, 13, 0.94);
    box-shadow: 0 18px 50px rgba(13, 13, 13, 0.28);
    backdrop-filter: blur(18px);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
    position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav-toggle-lines::before {
    transform: translateY(-6px);
}

.nav-toggle-lines::after {
    transform: translateY(6px);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-lines {
    background: transparent;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-lines::before {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-lines::after {
    transform: rotate(-45deg);
}

.mobile-menu.is-visible {
    display: block;
}

.heritage-pattern {
    background-image:
        linear-gradient(45deg, rgba(212, 175, 55, 0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(212, 175, 55, 0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(212, 175, 55, 0.08) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(212, 175, 55, 0.08) 75%);
    background-position: 0 0, 0 12px, 12px -12px, -12px 0;
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at center, black, transparent 78%);
    animation: patternDrift 28s linear infinite;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 0.375rem;
    padding: 0.75rem 1.25rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: 180ms ease;
}

.btn-primary {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: #f0ce61;
    box-shadow: var(--shadow-soft);
}

.btn-secondary {
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(255, 255, 255, 0.05);
    color: var(--ivory);
}

.btn-secondary:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.btn-ghost {
    border-color: rgba(212, 175, 55, 0.35);
    background: transparent;
    color: var(--gold);
}

.btn-ghost:hover,
.btn-dark:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.btn-dark {
    border-color: var(--black);
    background: var(--black);
    color: var(--ivory);
}

.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: calc(1rem + env(safe-area-inset-bottom));
    z-index: 60;
    display: flex;
    width: 3.25rem;
    height: 3.25rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.55);
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.24), transparent 28%),
        linear-gradient(145deg, rgba(31, 28, 24, 0.95), rgba(13, 13, 13, 0.96) 54%, rgba(140, 106, 43, 0.92));
    box-shadow: 0 18px 44px rgba(13, 13, 13, 0.34), 0 0 0 4px rgba(212, 175, 55, 0.1);
    color: var(--gold);
    cursor: pointer;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.9rem) scale(0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    appearance: none;
    transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.back-to-top::before {
    content: '';
    position: absolute;
    inset: 0.42rem;
    border: 1px solid rgba(247, 242, 232, 0.24);
    border-radius: inherit;
}

.back-to-top span {
    position: relative;
    z-index: 1;
    transform: translateY(-0.08rem);
    font-family: var(--font-royal);
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 180ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    border-color: rgba(247, 242, 232, 0.72);
    box-shadow: 0 20px 54px rgba(13, 13, 13, 0.42), 0 0 0 5px rgba(212, 175, 55, 0.18);
    color: var(--ivory);
    outline: none;
}

.back-to-top:hover span,
.back-to-top:focus-visible span {
    transform: translateY(-0.18rem);
}

.card {
    border: 1px solid rgba(140, 106, 43, 0.15);
    border-radius: 0.375rem;
    box-shadow: var(--shadow-soft);
    transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: var(--shadow-gold);
    transform: translateY(-0.25rem);
}

.card,
.pillar-card,
.feature-box,
.mission-card,
.video-card {
    will-change: transform, opacity;
}

.tag {
    display: inline-flex;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 0.125rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.25rem 0.625rem;
    color: var(--bronze);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tag-muted {
    border-color: rgba(31, 28, 24, 0.1);
    background: rgba(31, 28, 24, 0.05);
    color: rgba(31, 28, 24, 0.55);
}

.feature-box,
.mission-card,
.pillar-card,
.contact-card {
    border: 1px solid rgba(140, 106, 43, 0.15);
    border-radius: 0.375rem;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.feature-box {
    padding: 1.5rem;
}

.feature-box h3,
.pillar-card h3 {
    color: var(--black);
    font-family: var(--font-royal);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
}

.feature-box p,
.pillar-card p,
.mission-card p:not(.eyebrow),
.dark-step p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.75rem;
}

.feature-box p,
.pillar-card p,
.mission-card p:not(.eyebrow) {
    color: rgba(31, 28, 24, 0.7);
}

.mission-card.bg-black p:not(.eyebrow) {
    color: rgba(247, 242, 232, 0.72);
}

.mission-card {
    padding: 1.75rem;
}

.mission-card h2,
.mission-card h3 {
    margin-top: 1rem;
    color: var(--black);
    font-family: var(--font-royal);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.35;
}

.mission-card.bg-black h2,
.mission-card.bg-black h3 {
    color: var(--white);
}

.pillar-card {
    padding: 1.5rem;
    transition: transform 300ms ease, border-color 300ms ease;
}

.pillar-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-0.25rem);
}

.pillar-icon {
    display: flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.375rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.dark-step {
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    backdrop-filter: blur(8px);
}

.dark-step span {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dark-step h3 {
    margin-top: 1rem;
    color: var(--white);
    font-family: var(--font-royal);
    font-size: 1.5rem;
    font-weight: 600;
}

.dark-step p {
    color: rgba(247, 242, 232, 0.7);
}

.stat-box {
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    text-align: center;
}

.stat-box span {
    color: var(--gold);
    font-family: var(--font-royal);
    font-size: 2.25rem;
    font-weight: 600;
}

.stat-box p {
    margin-top: 0.75rem;
    color: rgba(247, 242, 232, 0.7);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-card {
    padding: 1.25rem;
}

.contact-card p:not(.eyebrow) {
    margin-top: 0.5rem;
    color: rgba(31, 28, 24, 0.72);
    font-size: 1rem;
    line-height: 1.75rem;
}

.form-field {
    display: grid;
    gap: 0.5rem;
}

.form-field span {
    color: rgba(31, 28, 24, 0.6);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    min-height: 3rem;
    border: 1px solid rgba(140, 106, 43, 0.2);
    border-radius: 0.375rem;
    background: var(--ivory);
    padding: 0.75rem 1rem;
    color: var(--charcoal);
    font-size: 0.875rem;
    outline: none;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(31, 28, 24, 0.38);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.form-field textarea {
    resize: vertical;
}

.form-error {
    color: #b91c1c;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.form-error-summary,
.form-status {
    border: 1px solid;
    border-radius: 0.375rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5rem;
}

.form-error-summary {
    border-color: #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.form-status {
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.1);
    color: var(--charcoal);
}

.footer-heading {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-icon-link,
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-radius: 0.375rem;
    color: rgba(247, 242, 232, 0.7);
    font-size: 0.875rem;
    line-height: 1.5rem;
    transition: color 180ms ease;
}

.footer-icon-link {
    min-height: 2.25rem;
    align-items: center;
}

.footer-icon {
    display: flex;
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-icon svg {
    width: 1rem;
    height: 1rem;
}

.footer-icon-link:hover,
.footer-contact-item:hover {
    color: var(--gold);
}

.footer-icon-link:hover .footer-icon,
a.footer-contact-item:hover .footer-icon {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.footer-contact-label {
    display: block;
    color: rgba(212, 175, 55, 0.72);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-contact-value {
    display: block;
    color: rgba(247, 242, 232, 0.72);
    font-size: 0.875rem;
    line-height: 1.5rem;
    transition: color 180ms ease;
}

a.footer-contact-item:hover .footer-contact-value {
    color: var(--gold);
}

.image-placeholder {
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.08), 0 26px 90px rgba(13, 13, 13, 0.18);
}

.asset-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asset-image-contain {
    background: var(--white);
    object-fit: contain;
    padding: 1rem;
}

.nav-brand-mark {
    overflow: hidden;
    background: var(--white);
    padding: 0.25rem;
}

.nav-brand-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-actions {
    margin-left: 1.25rem;
}

.official-logo-shell {
    width: 100%;
    max-width: 28rem;
    max-width: min(100%, 28rem);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.375rem;
    background: var(--black);
    padding: 0.5rem;
    box-shadow: var(--shadow-gold);
}

.official-logo-shell img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.125rem;
    opacity: 0.95;
}

.partner-logo {
    display: block;
    height: 4rem;
    max-width: 8rem;
    background: var(--white);
    object-fit: contain;
    padding: 0.25rem;
    border-radius: 0.125rem;
}

.hero-slider {
    isolation: isolate;
    min-height: 62rem;
    max-width: 100%;
}

.hero-slider::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), transparent);
}

.hero-atmosphere {
    background:
        radial-gradient(circle at 78% 20%, rgba(212, 175, 55, 0.22), transparent 28%),
        linear-gradient(115deg, #0d0d0d 0%, rgba(13, 13, 13, 0.98) 48%, rgba(23, 38, 26, 0.94) 100%);
}

.hero-slider-stage {
    width: 100%;
    min-height: 52rem;
    min-width: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-width: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 900ms ease, transform 900ms ease;
}

.hero-slide.is-active {
    position: relative;
    min-height: inherit;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.hero-slide-grid {
    display: grid;
    width: 100%;
    min-height: inherit;
    min-width: 0;
    align-items: center;
    gap: 3rem;
}

.hero-copy {
    min-width: 0;
    max-width: 43rem;
}

.hero-copy,
.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-visual {
    min-width: 0;
    width: 100%;
    max-width: min(100%, 32rem);
    justify-self: center;
}

.hero-portrait-frame {
    position: relative;
    isolation: isolate;
    max-width: 100%;
}

.hero-portrait-frame::before {
    content: '';
    position: absolute;
    inset: -0.85rem;
    z-index: -1;
    border: 1px solid rgba(212, 175, 55, 0.24);
    transform: translate(0.55rem, -0.55rem);
}

.hero-portrait-frame::after {
    content: '';
    position: absolute;
    right: 1.25rem;
    bottom: -0.85rem;
    left: 1.25rem;
    height: 0.22rem;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.82), transparent);
}

.hero-visual .image-placeholder {
    border-color: rgba(212, 175, 55, 0.36);
    aspect-ratio: 3 / 4;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.hero-visual .asset-image {
    background: var(--black);
    object-fit: cover;
}

.hero-visual .hero-caption {
    position: static;
    margin-top: 0.75rem;
}

.hero-mandate-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.hero-mandate-strip span {
    display: inline-flex;
    min-height: 2rem;
    align-items: center;
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.35rem 0.7rem;
    color: rgba(247, 242, 232, 0.76);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-symbol-lockup {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 0.375rem;
    background: var(--white);
    padding: 0.75rem;
    box-shadow: var(--shadow-gold);
}

.hero-symbol-lockup img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.hero-symbol-lockup span {
    color: rgba(31, 28, 24, 0.7);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateX(-50%);
}

.hero-dot {
    width: 0.625rem;
    height: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    transition: border-color 180ms ease, background 180ms ease;
}

.hero-dot.is-active {
    border-color: var(--gold);
    background: var(--gold);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 20;
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 999px;
    background: rgba(13, 13, 13, 0.5);
    color: var(--gold);
    font-size: 1.875rem;
    line-height: 1;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    transition: background 180ms ease, color 180ms ease;
}

.hero-arrow-previous {
    left: 1rem;
}

.hero-arrow-next {
    right: 1rem;
}

.hero-arrow:hover {
    background: var(--gold);
    color: var(--black);
}

.hero-slider:hover .hero-visual .image-placeholder {
    transform: translateY(-2px);
}

.logo-watermark {
    pointer-events: none;
    position: absolute;
    right: -4rem;
    top: 50%;
    z-index: 0;
    display: none;
    width: 28rem;
    height: 28rem;
    transform: translateY(-50%);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    object-fit: contain;
    padding: 2rem;
    opacity: 0.045;
    filter: saturate(1.1);
    animation: logoFloat 9s ease-in-out infinite;
}

.logo-watermark-left {
    left: -5rem;
    right: auto;
}

.adinkra-accent {
    pointer-events: none;
    position: absolute;
    z-index: 0;
    display: none;
    width: 18rem;
    aspect-ratio: 1;
    opacity: 0.16;
    animation: adinkraFloat 9s ease-in-out infinite;
}

.adinkra-accent img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 18px 40px rgba(212, 175, 55, 0.14));
}

.adinkra-accent--right {
    top: 12%;
    right: max(-5rem, -7vw);
}

.adinkra-accent--left {
    top: 16%;
    left: max(-5rem, -7vw);
}

.adinkra-accent--left-bottom {
    bottom: -3rem;
    left: max(-4rem, -6vw);
}

.adinkra-accent--dark {
    opacity: 0.13;
}

.adinkra-accent--light {
    opacity: 0.16;
}

.adinkra-accent--small {
    width: 13rem;
}

.adinkra-accent--large {
    width: 22rem;
}

.video-card {
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0.375rem;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-gold);
    backdrop-filter: blur(8px);
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--black);
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.video-placeholder img {
    width: 6rem;
    height: 6rem;
    object-fit: contain;
}

.video-placeholder span {
    color: rgba(31, 28, 24, 0.6);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.video-card-body {
    padding: 1.25rem;
}

.video-card-body h3 {
    margin-top: 0.75rem;
    color: var(--white);
    font-family: var(--font-royal);
    font-size: 1.25rem;
    font-weight: 600;
}

.video-card-body p:not(.eyebrow) {
    margin-top: 0.75rem;
    color: rgba(247, 242, 232, 0.7);
    font-size: 0.875rem;
    line-height: 1.75rem;
}

.bg-black .section-heading h2 {
    color: var(--white);
}

.bg-black .section-heading p:not(.eyebrow) {
    color: rgba(247, 242, 232, 0.72);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms ease, transform 620ms ease, border-color 300ms ease, box-shadow 300ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.nav-brand-mark,
.official-logo-shell {
    animation: logoGlow 4.8s ease-in-out infinite;
}

@keyframes patternDrift {
    from {
        background-position: 0 0, 0 12px, 12px -12px, -12px 0;
    }

    to {
        background-position: 24px 24px, 24px 36px, 36px 12px, 12px 24px;
    }
}

@keyframes logoFloat {
    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-52%) scale(1.025);
    }
}

@keyframes adinkraFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-0.55rem) rotate(1.2deg);
    }
}

@keyframes logoGlow {
    0%,
    100% {
        box-shadow: var(--shadow-gold);
    }

    50% {
        box-shadow: 0 18px 60px rgba(212, 175, 55, 0.28);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

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

.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-x-6 { left: 1.5rem; right: 1.5rem; }
.top-0 { top: 0; }
.top-6 { top: 1.5rem; }
.bottom-6 { bottom: 1.5rem; }
.left-6 { left: 1.5rem; }
.right-6 { right: 1.5rem; }
.-inset-4 { inset: -1rem; }
.z-50 { z-index: 50; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-9 { margin-top: 2.25rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.block { display: block; }
.hidden { display: none; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.self-start { align-self: flex-start; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-px { height: 1px; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.min-h-12 { min-height: 3rem; }
.min-h-36 { min-height: 9rem; }
.w-2 { width: 0.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-\[18rem\] { max-width: 18rem; }
.flex-1 { flex: 1 1 0%; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.aspect-\[16\/10\] { aspect-ratio: 16 / 10; }
.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
.overflow-hidden { overflow: hidden; }
.resize-y { resize: vertical; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-md { border-radius: 0.375rem; }
.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-black { border-color: var(--black); }
.border-gold { border-color: var(--gold); }
.border-gold\/70 { border-color: rgba(212, 175, 55, 0.7); }
.border-gold\/45 { border-color: rgba(212, 175, 55, 0.45); }
.border-gold\/35 { border-color: rgba(212, 175, 55, 0.35); }
.border-gold\/30 { border-color: rgba(212, 175, 55, 0.3); }
.border-gold\/25 { border-color: rgba(212, 175, 55, 0.25); }
.border-gold\/20 { border-color: rgba(212, 175, 55, 0.2); }
.border-gold\/18 { border-color: rgba(212, 175, 55, 0.18); }
.border-gold\/15 { border-color: rgba(212, 175, 55, 0.15); }
.border-bronze\/20 { border-color: rgba(140, 106, 43, 0.2); }
.border-bronze\/15 { border-color: rgba(140, 106, 43, 0.15); }
.border-charcoal\/10 { border-color: rgba(31, 28, 24, 0.1); }
.bg-black { background-color: var(--black); }
.bg-black\/45 { background-color: rgba(13, 13, 13, 0.45); }
.bg-black\/72 { background-color: rgba(13, 13, 13, 0.72); }
.bg-black\/96 { background-color: rgba(13, 13, 13, 0.96); }
.bg-charcoal\/5 { background-color: rgba(31, 28, 24, 0.05); }
.bg-gold { background-color: var(--gold); }
.bg-gold\/75 { background-color: rgba(212, 175, 55, 0.75); }
.bg-gold\/35 { background-color: rgba(212, 175, 55, 0.35); }
.bg-gold\/10 { background-color: rgba(212, 175, 55, 0.1); }
.bg-ivory { background-color: var(--ivory); }
.bg-ivory-dark { background-color: var(--ivory-dark); }
.bg-white { background-color: var(--white); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.object-cover { object-fit: cover; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-24 { padding-bottom: 6rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-14 { padding-top: 3.5rem; }
.pt-28 { padding-top: 7rem; }
.pt-32 { padding-top: 8rem; }
.text-center { text-align: center; }
.font-royal { font-family: var(--font-royal); }
.text-\[0\.64rem\] { font-size: 0.64rem; }
.text-\[0\.66rem\] { font-size: 0.66rem; }
.text-\[0\.72rem\] { font-size: 0.72rem; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.uppercase { text-transform: uppercase; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-\[1\.05\] { line-height: 1.05; }
.leading-6 { line-height: 1.5rem; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.leading-9 { line-height: 2.25rem; }
.leading-10 { line-height: 2.5rem; }
.tracking-\[0\.12em\] { letter-spacing: 0.12em; }
.tracking-\[0\.14em\] { letter-spacing: 0.14em; }
.tracking-\[0\.16em\] { letter-spacing: 0.16em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.text-black { color: var(--black); }
.text-bronze { color: var(--bronze); }
.text-charcoal { color: var(--charcoal); }
.text-charcoal\/76 { color: rgba(31, 28, 24, 0.76); }
.text-charcoal\/74 { color: rgba(31, 28, 24, 0.74); }
.text-charcoal\/72 { color: rgba(31, 28, 24, 0.72); }
.text-charcoal\/70 { color: rgba(31, 28, 24, 0.7); }
.text-charcoal\/60 { color: rgba(31, 28, 24, 0.6); }
.text-charcoal\/55 { color: rgba(31, 28, 24, 0.55); }
.text-charcoal\/50 { color: rgba(31, 28, 24, 0.5); }
.text-charcoal\/45 { color: rgba(31, 28, 24, 0.45); }
.text-charcoal\/38 { color: rgba(31, 28, 24, 0.38); }
.text-gold { color: var(--gold); }
.text-gold\/85 { color: rgba(212, 175, 55, 0.85); }
.text-gold\/82 { color: rgba(212, 175, 55, 0.82); }
.text-gold\/78 { color: rgba(212, 175, 55, 0.78); }
.text-gold\/75 { color: rgba(212, 175, 55, 0.75); }
.text-ivory { color: var(--ivory); }
.text-ivory\/82 { color: rgba(247, 242, 232, 0.82); }
.text-ivory\/78 { color: rgba(247, 242, 232, 0.78); }
.text-ivory\/76 { color: rgba(247, 242, 232, 0.76); }
.text-ivory\/72 { color: rgba(247, 242, 232, 0.72); }
.text-ivory\/70 { color: rgba(247, 242, 232, 0.7); }
.text-ivory\/68 { color: rgba(247, 242, 232, 0.68); }
.text-ivory\/55 { color: rgba(247, 242, 232, 0.55); }
.text-white { color: var(--white); }
.opacity-10 { opacity: 0.1; }
.opacity-12 { opacity: 0.12; }
.opacity-20 { opacity: 0.2; }
.opacity-22 { opacity: 0.22; }
.opacity-25 { opacity: 0.25; }
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-gold { box-shadow: var(--shadow-gold); }
.transition { transition: 180ms ease; }
.duration-300 { transition-duration: 300ms; }
.backdrop-blur { backdrop-filter: blur(8px); }
.rotate-45 { transform: rotate(45deg); }
.hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
.hover\:bg-gold:hover { background-color: var(--gold); }
.hover\:bg-gold\/10:hover { background-color: rgba(212, 175, 55, 0.1); }
.hover\:bg-\[\#f0ce61\]:hover { background-color: #f0ce61; }
.hover\:border-gold:hover { border-color: var(--gold); }
.hover\:border-gold\/35:hover { border-color: rgba(212, 175, 55, 0.35); }
.hover\:text-gold:hover { color: var(--gold); }
.hover\:text-black:hover { color: var(--black); }
.hover\:shadow-soft:hover { box-shadow: var(--shadow-soft); }
.hover\:shadow-gold:hover { box-shadow: var(--shadow-gold); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }

@media (min-width: 640px) {
    .sm\:flex { display: flex; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
    .hero-copy h1 {
        max-width: 100%;
        font-size: 2.3rem;
        line-height: 1.08;
        text-wrap: balance;
    }

    .hero-subtitle {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .hero-portrait-frame::before {
        inset: -0.45rem;
        transform: translate(0.25rem, -0.25rem);
    }

    .hero-portrait-frame::after {
        right: 0.75rem;
        left: 0.75rem;
    }
}

@media (min-width: 375px) and (max-width: 767px) {
    .hero-copy h1 {
        font-size: 2.55rem;
    }
}

@media (min-width: 768px) {
    .md\:flex-row { flex-direction: row; }
    .md\:items-center { align-items: center; }
    .md\:justify-between { justify-content: space-between; }
    .md\:self-auto { align-self: auto; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:p-8 { padding: 2rem; }
    .md\:text-xl { font-size: 1.25rem; }
    .md\:text-3xl { font-size: 1.875rem; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-6xl { font-size: 3.75rem; }
    .md\:text-7xl { font-size: 4.5rem; }
    .md\:leading-9 { line-height: 2.25rem; }
    .md\:pt-36 { padding-top: 9rem; }
    .logo-watermark { display: block; }
}

@media (min-width: 1024px) {
    .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:grid-cols-\[1\.3fr_0\.8fr_0\.8fr_1fr\] { grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr; }
    .lg\:grid-cols-\[1\.05fr_0\.95fr\] { grid-template-columns: 1.05fr 0.95fr; }
    .lg\:grid-cols-\[0\.95fr_1\.05fr\] { grid-template-columns: 0.95fr 1.05fr; }
    .lg\:grid-cols-\[0\.9fr_1\.1fr\] { grid-template-columns: 0.9fr 1.1fr; }
    .lg\:grid-cols-\[0\.85fr_1\.15fr\] { grid-template-columns: 0.85fr 1.15fr; }
    .lg\:grid-cols-\[0\.8fr_1\.2fr\] { grid-template-columns: 0.8fr 1.2fr; }
    .lg\:grid-cols-\[0\.75fr_1\.25fr\] { grid-template-columns: 0.75fr 1.25fr; }
    .lg\:grid-cols-\[1fr_1fr\] { grid-template-columns: 1fr 1fr; }
    .lg\:min-h-\[calc\(100vh-7rem\)\] { min-height: calc(100vh - 7rem); }
    .hero-slider { min-height: calc(100svh - 1.25rem); }
    .hero-slider-stage { min-height: calc(100svh - 8rem); }
    .hero-slide-grid { height: 100%; grid-template-columns: minmax(0, 1.05fr) minmax(24rem, 0.95fr); }
    .hero-arrow { display: flex; }
    .hero-visual { max-width: 34rem; justify-self: end; }
    .hero-visual .image-placeholder { aspect-ratio: 4 / 5; }
    .hero-visual .asset-image { background: transparent; object-fit: cover; }
    .hero-visual .hero-caption {
        position: absolute;
        right: 1.5rem;
        bottom: 1.5rem;
        left: 1.5rem;
        margin-top: 0;
    }
    .adinkra-accent { display: block; }
}

@media (min-width: 1280px) {
    .xl\:flex { display: flex; }
    .xl\:hidden { display: none; }
}
