:root {
    color-scheme: dark;
    --background: #090b0d;
    --surface: #111519;
    --surface-raised: #171c21;
    --border: rgba(255, 255, 255, 0.1);
    --text: #f5f6f7;
    --muted: #b7bec5;
    --accent: #f3aa33;
    --accent-light: #ffd188;
    --accent-soft: rgba(243, 170, 51, 0.12);
    --max-width: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 9rem;
}

body {
    min-width: 320px;
    margin: 0;
    background:
            radial-gradient(circle at 13% 2%, rgba(243, 170, 51, 0.1), transparent 30rem),
            var(--background);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}

a {
    color: var(--accent);
    text-underline-offset: 0.2em;
}

a:hover {
    color: var(--accent-light);
}

a:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
    border-radius: 0.2rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--border);
    background: rgba(9, 11, 13, 0.92);
    backdrop-filter: blur(16px);
}

.nav-shell {
    width: min(calc(100% - 2rem), var(--max-width));
    min-height: 4.75rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    text-decoration: none;
    font-weight: 750;
}

.brand img {
    width: 2.65rem;
    height: 2.65rem;
    object-fit: contain;
}

.brand span {
    color: var(--accent);
    letter-spacing: 0.01em;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.site-nav a {
    padding: 0.55rem 0.8rem;
    border-radius: 0.55rem;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 650;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--text);
    background: var(--accent-soft);
}

.section-nav {
    position: sticky;
    top: 4.75rem;
    z-index: 15;
    border-bottom: 1px solid var(--border);
    background: rgba(12, 16, 19, 0.94);
    backdrop-filter: blur(14px);
}

.section-nav-shell {
    width: min(calc(100% - 2rem), var(--max-width));
    min-height: 3.2rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.section-nav-shell > span {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.section-nav-shell > div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem;
}

.section-nav a {
    padding: 0.45rem 0.65rem;
    border-radius: 0.45rem;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.section-nav a:hover,
.section-nav a:focus-visible {
    color: var(--text);
    background: var(--accent-soft);
}

#story,
#values,
#performances,
#leadership,
#book-us {
    scroll-margin-top: 9rem;
}

.section-shell,
.about-hero,
.fact-strip {
    width: min(calc(100% - 2rem), var(--max-width));
    margin-inline: auto;
}

.about-hero {
    padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 5.5rem);
}

.eyebrow {
    margin: 0 0 0.8rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 0;
    font-size: clamp(2.9rem, 6.6vw, 5.75rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

h1 span {
    color: var(--accent);
}

.hero-copy {
    max-width: 650px;
    margin: 1.5rem 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions,
.booking-actions {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.button {
    min-height: 3.15rem;
    padding: 0.75rem 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 1px solid;
    border-radius: 0.65rem;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 800;
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    border-color: var(--accent);
    color: #17100a;
    background: var(--accent);
}

.button-primary:hover {
    color: #17100a;
    background: var(--accent-light);
    box-shadow: 0 9px 26px rgba(243, 170, 51, 0.18);
}

.button-secondary {
    border-color: var(--border);
    color: var(--text);
    background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover {
    border-color: rgba(243, 170, 51, 0.35);
    color: var(--text);
    background: var(--accent-soft);
}

.hero-image {
    position: relative;
    margin: 0;
}

.hero-image::before {
    content: "";
    position: absolute;
    inset: -1rem 1.5rem 1.5rem -1rem;
    z-index: -1;
    border: 1px solid rgba(243, 170, 51, 0.24);
    border-radius: 1.2rem;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 1.1rem;
    filter: saturate(0.92) contrast(1.03);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.hero-image figcaption {
    position: absolute;
    right: 1.1rem;
    bottom: 1.1rem;
    width: min(300px, calc(100% - 2.2rem));
    padding: 0.85rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0.75rem;
    background: rgba(8, 11, 13, 0.86);
    backdrop-filter: blur(12px);
}

.caption-mark {
    width: 0.5rem;
    height: 0.5rem;
    flex: 0 0 auto;
    margin-top: 0.4rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 5px var(--accent-soft);
}

.hero-image figcaption span:last-child,
.hero-image figcaption strong {
    display: block;
}

.hero-image figcaption {
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.45;
}

.hero-image figcaption strong {
    margin-bottom: 0.1rem;
    color: var(--text);
    font-size: 0.82rem;
}

.fact-strip {
    margin-bottom: clamp(5rem, 10vw, 8rem);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-block: 1px solid var(--border);
}

.fact-strip div {
    padding: 1.35rem clamp(0.8rem, 2vw, 1.5rem);
    border-right: 1px solid var(--border);
}

.fact-strip div:last-child {
    border-right: 0;
}

.fact-strip strong,
.fact-strip span {
    display: block;
}

.fact-strip strong {
    color: var(--text);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    letter-spacing: -0.03em;
}

.fact-strip span {
    margin-top: 0.1rem;
    color: var(--muted);
    font-size: 0.75rem;
}

.section-intro {
    max-width: 830px;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-intro h2,
.mission-heading h2,
.outreach-copy h2,
.leadership-heading h2,
.booking-panel h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.story-section {
    padding-bottom: clamp(5rem, 10vw, 8rem);
}

.story-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: start;
}

.story-copy p {
    color: var(--muted);
}

.story-copy .story-lead {
    color: #e8eaeb;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
}

.story-copy em {
    color: var(--accent-light);
}

.story-timeline {
    margin: 0;
    padding: 0;
    list-style: none;
}

.story-timeline li {
    position: relative;
    padding: 0 0 2.1rem 4.7rem;
    display: grid;
    grid-template-columns: 1fr;
}

.story-timeline li::before {
    content: "";
    position: absolute;
    top: 0.7rem;
    bottom: -0.25rem;
    left: 1.7rem;
    width: 1px;
    background: var(--border);
}

.story-timeline li:last-child {
    padding-bottom: 0;
}

.story-timeline li:last-child::before {
    display: none;
}

.timeline-year {
    position: absolute;
    top: 0;
    left: 0;
    width: 3.4rem;
    padding: 0.33rem 0;
    border: 1px solid rgba(243, 170, 51, 0.35);
    border-radius: 999px;
    color: var(--accent);
    background: var(--background);
    text-align: center;
    font-size: 0.68rem;
    font-weight: 850;
}

.story-timeline strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.story-timeline p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.87rem;
}

.photo-story {
    margin-top: clamp(3rem, 7vw, 5.5rem);
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: repeat(2, minmax(190px, 1fr));
    gap: 0.85rem;
}

.photo-story figure {
    position: relative;
    min-height: 0;
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 0.9rem;
    overflow: hidden;
    background: var(--surface);
}

.photo-story-main {
    grid-row: 1 / 3;
}

.photo-story img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 350ms ease;
}

.photo-story figure:hover img {
    transform: scale(1.015);
}

.photo-story figcaption {
    position: absolute;
    right: 0.8rem;
    bottom: 0.8rem;
    left: 0.8rem;
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.5rem;
    color: #f1f3f4;
    background: rgba(8, 10, 12, 0.78);
    backdrop-filter: blur(8px);
    font-size: 0.72rem;
    font-weight: 700;
}

.mission-section {
    padding: clamp(4.5rem, 9vw, 7rem) 0;
    border-block: 1px solid var(--border);
    background:
            radial-gradient(circle at 85% 10%, rgba(243, 170, 51, 0.07), transparent 25rem),
            #0c1013;
}

.mission-heading,
.leadership-heading {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    display: grid;
    grid-template-columns: 1fr minmax(280px, 0.65fr);
    align-items: end;
    gap: 3rem;
}

.mission-heading > p,
.leadership-heading > p {
    margin-bottom: 0.25rem;
    color: var(--muted);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.value-card {
    position: relative;
    min-height: 310px;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(23, 28, 33, 0.96), rgba(14, 17, 20, 0.96));
    overflow: hidden;
}

.value-number {
    position: absolute;
    top: 1.1rem;
    right: 1.2rem;
    color: rgba(255, 255, 255, 0.12);
    font-size: 2.1rem;
    font-weight: 850;
    letter-spacing: -0.05em;
}

.value-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 3rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(243, 170, 51, 0.22);
    border-radius: 0.7rem;
    color: var(--accent);
    background: var(--accent-soft);
}

.value-icon svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-card h3 {
    margin-bottom: 0.6rem;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.value-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.outreach-section {
    padding-block: clamp(5rem, 10vw, 8rem);
}

.outreach-panel {
    padding: clamp(1.8rem, 5vw, 4.5rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 1.2rem;
    background:
            linear-gradient(135deg, rgba(243, 170, 51, 0.08), transparent 45%),
            var(--surface);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.outreach-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.outreach-copy h2 {
    margin-bottom: 1.3rem;
}

.outreach-copy > a {
    display: inline-flex;
    gap: 0.35rem;
    margin-top: 0.6rem;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
}

.outreach-panel blockquote {
    margin: 0;
    padding: 1.6rem;
    border-left: 3px solid var(--accent);
    background: rgba(0, 0, 0, 0.18);
}

.outreach-panel blockquote > span {
    display: block;
    height: 2.8rem;
    color: var(--accent);
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
}

.outreach-panel blockquote p {
    margin-bottom: 1rem;
    color: #ece5d9;
    font-family: Georgia, serif;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    line-height: 1.4;
}

.outreach-panel blockquote footer {
    color: var(--muted);
    font-size: 0.75rem;
}

.leadership-section {
    padding: clamp(4.5rem, 9vw, 7rem) 0;
    border-block: 1px solid var(--border);
    background: #0c1013;
}

.leader-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.leader-card {
    margin: 0;
    border: 1px solid var(--border);
    border-radius: 1rem;
    background: var(--surface);
    overflow: hidden;
}

.leader-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    object-position: center 25%;
    background: #0a0d0f;
    filter: saturate(0.88);
}

.leader-card div {
    padding: 1.15rem 1.25rem 1.3rem;
}

.leader-card h3 {
    margin-bottom: 0.15rem;
    font-size: 1.05rem;
}

.leader-card p {
    margin-bottom: 0;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 750;
}

.booking-section {
    padding-block: clamp(5rem, 10vw, 8rem);
}

.booking-panel {
    padding: clamp(2rem, 6vw, 5rem);
    border: 1px solid rgba(243, 170, 51, 0.24);
    border-radius: 1.2rem;
    background:
            radial-gradient(circle at 85% 10%, rgba(243, 170, 51, 0.13), transparent 24rem),
            linear-gradient(145deg, #171c21, #0f1316);
    text-align: center;
}

.booking-panel h2 {
    max-width: 760px;
    margin-inline: auto;
}

.booking-panel > p:not(.eyebrow) {
    max-width: 620px;
    margin: 1rem auto 0;
    color: var(--muted);
}

.booking-actions {
    justify-content: center;
}

.email-link {
    padding: 0.65rem;
    font-size: 0.86rem;
    font-weight: 700;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: #07090a;
}

.footer-shell {
    width: min(calc(100% - 2rem), var(--max-width));
    margin: 0 auto;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.back-to-top {
    position: fixed;
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 18;
    width: 2.9rem;
    height: 2.9rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(243, 170, 51, 0.55);
    border-radius: 50%;
    color: #17100a;
    background: var(--accent);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
    transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.back-to-top:hover {
    color: #17100a;
    background: var(--accent-light);
    box-shadow: 0 14px 34px rgba(243, 170, 51, 0.18);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 960px) {
    .about-hero,
    .story-layout,
    .outreach-panel {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding-top: 4rem;
    }

    .hero-copy-block {
        max-width: 760px;
    }

    .hero-image {
        max-width: 760px;
    }

    .mission-heading,
    .leadership-heading {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-card {
        min-height: 280px;
    }

    .section-nav-shell {
        overflow-x: auto;
        scrollbar-width: thin;
    }

    .section-nav-shell > div {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .nav-shell {
        padding: 0.7rem 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .site-nav a {
        padding: 0.45rem 0.6rem;
        white-space: nowrap;
    }

    .section-nav {
        position: static;
    }

    .section-nav-shell {
        width: 100%;
        padding: 0.55rem 1rem;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .section-nav-shell > div {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.15rem;
    }

    .about-hero {
        gap: 3rem;
    }

    h1 {
        font-size: clamp(2.7rem, 13vw, 4rem);
    }

    .fact-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fact-strip div:nth-child(2) {
        border-right: 0;
    }

    .fact-strip div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .value-grid,
    .leader-grid {
        grid-template-columns: 1fr;
    }

    .photo-story {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .photo-story-main {
        grid-row: auto;
    }

    .photo-story figure {
        aspect-ratio: 3 / 2;
    }

    .value-card {
        min-height: 0;
    }

    .value-icon {
        margin-bottom: 2.3rem;
    }

    .leader-card {
        display: grid;
        grid-template-columns: minmax(110px, 0.65fr) 1fr;
        align-items: center;
    }

    .leader-card img {
        height: 100%;
        min-height: 155px;
        aspect-ratio: 1;
    }

    .footer-shell {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 460px) {
    .hero-actions,
    .booking-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-image figcaption {
        position: static;
        width: 100%;
        margin-top: 0.75rem;
    }

    .story-timeline li {
        padding-left: 4.25rem;
    }

    .outreach-panel blockquote {
        padding: 1.2rem;
    }
}

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