:root {
    --primary: #0a1c2a;
    --primary-light: #162f45;
    --primary-dark: #050e15;
    --gold: #b89253;
    --gold-light: #cbb081;
    --gold-dark: #937036;
    --cream: #faf8f5;
    --cream-dark: #efeae2;
    --white: #ffffff;
    --text-dark: #2b2b2b;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --header-h: 80px;
    --max-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
.serif {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section[id] {
    scroll-margin-top: var(--header-h);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* buttons css */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--gold-dark);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* header section */
header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f3f4f6;
    z-index: 100;
    padding: 12px 0;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-monogram {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    border-right: 1px solid var(--gold);
    padding-right: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    position: relative;
    padding-bottom: 6px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    width: 100%;
}

/* mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    z-index: 110;
    position: relative;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background-color: var(--primary);
    margin: 3px 0;
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle span:nth-child(1) {
    width: 28px;
}

.menu-toggle span:nth-child(2) {
    width: 20px;
}

.menu-toggle span:nth-child(3) {
    width: 24px;
}

/* mobile sidebar */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(10, 28, 42, 0.4);
    z-index: 120;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    background-color: var(--white);
    z-index: 130;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 32px;
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.sidebar-close i {
    font-size: 25px;
    line-height: 1;
}

.sidebar-header {
    border-bottom: 1px solid var(--cream-dark);
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-grow: 1;
    padding-top: 20px;
}

.sidebar-nav-link {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    color: var(--primary);
}

.sidebar-nav-link:hover {
    color: var(--gold);
}

.sidebar-footer {
    border-top: 1px solid var(--cream-dark);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

/* hero section */
.hero {
    background-color: var(--primary);
    color: var(--white);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 120%,
            var(--primary-light) 0%,
            transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-dot {
    width: 4px;
    height: 4px;
    background-color: var(--gold);
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title span {
    font-style: italic;
    font-weight: 300;
    color: var(--gold-light);
}

.hero-desc {
    color: #d1d5db;
    font-size: 16px;
    font-weight: 300;
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.hero-right {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-right-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    width: 100%;
    max-width: 380px;
}

.hero-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
}

.hero-frame-bg {
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(184, 146, 83, 0.3);
    border-radius: 2px;
    transform: translate(12px, 12px);
    pointer-events: none;
}

.hero-img-box {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background-color: var(--primary);
    border: 1px solid rgba(184, 146, 83, 0.4);
    padding: 20px;
    border-radius: 2px;
    max-width: 210px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.hero-badge-title {
    color: var(--gold);
    font-size: 28px;
    font-weight: 300;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.hero-badge-title span {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.1em;
}

.hero-badge-desc {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: #e5e7eb;
    margin-top: 4px;
}

.hero-badge-footer {
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 9px;
    color: #9ca3af;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: start;
    width: 100%;
}

/* metrics bar */
.metrics {
    background-color: var(--cream);
    border-bottom: 1px solid var(--cream-dark);
    padding: 48px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.metric-col {
    padding-left: 24px;
    border-left: 1px solid var(--cream-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metric-col:first-child {
    border-left: none;
    padding-left: 0;
}

.metric-val {
    font-size: clamp(28px, 4vw, 36px);
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.metric-val svg {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.metric-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-top: 4px;
}

/* about section */
.about {
    padding: 80px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 64px;
    align-items: center;
}

.about-left {
    position: relative;
}

.about-frame-bg {
    position: absolute;
    inset: 0;
    border: 2px solid var(--gold);
    transform: translate(16px, 16px);
    pointer-events: none;
    border-radius: 2px;
}

.about-img-box {
    position: relative;
    background-color: var(--primary);
    aspect-ratio: 5/6;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
}

.section-title {
    font-size: clamp(26px, 4vw, 36px);
    color: var(--primary);
    line-height: 1.25;
}

.about-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #4b5563;
    font-size: 15px;
    font-weight: 300;
}

.signature-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 16px;
}

.sig-serif {
    font-size: 24px;
    color: var(--gold-dark);
    font-style: italic;
}

.sig-title {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.1em;
}

.about-quote {
    border-left: 4px solid var(--gold);
    background-color: var(--cream);
    padding: 20px;
    border-radius: 0 2px 2px 0;
    font-size: 15px;
    font-style: italic;
    color: var(--primary);
}

/* legacy section */
.legacy {
    background-color: var(--primary);
    color: var(--white);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.legacy-content {
    padding: clamp(40px, 6vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.legacy-desc {
    color: #d1d5db;
    font-weight: 300;
    font-size: 15px;
}

.legacy-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legacy-val {
    font-size: clamp(22px, 3vw, 30px);
    color: var(--gold);
}

.legacy-label {
    font-size: 9px;
    text-transform: uppercase;
    color: #9ca3af;
    margin-top: 4px;
    letter-spacing: 0.1em;
}

.legacy-right {
    position: relative;
    min-height: 350px;
}

.legacy-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* expertise section */
.expertise {
    background-color: var(--cream);
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
    padding: 40px 0;
}

.expertise-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    border: 1px solid #f3f4f6;
    padding: 12px 36px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.tag:hover {
    border-color: rgba(184, 146, 83, 0.5);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tag-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
}

/* timeline */
.timeline-section {
    padding: 80px 0;
    background-color: var(--cream);
    overflow: hidden;
}

.timeline-header {
    text-align: center;
    margin-bottom: 64px;
}

.timeline-header h2 {
    margin-top: 12px;
}

.timeline-header-sub {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 300;
    max-width: 560px;
    margin: 12px auto 0;
}

.timeline-layout {
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
}

.timeline {
    position: relative;
    padding: 30px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    width: 3px;
    background: #ddd5c8;
    transform: translateX(-50%);
    z-index: 1;
}

/* timeline progress */
.timeline-progress {
    position: absolute;
    left: 50%;
    width: 3px;
    background: linear-gradient(to bottom,
            var(--gold-light),
            var(--gold));
    transform: translateX(-50%);
    z-index: 2;
    height: 0;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 96px;
    z-index: 3;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 2px solid #ddd5c8;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    z-index: 4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.active .timeline-dot {
    border-color: var(--gold);
    background-color: var(--gold);
    color: var(--white);
    box-shadow: 0 0 0 6px rgba(184, 146, 83, 0.18);
}

.timeline-dot i {
    font-size: 21px;
    line-height: 1;
    --ph-duotone-secondary-opacity: 0.32;
}

.timeline-col-img,
.timeline-col-content {
    width: 50%;
}

.timeline-col-img {
    padding: 0 48px;
}

.timeline-col-content {
    padding: 0 48px;
    display: flex;
    flex-direction: column;
}

/* Even entries align content left / image right */
.timeline-item:nth-child(even) .timeline-col-content {
    align-items: flex-end;
    text-align: right;
}

/* Odd entries swap structural directions */
.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-col-content {
    align-items: flex-start;
    text-align: left;
}

.timeline-media {
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--cream-dark);
    background-color: #e8e1d4;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    max-width: 480px;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-media {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-media {
    margin-right: auto;
}

.timeline-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    filter: grayscale(1);
    opacity: 0.85;
    transition:
        transform 0.6s ease,
        opacity 0.4s ease,
        filter 0.4s ease;
}

.timeline-item.active .timeline-media img {
    transform: scale(1.03);
    opacity: 0.95;
    filter: grayscale(0.2);
}

.timeline-item.active .timeline-media {
    border-color: rgba(184, 146, 83, 0.45);
    box-shadow: 0 15px 35px rgba(10, 28, 42, 0.08);
}

.timeline-label-year {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background-color: var(--cream-dark);
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 12px;
}

.timeline-col-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 8px;
}

.timeline-col-content p {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 300;
    max-width: 420px;
    line-height: 1.6;
}

/* achievements section */
.achievements {
    padding: 80px 0;
    background-color: var(--white);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.achievement-card {
    background-color: var(--cream);
    border: 1px solid var(--cream-dark);
    padding: 30px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.achievement-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.achievement-icon {
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 24px;
    border: 1px solid var(--cream-dark);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.01);
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    background-color: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.achievement-icon i {
    font-size: 25px;
    line-height: 1;
    --ph-duotone-secondary-opacity: 0.28;
}

.achievement-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.achievement-card p {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 300;
    margin-bottom: 24px;
}

.achievement-footer {
    border-top: 1px solid var(--cream-dark);
    padding-top: 16px;
}

.achievement-footer-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.achievement-footer-desc {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    margin-top: 2px;
}

/* philosopy */
.philosophy {
    background-color: var(--cream);
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
    padding: 60px 0;
    overflow: hidden;
}

.philosophy-wrap {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.philosophy-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.philosophy-quote {
    font-size: clamp(20px, 3.5vw, 30px);
    line-height: 1.5;
    color: var(--primary);
}

.philosophy-right {
    display: flex;
    justify-content: flex-end;
}

.philosophy-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    background-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.philosophy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* awards section */
.awards {
    padding: 80px 0;
    background-color: var(--white);
}

.awards-header {
    text-align: center;
    margin-bottom: 64px;
}

.awards-header h2 {
    margin-top: 12px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    text-align: center;
}

.award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
}

.award-icon {
    color: var(--gold);
}

.award-icon svg {
    width: 64px;
    height: 64px;
}

.award-item h5 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.05em;
}

.award-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
}

/* events section */
.events {
    padding: 80px 0;
    background-color: var(--cream);
    border-top: 1px solid var(--cream-dark);
}

.events-header {
    text-align: center;
    margin-bottom: 56px;
}

.events-header h2 {
    margin-top: 12px;
}

.events-header-sub {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 300;
    max-width: 520px;
    margin: 12px auto 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.event-card {
    background-color: var(--white);
    border: 1px solid var(--cream-dark);
    overflow: hidden;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
}

.event-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(184, 146, 83, 0.4);
    transform: translateY(-4px);
}

.event-img-box {
    aspect-ratio: 16/10;
    background-color: var(--primary);
    overflow: hidden;
    position: relative;
}

.event-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.5s ease;
}

.event-card:hover .event-img-box img {
    transform: scale(1.05);
}

.event-date-chip {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: rgba(10, 28, 42, 0.92);
    border: 1px solid rgba(184, 146, 83, 0.5);
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 2px;
    z-index: 2;
}

.event-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.event-meta .category {
    color: var(--gold);
}

.event-body h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.event-card:hover .event-body h4 {
    color: var(--gold-dark);
}

.event-footer {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-footer svg {
    width: 15px;
    height: 15px;
    color: var(--gold);
    flex-shrink: 0;
}

.event-venue {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}

.event-footer-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--cream-dark);
}

/* address section */
.address-section {
    position: relative;
    padding: 160px 24px;
    background:
        linear-gradient(rgba(9, 22, 35, 0.4), rgba(9, 22, 35, 0.6)),
        url("https://dynamic-media-cdn.tripadvisor.com/media/photo-o/12/b4/fb/ca/de-plus-pres.jpg?w=1400&h=-1&s=1") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.address-wrap {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.address-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px 40px;
    border-radius: 4px;
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background: rgba(10, 28, 42, 0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.address-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.address-icon i {
    font-size: 36px;
    line-height: 1;
    --ph-duotone-secondary-opacity: 0.28;
}

.address-subtext {
    font-size: 11px;
    color: var(--gold-light);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 700;
}

.address-text {
    font-family: "Playfair Display", serif;
    font-size: clamp(28px, 4.5vw, 44px);
    color: #fff;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.address-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.address-location {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* footer */
footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 100px 60px 40px;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 2px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-identity {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-monogram {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    border-right: 1px solid rgba(184, 146, 83, 0.3);
    padding-right: 12px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-name {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.footer-logo-title {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 2px;
}

.footer-identity p {
    font-size: 15px;
    color: #9ca3af;
    font-weight: 300;
    line-height: 1.7;
}

.footer-col h5 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 15px;
    color: #d1d5db;
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
}

.footer-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: #9ca3af;
    font-weight: 400;
}

/* reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* go to top button */
.back-to-top {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease,
        background-color 0.3s ease;
    z-index: 300;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-4px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top i {
    font-size: 23px;
    line-height: 1;
}

/* responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-right {
        justify-content: flex-start;
        padding-left: 24px;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .metric-col {
        border-left: none;
        padding-left: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-left {
        max-width: 480px;
    }

    .legacy {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .philosophy-right {
        justify-content: flex-start;
    }

    .awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hero-meta {
        gap: 6px;
        font-size: 9px;
    }

    .menu-toggle {
        display: flex;
    }

    .timeline-line,
    .timeline-progress {
        left: 20px;
        transform: none;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 52px;
        margin-bottom: 64px;
    }

    .timeline-dot {
        left: 20px;
        top: 24px;
        transform: translate(-50%, 0);
        width: 36px;
        height: 36px;
    }

    .timeline-col-img,
    .timeline-col-content {
        width: 100%;
        padding: 0;
        text-align: left !important;
        align-items: flex-start !important;
    }

    .timeline-col-content {
        order: 1;
        margin-bottom: 20px;
    }

    .timeline-col-img {
        order: 2;
    }

    .timeline-media {
        margin: 0 !important;
        max-width: 100%;
    }

    .timeline-media img {
        height: 200px;
    }

    .achievements-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .address-section {
        padding: 80px 16px;
    }

    .address-card {
        padding: 40px 20px;
    }

    .address-text {
        font-size: 24px;
    }

    footer {
        padding: 60px 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 20px;
    }

    .footer-bottom {
        width: 100%;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .back-to-top {
        width: 46px;
        height: 46px;
        right: 18px;
        bottom: 18px;
    }

    .back-to-top i {
        font-size: 19px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.timeline-quote {
    max-width: 760px;
    margin: 80px auto 0;
    padding: 0 24px;
}

.quote-card {
    background-color: var(--primary);
    color: var(--white);
    padding: 56px 48px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(10, 28, 42, 0.15);
    border: 1px solid rgba(184, 146, 83, 0.15);
    text-align: center;
}

.quote-card-mark {
    position: absolute;
    top: -10px;
    left: 24px;
    font-size: 120px;
    color: var(--gold);
    opacity: 0.12;
    font-family: "Playfair Display", serif;
    line-height: 1;
}

.quote-card-text {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.6;
    color: #f3f4f6;
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
}

.quote-card-footer {
    display: inline-block;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 12px;
    margin-top: 8px;
}

.quote-card-sig {
    font-size: 16px;
    color: var(--gold-light);
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Profile implementation additions */
.profile-kicker {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-pill {
    border: 1px solid rgba(184, 146, 83, .38);
    color: var(--gold-light);
    background: rgba(255, 255, 255, .035);
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.about-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 4px;
}

.about-detail {
    background: var(--cream);
    border: 1px solid var(--cream-dark);
    padding: 14px 16px;
    border-radius: 2px;
}

.about-detail b {
    display: block;
    color: var(--primary);
    font-size: 12px;
    margin-bottom: 3px;
}

.about-detail span {
    color: var(--text-light);
    font-size: 12px;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

.engagement-item {
    grid-column: span 2;
    position: relative;
    min-height: 210px;
    padding: 30px 24px;

    background: var(--cream);
    border: 1px solid var(--cream-dark);
    border-radius: 3px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    gap: 10px;

    transition: var(--transition);
    overflow: hidden;
}

.engagement-item:nth-child(4) {
    grid-column: 2 / span 2;
}

.engagement-item:nth-child(5) {
    grid-column: 4 / span 2;
}

.engagement-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.35s ease;
}

.engagement-item:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 146, 83, 0.55);
    box-shadow: 0 16px 35px rgba(10, 28, 42, 0.07);
}

.engagement-item:hover::before {
    width: 100%;
}

.engagement-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);
    border: 1px solid var(--cream-dark);
    color: var(--gold);

    margin-bottom: 4px;

    transition: var(--transition);
}

.engagement-icon i {
    font-size: 26px;
    line-height: 1;
    --ph-duotone-secondary-opacity: 0.28;
}

.engagement-item:hover .engagement-icon {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.engagement-item span {
    color: var(--gold-dark);
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.engagement-item strong {
    color: var(--primary);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
}

.address-card .address-subtitle {
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    max-width: 520px;
}

@media (max-width: 900px) {
    .engagement-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .engagement-item,
    .engagement-item:nth-child(4),
    .engagement-item:nth-child(5) {
        grid-column: auto;
    }

    .engagement-item:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 11px);
        width: 100%;
        justify-self: center;
    }
}

@media (max-width: 640px) {

    .about-detail-grid,
    .profile-kicker {
        gap: 7px;
    }

    .profile-pill {
        font-size: 9px;
    }

    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .engagement-item,
    .engagement-item:last-child {
        grid-column: auto;
        max-width: none;
        width: 100%;
    }

    .engagement-item {
        min-height: 180px;
        padding: 26px 20px;
    }
}

/* image brand logo */
.brand-logo-img {
    display: block;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.header-brand-logo {
    height: 80px;
    width: auto;
    max-width: 330px;
}

.sidebar-brand-logo {
    width: min(285px, 82vw);
    height: auto;
}

.footer-brand-logo {
    width: min(330px, 100%);
    height: auto;
}

.footer-logo--image,
.sidebar-logo--image,
.logo--image {
    line-height: 0;
}

.logo--image {
    min-width: 240px;
}

/* enhanced education */
.education-section {
    padding: 88px 0;
    background:
        radial-gradient(circle at 8% 10%, rgba(184, 146, 83, .08), transparent 28%),
        linear-gradient(180deg, var(--white) 0%, #fcfbf8 100%);
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
}

.education-head {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 44px;
}

.education-head-copy {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 620px;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.education-card {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    align-items: start;
    min-height: 174px;
    padding: 28px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--cream-dark);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(10, 28, 42, .025);
}

.education-card::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height .35s ease;
}

.education-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 146, 83, .55);
    box-shadow: 0 18px 38px rgba(10, 28, 42, .07);
}

.education-card:hover::after {
    height: 100%;
}

.education-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(184, 146, 83, .35);
    background: var(--cream);
    color: var(--gold-dark);
    border-radius: 50%;
}

.education-icon i {
    font-size: 27px;
}

.education-type {
    display: block;
    margin-bottom: 7px;
    color: var(--gold-dark);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.education-card h3 {
    color: var(--primary);
    font-size: 19px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.education-card p {
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.7;
    font-weight: 300;
}

.education-feature {
    margin-top: 24px;
    padding: 22px 26px;
    border-left: 3px solid var(--gold);
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 18px;
    border-radius: 0 4px 4px 0;
}

.education-feature i {
    color: var(--gold-light);
    font-size: 30px;
    flex-shrink: 0;
}

.education-feature strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 2px;
}

.education-feature span {
    display: block;
    color: #cfd6dc;
    font-size: 11px;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .header-brand-logo {
        height: 48px;
        max-width: 275px;
    }

    .logo--image {
        min-width: 210px;
    }

    .education-head {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .header-brand-logo {
        height: 46px;
        max-width: 245px;
    }

    .logo--image {
        min-width: 0;
    }

    .education-section {
        padding: 64px 0;
    }

    .education-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-brand-logo {
        height: 40px;
        max-width: 215px;
    }

    .sidebar-brand-logo {
        width: min(240px, 78vw);
    }

    .education-card {
        grid-template-columns: 48px 1fr;
        gap: 15px;
        padding: 22px 18px;
    }

    .education-icon {
        width: 48px;
        height: 48px;
    }

    .education-icon i {
        font-size: 23px;
    }

    .education-feature {
        align-items: flex-start;
    }
}



/* media archive */
.site-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.media-archive {
    position: relative;
    padding: 96px 0 104px;
    background:
        radial-gradient(circle at 8% 12%, rgba(184, 146, 83, 0.10), transparent 28%),
        linear-gradient(180deg, #fbfaf8 0%, var(--cream) 100%);
    border-top: 1px solid var(--cream-dark);
    overflow: hidden;
}

.media-archive::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 76px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    opacity: .6;
}

.media-archive-head {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
}

.media-archive-head .section-title {
    margin-top: 12px;
}

.media-archive-copy {
    margin: 16px auto 0;
    max-width: 620px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
}

.media-countline {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.media-countline::before,
.media-countline::after {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(184, 146, 83, .42);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 12px;
}

.photo-card {
    position: relative;
    grid-column: span 3;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: var(--primary);
    cursor: zoom-in;
    padding: 0;
    font: inherit;
    color: inherit;
    isolation: isolate;
    box-shadow: 0 12px 28px rgba(10, 28, 42, .06);
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), box-shadow .45s ease, border-color .35s ease;
}

.photo-card:nth-child(8n + 1),
.photo-card:nth-child(8n + 6) {
    grid-column: span 6;
    aspect-ratio: 16 / 9;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s cubic-bezier(.2, .8, .2, 1), filter .5s ease;
}

.photo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 14, 21, .72), transparent 55%);
    opacity: .62;
    transition: opacity .35s ease;
    z-index: 1;
}

.photo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(184, 146, 83, .5);
    box-shadow: 0 22px 44px rgba(10, 28, 42, .14);
}

.photo-card:hover img {
    transform: scale(1.045);
}

.photo-card:hover::after {
    opacity: .82;
}

.photo-card-meta {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    color: white;
}

.photo-card-index {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.photo-card-index small {
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.photo-card-index strong {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 17px;
    font-weight: 500;
}

.photo-card-open {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(10, 28, 42, .35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.photo-card-open i {
    font-size: 17px;
}

.media-load-wrap {
    margin-top: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.media-load-btn {
    min-width: 210px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 26px;
    border: 1px solid rgba(10, 28, 42, .18);
    background: transparent;
    color: var(--primary);
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.media-load-btn:hover {
    background: var(--primary);
    color: var(--gold-light);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(10, 28, 42, .12);
}

.media-load-btn i {
    font-size: 17px;
}

.media-progress-text {
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
}

.video-stage {
    margin-top: 84px;
    position: relative;
    padding: 54px;
    background:
        radial-gradient(circle at 82% 10%, rgba(184, 146, 83, .16), transparent 34%),
        var(--primary);
    border: 1px solid rgba(184, 146, 83, .28);
    box-shadow: 0 30px 60px rgba(10, 28, 42, .16);
}

.video-stage-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.video-stage-head h3 {
    margin-top: 8px;
    color: var(--white);
    font-size: clamp(24px, 3vw, 34px);
}

.video-stage-copy {
    max-width: 430px;
    color: #aab2bb;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    text-align: right;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.video-card {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .12);
    background: #050e15;
    cursor: pointer;
    padding: 0;
    font: inherit;
    color: inherit;
    transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .8;
    transition: transform .65s ease, opacity .35s ease;
    pointer-events: none;
}

.video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 14, 21, .78), rgba(5, 14, 21, .05) 70%);
}

.video-card:hover {
    transform: translateY(-4px);
    border-color: rgba(184, 146, 83, .55);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .24);
}

.video-card:hover video {
    transform: scale(1.035);
    opacity: .95;
}

.video-play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
}

.video-play span {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    background: rgba(10, 28, 42, .5);
    color: white;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .35s ease, background .35s ease, border-color .35s ease;
}

.video-card:hover .video-play span {
    transform: scale(1.08);
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary);
}

.video-play i {
    font-size: 21px;
    margin-left: 2px;
}

.video-card-label {
    position: absolute;
    z-index: 3;
    left: 16px;
    bottom: 14px;
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.video-stage .media-load-btn {
    border-color: rgba(255, 255, 255, .2);
    color: var(--gold-light);
}

.video-stage .media-load-btn:hover {
    background: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
}

.video-stage .media-progress-text {
    color: #7f8a95;
}

.media-empty {
    grid-column: 1 / -1;
    padding: 44px 24px;
    text-align: center;
    border: 1px dashed rgba(184, 146, 83, .35);
    color: var(--text-light);
    font-size: 13px;
}

.video-stage .media-empty {
    color: #aab2bb;
}

.media-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px 88px;
    background: rgba(3, 9, 14, .94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}

.media-lightbox.open {
    opacity: 1;
    visibility: visible;
}

body.media-open {
    overflow: hidden;
}

.lightbox-stage {
    position: relative;
    width: min(1180px, 100%);
    height: min(82vh, 820px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-stage img,
.lightbox-stage video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .4);
}

.lightbox-stage video {
    width: min(1100px, 100%);
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: white;
    cursor: pointer;
    transition: background .3s ease, color .3s ease, border-color .3s ease, transform .3s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
    background: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
}

.lightbox-close {
    top: 22px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.lightbox-close i {
    font-size: 22px;
}

.lightbox-nav {
    top: 50%;
    width: 48px;
    height: 70px;
    transform: translateY(-50%);
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.04);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-nav i {
    font-size: 22px;
}

.lightbox-info {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(5, 14, 21, .55);
    color: #d1d5db;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox-info strong {
    color: var(--gold-light);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .photo-card {
        grid-column: span 6;
    }

    .photo-card:nth-child(8n + 1),
    .photo-card:nth-child(8n + 6) {
        grid-column: span 12;
    }

    .video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .video-stage {
        padding: 40px 30px;
    }

    .media-lightbox {
        padding: 30px 72px;
    }
}

@media (max-width: 680px) {
    .media-archive {
        padding: 72px 0 78px;
    }

    .media-archive-head {
        margin-bottom: 34px;
    }

    .photo-grid {
        gap: 10px;
    }

    .photo-card,
    .photo-card:nth-child(8n + 1),
    .photo-card:nth-child(8n + 6) {
        grid-column: span 12;
        aspect-ratio: 4/3;
    }

    .video-stage {
        margin-top: 58px;
        padding: 30px 16px;
        margin-left: -8px;
        margin-right: -8px;
    }

    .video-stage-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .video-stage-copy {
        text-align: left;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .media-lightbox {
        padding: 72px 14px 78px;
    }

    .lightbox-stage {
        height: 72vh;
    }

    .lightbox-close {
        top: 14px;
        right: 14px;
    }

    .lightbox-nav {
        top: auto;
        bottom: 16px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        transform: none;
    }

    .lightbox-nav:hover {
        transform: scale(1.04);
    }

    .lightbox-prev {
        left: 18px;
    }

    .lightbox-next {
        right: 18px;
    }

    .lightbox-info {
        bottom: 18px;
        max-width: 58%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}